You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

STATUS 7.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. $Id$
  2. STATUS
  3. **** COMMITTERS ****
  4. Arved Sandstrom (release coordinator)
  5. James Tauber (started it all and wrote most of the code)
  6. Steven Coffman
  7. Fotis Jannidis
  8. Keiron Liddle
  9. Jordan Naftolin
  10. Eric Schaeffer
  11. Jon Smirl
  12. **** THINGS WORKED ON *****
  13. rewrite of the org.apache.fop.layout in a new package (implements xsl 2000) [James Tauber]
  14. image support [Eric Schaeffer, Pankaj Narula, Andreas Rueckert]
  15. SVG support [Keiron Liddle][Torsten Friebe]
  16. more borders, padding and absolute positioning [Jon Smirl]
  17. smooth shading in PDF [Steven Coffman]
  18. tables: fo: table-header, table-and-caption,
  19. properties:
  20. column-number,
  21. number-columns-repeated
  22. number-columns-spanned
  23. number-rows-spanned
  24. general properties wrt tables
  25. [Karen Lease]
  26. docs [Fotis Jannidis]
  27. **** THINGS TO DO ****
  28. Support XSL Working Draft 27 March 2000
  29. 1.One category of tasks will be to implement missing formatting objects.
  30. There are 6 such objects:
  31. fo:character
  32. fo:leader
  33. fo:table-and-caption
  34. fo:table-header
  35. fo:multi-case
  36. fo:wrapper
  37. 2.A second category of tasks will be to update existing objects.
  38. This typically entails renaming modifications. There are at least 3 of these:
  39. fo:page-sequence-master
  40. fo:single-page-master-reference
  41. fo:repeatable-page-master-reference
  42. 3.A third category of tasks is to retire obsolescent objects. The primary issue
  43. here seems to be the migration of FOP from officially supporting
  44. DisplayGraphic and InlineGraphic FO's to officially supporting at least an
  45. ExternalGraphic FO, and ideally also the InstreamForeignObject FO, the latter
  46. aimed at SVG support.
  47. 4.A fourth, and not insignificant, category of tasks is to decide upon and
  48. implement all reasonable properties required by the specification. This
  49. also means that at this point, until further review, no FO can be considered
  50. to be compliant.
  51. a) CHANGED
  52. 21.space-after.optimum (Incomplete)
  53. 22.space-before.optimum (Incomplete)
  54. 25.white-space-treatment (Dropped/Changed)
  55. b) NEW
  56. 1.alignment-adjust 26.min-width
  57. 2.baseline-identifier 27.number-columns-repeated
  58. 3.baseline-shift 28.number-columns-spanned
  59. 4.block-progression-dimension 29.number-rows-spanned
  60. 5.character 30.orphans
  61. 6.clip 31.overflow
  62. 7.column-number 32.page-break-after
  63. 8.content-type 33.page-break-before
  64. 9.direction 34.precedence
  65. 10.display-align 35.ref-id
  66. 11.dominant-baseline 36.reference-orientation
  67. 12.font-variant 37.region-name
  68. 13.format 38.relative-align
  69. 14.grouping-separator 39.role
  70. 15.grouping-size 40.rule-style
  71. 16.inline-progression-dimension 41.source-document
  72. 17.keep-with-previous 42.space-after
  73. 18.leader-length 43.space-before
  74. 19.leader-pattern 44.space-end
  75. 20.letter-value 45.space-start
  76. 21.line-stacking-strategy
  77. 22.master-name 47.visibility
  78. 23.max-height 48.widows
  79. 24.max-width 49.writing-mode
  80. 25.min-height 50.z-index
  81. 5.A fifth category of tasks is the ongoing effort to promote maintainability,
  82. write
  83. more and better documentation, and to refine the build process.
  84. a) Don't use 'make' any longer and make sure that build.sh and build.bat work
  85. b) Add the property files to the source code (how is the vote on this?)
  86. c) update the examples to the new spec
  87. d) add examples so that all the FOs supported are used in some example
  88. **** Bugs ****
  89. - SVG linearGradients don't appear the same as in other SVG Viewers
  90. - colour not continued onto subsequent pages if coloured block goes over page
  91. - no SVG support in AWTCommandLine
  92. - keep-next doesn't work and doubles the text lines which should be moved to the next page
  93. - pdf files created with Fop don't print correctly on postscript printers
  94. - lists containing list do not keep their indentation correctly over a page boundary
  95. with AWT Previewer:
  96. - currently the layout process uses PDF fonts. This gives sometimes
  97. trouble with java.awt.Font
  98. - we need some progress messages even if the process itself is fast
  99. - GIF format is supported by the viewer, but disabled in FOP. BMP is
  100. not done, because there are no standard libraries.
  101. - more comments/english comments
  102. - first preview is painted twice (flashing screen)
  103. - should "preview" be an option when calling FOP instead of having
  104. it's own main method?
  105. **** HISTORY ****
  106. Done since 0.13 release
  107. - pagination updated to 03/27/2000 XSL WD [Arved Sandstrom]
  108. - added support for fo page-number-citation [Mike Crowe, Jordan Naftolin]
  109. - added support for 06/29/2000 SVG WD + W3C Java DOM bindings [Keiron Liddle]
  110. - added image support using Jimi [Eric Schaeffer]
  111. - added support for external and internal simple-links [Jordan Naftolin]
  112. - added support for the fonts Symbol and ZapfDingbats [Fotis Jannidis]
  113. - added a MessageHandler [Fotis Jannidis]
  114. - fixed table overflow bug [Jordan Naftolin]
  115. - finally fixed postscript printing of generated PDF [Domagoj Cosic]
  116. - removed XTCommandLine from build.xml
  117. - removed PDFOutputHandler from build.xml
  118. - added XalanCommandLine [Fotis Jannidis]
  119. - added: fo:instream-foreign-object [Keiron Liddle]
  120. - added: goto button in AWT viewer [Stanislav Gorkhover]
  121. - updated: AWT viewer now works again and support - with some restrictions - the new SVG support [Stanislav Gorkhover]
  122. Done since 0.12.1 release
  123. - using Ant to build Fop instead of make [Giacomo Pati]
  124. - borders, padding and absolute positioning [Jon Smirl]
  125. 0.12.1 release
  126. to make the bug fix on XTCommandLine available to non developers
  127. basic support for padding-{top,left,bottom,right} on blocks.
  128. implemented simple-link (don't think it works, though)
  129. XTCommandLine now works again
  130. background color works on list-block
  131. list-blocks can now be in table-cell
  132. Done for 0.12.0 release:
  133. Make sure Makefiles work
  134. Switch to using Status object as return from layout()
  135. Incorporate Eric Schaeffer's fix to tables in static-content
  136. Incorporate Kelly Campell's fixes to GifJpegImage
  137. Incorporate Eric Schaeffer's background colour implementation
  138. (actually used different approach with background colour as trait)