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.xml 8.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--
  3. Copyright 2005 The Apache Software Foundation
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. -->
  14. <!-- $Id$ -->
  15. <status>
  16. <developers>
  17. <!-- Maintained in src/documentation/content/xdocs/team.xml -->
  18. </developers>
  19. <todo>
  20. <!-- See Bugzilla and http://wiki.apache.org/xmlgraphics-fop/FOPProjectTasks -->
  21. </todo>
  22. <changes>
  23. <release version="FOP Trunk">
  24. <action context="Code" dev="JM" type="update">
  25. Changed the XMLHandler interface so it doesn't report the MIME type it
  26. supports but instead can report whether it supports a particular Renderer
  27. implementation. XMLHandlers are now configurable.
  28. </action>
  29. <action context="Code" dev="JM" type="fix">
  30. Fixed a bug where SVG content could be clipped when rendered to PostScript.
  31. </action>
  32. <action context="Code" dev="JM" type="fix">
  33. Changed the way resolutions are handled. The single resolution in the user
  34. agent got split up into source and target resolutions. For more info, see
  35. the updated documentation. Note: backwards-incompatible change!
  36. </action>
  37. <action context="Code" dev="JM" type="fix" fixes-bug="37875">
  38. Bugfix: Some content inside a table-header may not have been renderered on
  39. pages n &gt; 1 in certain conditions.
  40. </action>
  41. <action context="Code" dev="MM" type="fix">
  42. Fixed a bug where an empty line, i.e. a block containing only a &amp;nbsp;,
  43. was not rendered at all.
  44. </action>
  45. <action context="Code" dev="JM" type="fix">
  46. Fixed a bug where the area for a finished cell that is broken over pages was
  47. created once for each row it was spanned over instead of only once.
  48. </action>
  49. <action context="Code" dev="JM" type="add">
  50. Added checks that warn about tables and block-containers that are wider than
  51. the available content area.
  52. </action>
  53. <action context="Code" dev="JM" type="fix" fixes-bug="37880">
  54. Bugfix: Footnotes were lost if the footnote appeared in centered text.
  55. </action>
  56. <action context="Code" dev="JM" type="update">
  57. Improved log and error messages in a number of places by adding additional
  58. context information that should make it easier to find the location in the
  59. source files.
  60. </action>
  61. <action context="Code" dev="JM" type="fix">
  62. Fix to correct image sizes in RTF output.
  63. </action>
  64. <action context="Code" dev="JM" type="add">
  65. First attempt at SVG support in RTF output. SVG images are converted to 300dpi JPEG
  66. images internally.
  67. </action>
  68. <action context="Code" dev="JM" type="update">
  69. Additional checks to detect text overflows. The overflow property is now properly
  70. handled where applicable.
  71. </action>
  72. <action context="Code" dev="JM" type="update">
  73. Source location information improved. If location information is not available,
  74. the context information is provided based on text content.
  75. </action>
  76. <action context="Code" dev="JM" type="add">
  77. The command-line now automatically sets two parameters for any XSLT transformation:
  78. "fop-output-format" contains the MIME type of the currently selected output format,
  79. "fop-version" contains FOP's version number.
  80. </action>
  81. <action context="Code" dev="JM" type="fix">
  82. The output file is now deleted when an exception occurs when calling FOP from
  83. the command-line.
  84. </action>
  85. <action context="Code" dev="JM" type="fix">
  86. Bugfix: Areas for table-cells that are broken over more than one page are now
  87. generated even if all its content is already painted on a previous page. This
  88. fixes strange effects like a table grid that is not completely painted.
  89. </action>
  90. <action context="Code" dev="JM" type="fix" fixes-bug="37828">
  91. Bugfix: Column balancing produced strange break decisions in certain multi-column
  92. documents with large amounts of text.
  93. </action>
  94. <action context="Code" dev="JM" type="add">
  95. Added an alternative set of rules for calculating text indents which tries to mimic
  96. the behaviour of many commercial FO implementations that chose to break the rules
  97. in the FO specification in order to better meet the natural expectations of
  98. inexperienced FO users.
  99. </action>
  100. <action context="Code" dev="JM" type="fix" fixes-bug="37815" due-to="Tom Craddock">
  101. Bugfix: The combination of content-width="scale-to-fit" and content-height="100%"
  102. did not work as expected due to a datatype conversion bug.
  103. </action>
  104. <action context="Code" dev="JM" type="fix" fixes-bug="37813">
  105. Bugfix: A span="all" on the first block cause a subsequent page break and the first block
  106. didn't span all columns.
  107. </action>
  108. <action context="Code" dev="JM" type="fix">
  109. Bugfix: Self-created OutputStreams in PNG Renderer were not properly closed.
  110. </action>
  111. <action context="Code" dev="JM" type="update">
  112. The border-collapse property on fo:table is now forced to the value "separate" until the collapsing
  113. border has been implemented.
  114. </action>
  115. <action context="Code" dev="JM" type="add">
  116. font-family list still not fully supported but a comma-separated list is now properly tokenized.
  117. FOP will now go through all fonts in the list to find one that is available, but it doesn't
  118. do so per character, yet.
  119. </action>
  120. <action context="Code" dev="JM" type="add">
  121. Implemented "Overconstrained Geometry" rules (5.3.4, XSL 1.0) for the most important cases.
  122. </action>
  123. <action context="Code" dev="JM" type="fix">
  124. Bugfix: Relatively positioned BlockViewports (from block-containers) caused the paint
  125. cursor not be be properly advanced when space-before or space-after were present.
  126. </action>
  127. <action context="Code" dev="JM" type="fix">
  128. Bugfix: Space resolution was incomplete for content in table-cells. Conditional elements
  129. didn't get removed.
  130. </action>
  131. <action context="Code" dev="JM" type="fix">
  132. The validation check for non-zero borders and padding on a region-* is now turned off
  133. when relaxed validation is active to improve compatibility with FO documents written
  134. for other FO implementations.
  135. </action>
  136. <action context="Code" dev="JM" type="fix">
  137. Bugfix for "/ by zero" ArithmeticExceptions when an URL to a non-existing image is used
  138. and content-width and/or content-height is used.
  139. </action>
  140. <action context="Code" dev="JM" type="fix">
  141. Bugfix for a multi-threading problem:
  142. propertyListTable initialization moved from the constructor to a static block in FONode.
  143. This fixes NullPointerExceptions in PropertyList.
  144. </action>
  145. <action context="Code" dev="JM" type="fix">
  146. Bugfix for placement of text inside a text area when borders are present in PostScript output.
  147. </action>
  148. <action context="Code" dev="JM" type="update">
  149. Improvements on leader painting in PDF output.
  150. </action>
  151. <action context="Code" dev="JM" type="add">
  152. Support for leader painting in PostScript output.
  153. </action>
  154. <action context="Code" dev="LF, MM" type="add">
  155. Support for hyphenation-ladder-count.
  156. </action>
  157. </release>
  158. <release version="0.90alpha1" date="Nov 2005">
  159. <action context="Code" dev="all" type="update">
  160. <strong>Complete redesign of the FOP codebase</strong> in the period between Dec 2001 and Nov 2005.
  161. There are just too many changes to list here. If you like to know details, run
  162. <code>"svn log --verbose http://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/"</code>.
  163. </action>
  164. </release>
  165. <release version="0.20.5" date="18 July 2003">
  166. <action context="Code" dev="all" type="update">
  167. For the change log for the maintenance branch
  168. (where FOP 0.20.5 came from), please see the "CHANGES" file in the distribution, or
  169. <a href="http://svn.apache.org/viewcvs.cgi/xmlgraphics/fop/branches/fop-0_20_2-maintain/CHANGES?view=markup">the CHANGES file in the SVN repository</a>.
  170. </action>
  171. </release>
  172. </changes>
  173. </status>