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 50KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <!-- $Id$ -->
  17. <status>
  18. <developers>
  19. <!-- Maintained in src/documentation/content/xdocs/team.xml -->
  20. </developers>
  21. <todo>
  22. <!-- See Bugzilla and http://wiki.apache.org/xmlgraphics-fop/FOPProjectTasks -->
  23. </todo>
  24. <changes>
  25. <release version="FOP Trunk">
  26. <action context="Code" dev="JM" type="fix">
  27. Fixed generation of named destinations so it works when the PDF document is encrypted.
  28. </action>
  29. <action context="Code" dev="JM" type="add">
  30. PostScript output now generates the bounding box DSC comments for the whole document.
  31. </action>
  32. <action context="Code" dev="JM" type="add">
  33. Added support for PDF page labels.
  34. </action>
  35. <action context="Code" dev="JM" type="add" fixes-bug="44176" due-to="Patrick Jaromin">
  36. Added support for custom fonts in Java2DRenderer and derived renderers.
  37. </action>
  38. <action context="Code" dev="JM" type="add">
  39. Added new extension element: fox:external-document. It allows to add whole documents
  40. such as multi-page TIFF images to be inserted as peers to a page-sequence. Each image
  41. will make up an entire page. See the documentation for details.
  42. </action>
  43. <action context="Code" dev="JM" type="add">
  44. Added minimal support for the .minimum/.maximum components of block/inline-progression-dimension
  45. on fo:external-graphic and fo:instream-foreign-object.
  46. </action>
  47. <action context="Code" dev="JM" type="add">
  48. Added support for scale-down-to-fit and scale-up-to-fit (introduced in XSL 1.1).
  49. </action>
  50. <action context="Code" dev="VH" type="fix" fixes-bug="43633">
  51. Bugfix: content of a row with zero height overriding the previous row
  52. </action>
  53. <action context="Code" dev="AC" importance="high" type="add">
  54. Added SVG support for AFP (GOCA).
  55. </action>
  56. <action context="Code" dev="JM" type="fix" fixes-bug="37993">
  57. Bugfix: allow multiple bookmarks to point at the same destination.
  58. </action>
  59. <action context="Code" dev="JM" type="fix" fixes-bug="43917">
  60. Bugfix for border-after painting and element list generation when a
  61. forced break is involved.
  62. </action>
  63. <action context="Code" dev="JM" type="fix" fixes-bug="40230">
  64. Bugfix: no empty page is generated anymore if there's no content
  65. after a break-after.
  66. </action>
  67. <action context="Code" dev="VH" type="fix" fixes-bug="43803">
  68. Restored proper handling of fo:table-cell having no children, which is allowed in relaxed
  69. validation mode.
  70. </action>
  71. <action context="Code" dev="JM" type="fix">
  72. Memory Leak fixed in the Property Cache. Fixed by Jeremias Maerki. Reported and Tested By
  73. Chris Bowditch.
  74. </action>
  75. <action context="Code" dev="VH" type="fix" fixes-bug="43712">
  76. Bugfix in tables: wrong element generation by the merging algorithm when glues must be
  77. produced to cope with conditional spaces. The corresponding length was added twice: one in
  78. the glue itself and one in the following box.
  79. </action>
  80. <action context="Code" dev="JM" type="fix">
  81. Bugfix for URI resolution: Make StreamSources without system identifier work again.
  82. </action>
  83. <action context="Code" dev="JM" type="fix" fixes-bug="43910" due-to="David Delbecq">
  84. Avoid a NullPointerException in AreaTreeHandler.endDocument().
  85. </action>
  86. <action context="Code" dev="VH" type="fix" fixes-bug="43766">
  87. Bugfix: breaks generated by the merging algorithm for a table-row containing empty cells
  88. had always a penalty of 900.
  89. </action>
  90. <action context="Code" dev="JM" type="add" fixes-bug="43605" due-to="V. Schappert">
  91. Added methods for fo:page-number-citation(-last) in FOEventHandler.
  92. </action>
  93. <action context="Code" dev="VH" type="add">
  94. Step towards performance: the collapsing-border resolution algorithm no longer triggers the
  95. retrieving of the whole table, when possible.
  96. </action>
  97. <action context="Code" dev="VH" type="fix">
  98. In case of missing cells the border-end of the table was applied to an inner cell, instead
  99. of the (empty) cell in the last column.
  100. </action>
  101. <action context="Code" dev="VH" type="fix">
  102. Fixed the resolution of borders with table-columns (border-before/after was wrongly applied
  103. to every cell of the column).
  104. </action>
  105. <action context="Code" dev="VH" type="fix" fixes-bug="42768">
  106. Fixed the resolution of border-end on cells spanning several rows.
  107. </action>
  108. <action context="Code" dev="JM" type="fix" fixes-bug="43835" due-to="David Churavy">
  109. Bugfix: Use Font.getName() (logical font name) instead of Font.getFontName()
  110. (localized) when registering fonts from AWT.
  111. </action>
  112. <action context="Code" dev="JM" type="fix">
  113. Made the way TrueType fonts are embedded in PDF compliant to the
  114. specification so viewers correctly identify subset fonts.
  115. </action>
  116. <action context="Code" dev="JM" type="fix">
  117. Fixed font-autodetection so fonts with uppercase extensions are
  118. detected, too.
  119. </action>
  120. <action context="Code" dev="JM" type="update">
  121. Improved font auto-detection and handling of AWT-supplied fonts in order
  122. to achieve better results when using multiple output formats. Whenever
  123. possible, the font names appearing in the operating system can also
  124. be used in XSL-FO.
  125. </action>
  126. <action context="Code" dev="JM" type="fix">
  127. Fixed regression: transparent-page-background was not recognized for PNG output.
  128. </action>
  129. <action context="Code" dev="VH" type="add">
  130. Added check for table-cells which span more rows than available in their parent element
  131. (table-header/footer/body).
  132. </action>
  133. <action context="Code" dev="AD" type="add">
  134. Added support for fo:markers in fo:inline and fo:basic-link.
  135. </action>
  136. <action context="Code" dev="JM" type="update">
  137. PDF Transcoder (SVG) text painting has been completely rewritten.
  138. Except for some special cases (with filters for example), all text
  139. (including flow text) is now painted using PDF text operators.
  140. </action>
  141. <action context="Code" dev="AD" type="add" fixes-bug="42748">
  142. Added support for ids on empty fo:inlines.
  143. </action>
  144. <action context="Code" dev="AC" type="add" fixes-bug="42982" due-to="Max Berger">
  145. Add Font support in jar files.
  146. </action>
  147. <action context="Code" dev="AC" type="fix" fixes-bug="43042" due-to="Andrejus Chaliapinas">
  148. Postscript extension cleanup.
  149. </action>
  150. <action context="Code" dev="AC" type="fix" fixes-bug="43587">
  151. Fix to avoid ClassCastException where multiple ps:ps-comments are declared within fo:declarations.
  152. </action>
  153. <action context="Code" dev="AC" type="fix" fixes-bug="43143">
  154. Fix to avoid NullPointerException when parsing ExpertEncoded and ExpertSubsetEncoded Type 1 fonts.
  155. </action>
  156. <action context="Code" dev="AC" type="fix" fixes-bug="43439">
  157. Fixes missing TLE value attribute when using AreaTree input with the AFP renderer.
  158. </action>
  159. <action context="Code" dev="JM" type="add">
  160. Added generic structures to the PDF library in order to support PDF
  161. file in fo:external-graphic later.
  162. </action>
  163. <action context="Code" dev="JM" type="add" fixes-bug="43597" due-to="Max Berger">
  164. Added support for SVGZ.
  165. </action>
  166. <action context="Code" dev="JM" type="fix">
  167. Bugfix for NPE with empty table-row (regression from 0.93).
  168. </action>
  169. <action context="Code" dev="JM" type="add">
  170. Added a configuration setting to the PCL renderer to disable PJL commands.
  171. </action>
  172. <action context="Code" dev="JM" type="fix" fixes-bug="43464" due-to="Bruno Feurer">
  173. Fix to avoid a ClassCastException in renderer configuration.
  174. </action>
  175. <action context="Code" dev="JM" type="fix" fixes-bug="43439" due-to="Adrian Cumiskey">
  176. Fixed the restoration of the TLE values from the intermediate format
  177. for the AFP extension elements.
  178. </action>
  179. <action context="Code" dev="JM" type="add" fixes-bug="43041" due-to="Adrian Cumiskey">
  180. Added a configuration setting for the renderer/device resolution to the AFP renderer.
  181. </action>
  182. <action context="code" dev="AD" type="update">
  183. Facilitate the implementation for font-selection-strategy:
  184. * Changed FontInfo.fontLookup to always return an array of FontTriplet
  185. * Changed CommonFont.getFontState to return an array of FontTriplet
  186. * Initial modifications to the related LMs: initialized with
  187. the font corresponding to the first of the triplets
  188. </action>
  189. <action context="code" dev="AD" type="update">
  190. PropertyCache phase 2:
  191. * improvement of the PropertyCache itself should now guarantee acceptable
  192. performance of the static caches in multi-session environments, which is
  193. a possible problem with synchronizedMap
  194. * changed CommonFont to use the cache:
  195. added CachedCommonFont to contain the properties that are always cacheable
  196. CommonFont itself is only cached if the remaining properties are absolutes
  197. * changed CommonHyphenation, KeepProperty, ColorProperty and FontFamilyProperty to use the cache
  198. </action>
  199. <action context="Code" dev="AD" type="fix" fixes-bug="42705">
  200. Fixed swallowing PCDATA in text-node children of
  201. retrieved markers.
  202. </action>
  203. <action context="Code" dev="AD" type="fix" fixes-bug="42703">
  204. Fixed erroneous white-space removal in retrieved markers.
  205. </action>
  206. <action context="Code" dev="AD" type="fix" fixes-bug="43274" due-to="ckohrn.at.tng.de">
  207. Fixed erroneous usage of inherited color-values in SVG.
  208. </action>
  209. </release>
  210. <release version="0.94" date="24th August 2007">
  211. <action context="Code" dev="JM" type="fix">
  212. AFP Renderer: Bugfix for 1 bit images where the width is not a multiple of 8.
  213. </action>
  214. <action context="Code" dev="MM" type="add">
  215. Support for keep-together.within-line="always".
  216. </action>
  217. <action context="Code" dev="MM" type="fix">
  218. Fixed incomplete support for Unicode Word Joiner characters (U+2060 and U+FEFF).
  219. </action>
  220. <action context="Code" dev="VH" type="add">
  221. Add support for conditional spaces in table-cells.
  222. </action>
  223. <action context="Code" dev="AD" type="add" fixes-bug="42785" due-to="Max Berger">
  224. Support alignment-adjust for images.
  225. </action>
  226. <action context="Code" dev="AD" type="add" fixes-bug="41044" due-to="Richard Wheeldon">
  227. Partial application of the patch in Bugzilla 41044:
  228. * addition of a generic PropertyCache to be used by all Property
  229. types that can be safely canonicalized
  230. * modified EnumProperty, StringProperty, NumberProperty, EnumNumber
  231. and FixedLength to make use of the cache infrastructure
  232. </action>
  233. <action context="Code" dev="AD" type="update" fixes-bug="41656">
  234. Refactoring in the fo package:
  235. -> removal of the childNodes instance member in fop.fo.FObj
  236. -> addition of a firstChild instance member in fop.fo.FObj
  237. -> addition of a siblings instance member in fop.fo.FONode
  238. -> addition of a FONodeIterator interface in FONode + corresponding implementation in FObj
  239. -> changed implementations of FObj.addChildNode(), .removeChild() and .getChildNodes()
  240. </action>
  241. <action context="Code" dev="AD" type="update" fixes-bug="42089" due-to="Adrian Cumiskey">
  242. Code cleanup and restructuring:
  243. Refactoring of PageSequenceLayoutManager and provide common FObj id property use
  244. </action>
  245. <action context="Code" dev="AD" type="add">
  246. Slight improvement of relative font-weight handling in the properties
  247. package.
  248. </action>
  249. <action context="Code" dev="JM" type="update">
  250. Updated PDF/A-1b support according to ISO-19005-1:2005/Cor.1:2007.
  251. </action>
  252. <action context="Code" dev="JM" type="add" importance="high" fixes-bug="41831" due-to="Adrian Cumiskey">
  253. Add support for font auto-detection (easier font configuration).
  254. </action>
  255. <action context="Code" dev="JM" type="update" fixes-bug="42406" due-to="Hussein Shafie">
  256. Use source resolution setting for bitmap images which don't provide their own
  257. resolution.
  258. </action>
  259. <action context="Code" dev="JM" type="fix" fixes-bug="42109" due-to="Paul Vinkenoog">
  260. Fixed the rendering of zero-width spaces for certain fonts by not generating them into
  261. the area tree.
  262. </action>
  263. <action context="Code" dev="LF" type="fix">
  264. Fixed a problem with disappearing footnotes inside hyphenated inlines (and footnotes with hyphenated inline child).
  265. </action>
  266. <action context="Code" dev="JM" type="add" fixes-bug="42067" due-to="Paul Vinkenoog">
  267. Add support for exact positioning of internal PDF links.
  268. </action>
  269. <action context="Code" dev="JM" type="fix" fixes-bug="41434" due-to="Martin Kögler">
  270. Fix PDF Genaration for non-ASCII compatible locales.
  271. </action>
  272. <action context="Code" dev="VH" type="fix">
  273. Fix several exceptions when break-before/after is set on the first/last row of a table.
  274. </action>
  275. <action context="Code" dev="VH" type="fix">
  276. Fix extra page break when break-before is set on both a table and its first row.
  277. </action>
  278. <action context="Code" dev="VH" type="fix">
  279. Make keep-with-next and keep-with-previous work on fo:table.
  280. </action>
  281. <action context="Code" dev="VH, JM" type="add" importance="high" fixes-bug="36934">
  282. Add support for the collapsing-border model in tables.
  283. </action>
  284. <action context="Code" dev="JB" type="add" importance="high">
  285. Add support for named destinations in PDF.
  286. </action>
  287. <action context="Code" dev="JM" type="fix">
  288. Fixed a problem with keep-with-next on table-rows. Once a keep-with-next was set
  289. inside a table, the FO following the table would always be glued to the previous table.
  290. </action>
  291. <action context="Code" dev="JM" type="fix">
  292. Fixed a problem with the auto-rotate-landscape setting in the PostScript renderer.
  293. It didn't generate the right setpagedevice command.
  294. </action>
  295. <action context="Code" dev="JM" type="fix">
  296. Fixed an IllegalArgumentException for absolutely positioned block-containers with a
  297. border and no height/bpd set.
  298. </action>
  299. <action context="Code" dev="JM" type="add">
  300. Add support for a two-pass production for PostScript output to minimize file size. This
  301. adds images only once and adds only the fonts that are really used.
  302. </action>
  303. <action context="Code" dev="AD" type="fix" fixes-bug="41652">
  304. If a line contained nothing but a linefeed, this didn't produce empty lines.
  305. Replaced the auxiliary zero-width box with a glue the width of a line,
  306. and shrinkable to zero-width.
  307. </action>
  308. <action context="Code" dev="VH" type="fix" fixes-bug="40120" due-to="Adrian Cumiskey">
  309. Stricter FOP user configuration checking
  310. </action>
  311. <action context="Code" dev="AD" type="fix" fixes-bug="41572" due-to="Erwin Tratar">
  312. Fix parsing 'url(...)' when the URL itself contains a bracketed part.
  313. </action>
  314. <action context="Code" dev="JM" type="add">
  315. Support for GIF images in RTF output (RTF handler, only. Does not affect the RTF library.)
  316. </action>
  317. <action context="Code" dev="JM" type="fix">
  318. Fix for NPE with PNG images for RTF output.
  319. </action>
  320. <action context="Code" dev="AD" type="fix">
  321. Fix for properly parsing font-family names containing spaces.
  322. </action>
  323. <action context="Code" dev="JM" type="add">
  324. Support for soft masks (transparency) with ImageIO image adapter.
  325. </action>
  326. <action context="Code" dev="LF" type="fix" fixes-bug="41019">
  327. Fix incorrect behaviour of the BreakingAlgorithm when some inline content is wider than
  328. the available ipd, causing a restart.
  329. </action>
  330. <action context="Code" dev="JM" type="fix">
  331. Fix for PDF corruption when a TrueType font with spaces in its name is embedded and no
  332. XML font metrics file for that font is used.
  333. </action>
  334. <action context="Code" dev="JM" type="fix" fixes-bug="41426" due-to="Adrian Cumiskey">
  335. Fix for ClassCastException when fo:wrapper was used as direct child of fo:flow.
  336. Note: "id" attributes are still not handled properly on fo:wrapper!
  337. </action>
  338. <action context="Code" dev="MM" type="add">
  339. Added support for the soft hyphen (SHY) character.
  340. </action>
  341. <action context="Code" dev="MM" type="add">
  342. Added support for line-height-shift-adjustment property.
  343. </action>
  344. <action context="Code" dev="SP" type="add">
  345. Added support for the system property fop.home to
  346. cli.Main.getJARList().
  347. </action>
  348. <action context="Code" dev="JM" type="add" fixes-bug="40930">
  349. Added support for display-align for table-cell in RTF output.
  350. </action>
  351. <action context="Code" dev="MM" type="add" importance="high">
  352. Added support for UAX#14 type line breaking. Support does not extend across nested fo:inline elements.
  353. </action>
  354. </release>
  355. <release version="0.93" date="9 January 2007">
  356. <notes>
  357. <p>This is the first production grade release of the new FOP
  358. codebase.</p>
  359. <ul>
  360. <li>It contains the new API first introduced in release 0.92
  361. beta. The preceding API has been removed.
  362. </li>
  363. <li>
  364. See the <a href="../compliance.html">compliance page</a> for an
  365. overview of the compliance of this release with the XSL 1.0 and
  366. 1.1 recommendations.
  367. </li>
  368. <li>
  369. This release again contains many bug fixes and new features. See
  370. below for details.
  371. </li>
  372. <li>
  373. See the <a href="../knownissues.html">known issues page</a>
  374. for an overview of the known issues with this release.
  375. </li>
  376. </ul>
  377. <p>Caveats:</p>
  378. <ul>
  379. <li>
  380. You may experience different behaviour compared to version 0.20.5.
  381. Please consult the <a href="upgrading.html">"Upgrading"</a> page for details.
  382. </li>
  383. </ul>
  384. </notes>
  385. <action context="Code" dev="BD" type="add" importance="high">
  386. Added support for the use of Open Type fonts
  387. </action>
  388. <action context="Code" dev="BD" type="update" fixes-bug="5535" due-to="Adam Strzelecki, Victor Mote" importance="high">
  389. Enabled Copy/Paste from PDF content in Acrobat Reader for text using embedded TrueType fonts.
  390. </action>
  391. <action context="Code" dev="SP" type="update" fixes-bug="41044" due-to="Richard Wheeldon">
  392. Commented out unused properties, in order to minimize memory usage.
  393. </action>
  394. <action context="Code" dev="SP" type="update" fixes-bug="41009" due-to="Richard Wheeldon">
  395. Removed unused attributes from TableCell.
  396. </action>
  397. <action context="Code" dev="JM" type="add">
  398. Added initial support for loading fonts without a pre-created XML font metric
  399. file.
  400. </action>
  401. <action context="Code" dev="JM" type="add" fixes-bug="40729" due-to="Peter Coppens" importance="high">
  402. Support for the rgb-icc() function and for a proprietary cmyk() function (for device CMYK
  403. colors only through the PDF renderer so far).
  404. </action>
  405. <action context="Code" dev="JM" type="update" fixes-bug="40813" due-to="Richard Wheeldon">
  406. Minor fixes and improvements for the AWT Preview (keyboard shortcuts, scrolling, windows
  407. setup).
  408. </action>
  409. <action context="Code" dev="JM" type="add" fixes-bug="40849" due-to="Dominic Brügger">
  410. Added support for SVG in fo:instream-foreign objects for RTF output.
  411. </action>
  412. <action context="Code" dev="JM" type="fix">
  413. Bugfix: Fixed bug when the sum of column widths of a table is larger than the
  414. specified widths. The table width was not adjusted.
  415. </action>
  416. <action context="Code" dev="JM" type="fix">
  417. Bugfix: Nested tables with headers and footers were not handled correctly and could
  418. overlap with the region-after.
  419. </action>
  420. <action context="Code" dev="JM" type="add" fixes-bug="40519" due-to="Oliver Hernàndez Valls">
  421. Added support for CCITT compression in the TIFFRenderer by switching to the ImageWriter
  422. abstraction from XML Graphics Commons.
  423. </action>
  424. <action context="Code" dev="JM" type="add">
  425. Extension properties fox:orphan-content-limit and fox:widow-content-limit which
  426. help with list-block and table layout. See the documentation for details.
  427. </action>
  428. <action context="Code" dev="JM" type="add">
  429. Configuration option in the Java2D-based renderers that allows to disable the default
  430. white background in order to produce bitmap output with transparency.
  431. </action>
  432. <action context="Code" dev="AD" type="fix" fixes-bug="39414">
  433. Split up FOText instances larger than 32K characters to avoid
  434. integer overflow during layout.
  435. </action>
  436. <action context="Code" dev="JM" type="fix">
  437. Bugfix: Corrected painting of shading patterns and position of links for SVG images
  438. inside FO documents.
  439. </action>
  440. <action context="Code" dev="AD" type="update">
  441. Minor fix: correctly set negative values for ipd/bpd to zero.
  442. </action>
  443. <action context="Code" dev="AD" type="update" fixes-bug="35656">
  444. Rework of default column-creation / column-width setting from
  445. cells in the first row.
  446. </action>
  447. <action context="Code" dev="AD" type="update" fixes-bug="40270" due-to="Gary Reed">
  448. Added relaxed validation for empty list-item-*, as suggested by Gary Reed.
  449. </action>
  450. <action context="Code" dev="AD" type="update">
  451. Modified proportional-column-width() function to log an error if used
  452. with table-layout=auto
  453. </action>
  454. <action context="Code" dev="AD" type="fix">
  455. Deferred property resolution for markers until they are actually retrieved,
  456. which leads to percentages and relative font-sizes now getting the correct
  457. values. Also deferred white-space-handling for markers.
  458. </action>
  459. <action context="Code" dev="JM" type="update">
  460. Changed the way overflowing pages are handled. The overflow property on region-body
  461. is now used to define the behaviour.
  462. </action>
  463. <action context="Code" dev="JM" type="fix">
  464. Fixed a memory-leak: The FO tree part of a page-sequence was not released when a
  465. page-sequence was finished.
  466. </action>
  467. <action context="Code" dev="JM" type="fix">
  468. Bugfix: Table headers and footers were swallowed when a table was nested in a list-block.
  469. </action>
  470. <action context="Code" dev="JM" type="fix">
  471. Fixed a bug with indent handling when margins are used on a surrounding block and
  472. not start/end-indent.
  473. </action>
  474. <action context="Code" dev="JM" type="fix" fixes-bug="40106" due-to="Jeroen Meijer">
  475. Compatibility fix for GCJ (GNU Classpath): Using "UTF-16BE" instead of "UnicodeBigUnmarked"
  476. encoding.
  477. </action>
  478. <action context="Code" dev="JM" type="fix" fixes-bug="40062" due-to="Gilles Beaugeais">
  479. Fixed handling for CCITT Group 4 TIFF images with fill order 2.
  480. </action>
  481. <action context="Code" dev="JM" type="fix" fixes-bug="40048" due-to="Igor Istomin">
  482. Fixed setting of page margins in AWT Renderer like it was done in the print renderer.
  483. </action>
  484. <action context="Code" dev="JM" type="fix">
  485. Fixed two memory-leaks in image handling. The image cache is finally working
  486. properly.
  487. </action>
  488. <action context="Code" dev="JM" type="fix" fixes-bug="39608">
  489. Let numeric property values without a unit be treated as pixels like in HTML.
  490. This fixes certain NullPointerException when no units are specified.
  491. (Note: the use of pixels in XSL-FO is discouraged!)
  492. </action>
  493. <action context="Code" dev="JM" type="fix">
  494. Bugfix: Potential multi-threading issue (ConcurrentModificationException)
  495. eliminated for ElementMapping classes.
  496. </action>
  497. <action context="Code" dev="JM" type="fix">
  498. No more System.exit() and look &amp; feel setting calls inside the reusable
  499. parts of the AWT viewer.
  500. </action>
  501. <action context="Code" dev="JM" type="fix">
  502. Proper escaping of characters in list-items labels for RTF output.
  503. </action>
  504. <action context="Code" dev="MM" type="fix">
  505. Bugfix: FOUserAgent specific configuration parameters specified in config file
  506. were not set when FOP was invoked from command line.
  507. </action>
  508. <action context="Code" dev="JM" type="add" importance="high">
  509. Added support for PDF/A-1b and PDF/X-3:2003. (Note: this may still be a bit
  510. incomplete. Feedback is welcome!)
  511. </action>
  512. <action context="Code" dev="JM" type="add">
  513. The CIDSet object is now generated for CID fonts which are embedded in PDFs.
  514. (Required by PDF/A).
  515. </action>
  516. <action context="Code" dev="JM" type="update" importance="high">
  517. The Java2DRenderer (and therefore the print and bitmap renderers) is now
  518. offering the same quality as the PDF and PS renderers. Note: There can still
  519. be little differences between PDF and Print/PNG/TIFF because the latter uses
  520. a different font metrics source.
  521. </action>
  522. <action context="Code" dev="AD" type="fix" fixes-bug="39712">
  523. Bugfix: components of the border-separation property weren't set when
  524. in shorthand-mode, leading to a NPE being thrown.
  525. </action>
  526. <action context="Code" dev="JM" type="fix">
  527. Bugfix: Table headers were omitted when a table is a child of a block-container.
  528. </action>
  529. <action context="Code" dev="JM" type="fix">
  530. Bugfix: Bookmarks in PDF will be generated even if some bookmarks cannot be
  531. resolved.
  532. </action>
  533. <action context="Code" dev="AD" type="fix" fixes-bug="39560">
  534. Bugfix: the interaction between the table FOs and properties package in
  535. determining initial values for column-number should be a one-time process,
  536. not repeated when the table is in a marker that is retrieved.
  537. </action>
  538. <action context="Code" dev="JM" type="fix">
  539. Bugfix: All fonts names were converted unnecessarily to lower case in RTF output.
  540. </action>
  541. <action context="Code" dev="JM" type="fix">
  542. Bugfix: The combination of hyphenation and kerning resulted in slightly ragged
  543. right ends for right-aligned and justified text.
  544. </action>
  545. <action context="Code" dev="JM" type="fix">
  546. Bugfix: NullPointerException in AreaAdditionUtil in a table-cell spanning
  547. multiple pages and with a marker.
  548. </action>
  549. <action context="Code" dev="JM" type="fix" fixes-bug="39533">
  550. Bugfix: NullPointerException in RTF output when a table does not contain
  551. table-columns.
  552. </action>
  553. <action context="Code" dev="JM" type="fix" fixes-bug="39607" due-to="Julien Aymé">
  554. Bugfix: NullPointerException in RTF library when there are no borders on
  555. the parent table.
  556. </action>
  557. <action context="Code" dev="JM" type="add" importance="high">
  558. Automatic support for all fonts available to the Java2D subsystem for all
  559. Java2D-descendant renderers (TIFF, PNG, print, AWT).
  560. </action>
  561. <action context="Code" dev="JM" type="fix">
  562. Bugfix: Improved baseline detection in TTFReader for TrueType fonts.
  563. </action>
  564. <action context="Code" dev="JM" type="fix" fixes-bug="39443">
  565. Bugfix: tables nested in inline elements caused a NullPointerException.
  566. </action>
  567. <action context="Code" dev="JM" type="update">
  568. The default sRGB color profile provided by the Java class library is no longer
  569. embedded if it is encountered. This should reduce the PDF size considerably.
  570. </action>
  571. <action context="Code" dev="JM" type="fix" fixes-bug="39443">
  572. Bugfix: Sections with span="all" lead to overlapping text if spanning multiple pages.
  573. </action>
  574. <action context="Code" dev="MM" type="fix">
  575. Bugfix: Percentages in vertical-align property values were not correctly handled.
  576. </action>
  577. <action context="Code" dev="JM" type="fix" fixes-bug="38243" due-to="Gerhard Oettl">
  578. Bugfix: Gaps in table-columns cause a NullPointerException.
  579. </action>
  580. <action context="Code" dev="JM" type="update" fixes-bug="38946" due-to="Max Berger">
  581. Changed the internal representation of colors to use Java's own color infrastructure
  582. instead of FOP's home-grown classes.
  583. </action>
  584. <action context="Code" dev="MM" type="fix">
  585. Bugfix: TABs were not correctly replaced by spaces in some circumstances.
  586. </action>
  587. <action context="Code" dev="JM" type="update">
  588. Content in block-containers makes better use of shrink to fit content vertically
  589. into the available area. This can be used indirectly to justify content vertically
  590. in a block-container.
  591. </action>
  592. <action context="Code" dev="JM" type="fix">
  593. Bugfix: basic-links with internal destinations in documents with multiple
  594. page-sequences sometimes pointed at the wrong page.
  595. </action>
  596. <action context="Code" dev="JM" type="fix">
  597. Bugfix: Fixed ClassCastException when retrieve-marker is used as a direct child
  598. if static-content in which case leading and trailing white space is not properly
  599. removed.
  600. </action>
  601. <action context="Code" dev="JM" type="fix" fixes-bug="39285">
  602. Bugfix: Fixed OutOfMemoryException with long data URLs (RFC 2397).
  603. </action>
  604. <action context="Code" dev="JM" type="add" fixes-bug="39118" due-to="Pierre-Henri Kraus">
  605. Initial support for page-number-citation-last (XSL 1.1). Works without problems
  606. only for page-sequence so far.
  607. </action>
  608. </release>
  609. <release version="0.92beta" date="18 Apr 2006">
  610. <action context="Code" dev="JM" type="fix">
  611. Bugfix: The generation of the PDF "d" (setdash) command was assuming that
  612. only integer values can be used but that isn't the case. Dash patterns
  613. PDFGraphics2D would be wrong in the process.
  614. </action>
  615. <action context="Code" dev="JM" type="fix">
  616. Bugfix: Fixed a division by zero problem in TTFReader and improved the detection
  617. of the capHeight and xHeight font metric values for TrueType fonts.
  618. </action>
  619. <action context="Code" dev="JM" type="fix">
  620. Bugfix: Allow URLs in basic-link's external-destination to be wrapped in "url()".
  621. </action>
  622. <action context="Code" dev="MM" type="fix">
  623. Bugfix: Corrected enumerated property value for white-space property
  624. from "no-wrap" to "nowrap".
  625. </action>
  626. <action context="Code" dev="MM" type="fix" fixes-bug="38457">
  627. Bugfix: Added support for white-space-treatment="preserve" in particular to
  628. support the white-space="pre" short hand property.
  629. </action>
  630. <action context="Code" dev="JM" type="fix">
  631. Corrected expectation and behaviour for the text-indent property to only apply
  632. to the first line area generated by a block.
  633. </action>
  634. <action context="Code" dev="JM" type="fix">
  635. Bugfix for invalid handling of ICC color profiles in JPEG images and for
  636. dealing with CMYK JPEG images with the Adobe APPE marker.
  637. </action>
  638. <action context="Code" dev="JM" type="add">
  639. Initial support for page-position="last" added.
  640. </action>
  641. <action context="Code" dev="JM" type="add">
  642. Reenabled loading of user-supplied hyphenation patterns that was available in
  643. FOP 0.20.5. (See "hyphenation-base" option in the user configuration)
  644. </action>
  645. <action context="Code" dev="JM" type="fix">
  646. Bugfix: Certain filter combinations in PDF could lead to invalid PDFs.
  647. DecodeParams were not properly handled.
  648. </action>
  649. <action context="Code" dev="JM" type="fix">
  650. Bugfix: CCITT Group 4 encoded TIFF images with multiple strips are now properly
  651. embedded in PDF files.
  652. </action>
  653. <action context="Code" dev="JM" type="add">
  654. Added support for fixed-width spaces.
  655. </action>
  656. <action context="Code" dev="JM" type="add">
  657. Added support for kerning.
  658. </action>
  659. <action context="Code" dev="JM" type="fix">
  660. Bugfix: Fixed a copy/paste error in the table layout code that caused wrong page
  661. break decisions when table-headers and/or table-footers are used.
  662. </action>
  663. <action context="Code" dev="JM" type="fix">
  664. Bugfix: Fixed an NPE that was thrown when a table was used inside a footnote-body.
  665. </action>
  666. <action context="Code" dev="JM" type="fix">
  667. Bugfix: Fixed a problem with certain TrueType fonts which are missing the "PCLT"
  668. table, where a baseline-shift="sub" had no effect due to a missing x-height value.
  669. (Note: This only affects TTFReader, so the font metric file has to be regenerated.)
  670. </action>
  671. <action context="Code" dev="JM" type="fix">
  672. Bugfix: When the base URL was specified as a file system path, the constructed
  673. URL was wrong.
  674. </action>
  675. <action context="Code" dev="JM" type="add" due-to="Jirí Mareš">
  676. Support for "userconfig" attribute in FOP Ant Task.
  677. </action>
  678. <action context="Code" dev="JM" type="add">
  679. Initial support for XMP metadata (PDF 1.4) under fo:declarations.
  680. </action>
  681. <action context="Code" dev="AD" type="add">
  682. Added support for the background-position shorthand property.
  683. </action>
  684. <action context="Code" dev="AD" type="add">
  685. Added support for the font shorthand property.
  686. </action>
  687. <action context="Code" dev="JM" type="add" fixes-bug="38618" due-to="Max Berger">
  688. Added support for system-color() function.
  689. </action>
  690. <action context="Code" dev="JM" type="fix">
  691. Bugfix: Fixed two causes for ClassCastExceptions in BlockContainerLayoutManager.
  692. </action>
  693. <action context="Code" dev="JM" type="fix">
  694. Bugfix: padding-top and padding-bottom on list-items could lead to wrong page
  695. break decisions and thus to overlapping text.
  696. </action>
  697. <action context="Code" dev="JM" type="fix">
  698. Bugfix: break-before and break-after were ignored on list-items.
  699. </action>
  700. <action context="Code" dev="LF" type="fix" fixes-bug="38507">
  701. Bugfix: The elements representing a non-breaking space weren't always correct.
  702. </action>
  703. <action context="Code" dev="JM" type="fix" fixes-bug="38453">
  704. Bugfix: Text-decoration was not promoted if no text-decoration attribute was
  705. specified on a nested element.
  706. </action>
  707. <action context="Code" dev="AD" type="add" fixes-bug="38282"
  708. due-to="Gerhard Oettl (gerhard.oettl.at.oesoft.at)">
  709. Added support for the from-table-column() function.
  710. </action>
  711. <action context="Code" dev="JM" type="fix" fixes-bug="38397">
  712. Bugfix: Spanned cells could lead to an false error message about overlapping
  713. cells and ultimately a NullPointerException.
  714. </action>
  715. <action context="Code" dev="JM" type="fix">
  716. Bugfix: Regions with non-standard names got ignored in RTF output leading to
  717. missing headers and footers.
  718. </action>
  719. <action context="Code" dev="JM" type="fix">
  720. The RTF output now properly generates the "\landscape" flag for documents in
  721. landscape orientation.
  722. </action>
  723. <action context="Code" dev="JM" type="fix">
  724. Following a clarification by the XSL FO SG, space traits are only set on the
  725. first and last area generated by an FO, and not on every area anymore.
  726. </action>
  727. <action context="Code" dev="JM" type="add">
  728. New feature: "Intermediate format" (IF). The IF is basically the XML dialect
  729. written by the area tree renderer (XMLRenderer). A new parser for this format
  730. allows reparsing a serialized and possibly modified area tree and rendering it
  731. to the final target format.
  732. </action>
  733. <action context="Code" dev="JM" type="fix">
  734. Bugfix: Floating point numbers were not properly formatted in the PDF renderer
  735. which could lead to error messages while opening a PDF in Acrobat Reader.
  736. </action>
  737. <action context="Code" dev="SP" type="update" fixes-bug="38098"
  738. due-to="Gerhard Oettl">
  739. Implement property name as default argument on some xsl-function calls.
  740. </action>
  741. <action context="Code" dev="SP" type="update" fixes-bug="38087"
  742. due-to="Gerhard Oettl">
  743. Implement force-page-count property of page-sequence.
  744. </action>
  745. <action context="Code" dev="JM" type="fix" fixes-bug="38054">
  746. Bugfix: Spans that end up with a negative height don't get swallowed anymore.
  747. </action>
  748. <action context="Code" dev="MM" type="add" fixes-bug="36729">
  749. Relative URLs for the font configuration attributes metrics-url and embed-url
  750. are now supported. A new configuration property font-base has been added. It
  751. sets the base URL against which relative font URLs are resolved. If font-base is
  752. not set base is used.
  753. </action>
  754. <action context="Code" dev="JM" type="add" fixes-bug="38132" due-to="Richard Wheeldon">
  755. Added support for RFC2397 "data" URLs.
  756. </action>
  757. <action context="Code" dev="JM" type="fix" fixes-bug="38132">
  758. Bugfix: Certain border styles could lead to a NullPointerException.
  759. </action>
  760. <action context="Code" dev="JM" type="fix" fixes-bug="38102">
  761. Bugfix: Space was not adjusted if the space was on a nested block. This could
  762. lead to content overflowing the bottom of a page.
  763. </action>
  764. <action context="Code" dev="JM" type="fix">
  765. Bugfix: TableCell did not properly report that it generates reference-areas
  766. which could lead to wrong inherited values for start-indent and end-indent.
  767. </action>
  768. <action context="Code" dev="JM" type="add">
  769. The font loading code now reads the encoding value from the XML font metrics file
  770. so that fonts like Symbol and ZapfDingbats can be embedded explicitely (Required by PDF/A).
  771. </action>
  772. <action context="Code" dev="SP" type="update">
  773. Improvements to the code for inline block content.
  774. </action>
  775. <action context="Code" dev="MM" type="fix" fixes-bug="38089">
  776. Bugfix: Image height for BMP images was incorrectly calculated
  777. </action>
  778. <action context="Code" dev="AD" type="update">
  779. Revision of refinement white-space handling.
  780. </action>
  781. <action context="Code" dev="AD" type="add">
  782. Added feature: support for white-space shorthand
  783. </action>
  784. <action context="Code" dev="AD" type="add">
  785. Added feature: support for page-break-* shorthands
  786. </action>
  787. <action context="Code" dev="MM" type="fix" fixes-bug="38053">
  788. Bugfix: NullPointerException on certain fo:inline within lists.
  789. </action>
  790. <action context="Code" dev="MM" type="fix" fixes-bug="37743">
  791. Bugfix: ClassCastException on certain fo:inline with border combinations.
  792. </action>
  793. <action context="Code" dev="MM" type="fix">
  794. Changed a method name in LineArea from finalize to finalise because it was
  795. never intended for the method to be an override of the Java Object finalize
  796. method. If invoked by the Java garbage collector it may cause a NPE.
  797. </action>
  798. </release>
  799. <release version="0.91beta" date="23 Dec 2005">
  800. <action context="Code" dev="JM" type="update">
  801. Deprecated Fop constructors that use integer constants to select the
  802. output format have been removed in favor or the constructors that use
  803. MIME types.
  804. </action>
  805. <action context="Code" dev="MM" type="fix">
  806. Fixed a bug where the linefeed-treatment property value "preserve" was not
  807. honoured when used in conjunction with text-align="center".
  808. </action>
  809. <action context="Code" dev="JM" type="fix" fixes-bug="37964">
  810. Bugfix: hard breaks with even-page or odd-page were not handled correctly
  811. when spaces were surrounding the break.
  812. </action>
  813. <action context="Code" dev="JM" type="update">
  814. Changed the XMLHandler interface so it doesn't report the MIME type it
  815. supports but instead can report whether it supports a particular Renderer
  816. implementation. XMLHandlers are now configurable.
  817. </action>
  818. <action context="Code" dev="JM" type="fix">
  819. Fixed a bug where SVG content could be clipped when rendered to PostScript.
  820. </action>
  821. <action context="Code" dev="JM" type="fix">
  822. Changed the way resolutions are handled. The single resolution in the user
  823. agent got split up into source and target resolutions. For more info, see
  824. the updated documentation. Note: backwards-incompatible change!
  825. </action>
  826. <action context="Code" dev="JM" type="fix" fixes-bug="37875">
  827. Bugfix: Some content inside a table-header may not have been renderered on
  828. pages n &gt; 1 in certain conditions.
  829. </action>
  830. <action context="Code" dev="MM" type="fix">
  831. Fixed a bug where an empty line, i.e. a block containing only a &amp;nbsp;,
  832. was not rendered at all.
  833. </action>
  834. <action context="Code" dev="JM" type="fix">
  835. Fixed a bug where the area for a finished cell that is broken over pages was
  836. created once for each row it was spanned over instead of only once.
  837. </action>
  838. <action context="Code" dev="JM" type="add">
  839. Added checks that warn about tables and block-containers that are wider than
  840. the available content area.
  841. </action>
  842. <action context="Code" dev="JM" type="fix" fixes-bug="37880">
  843. Bugfix: Footnotes were lost if the footnote appeared in centered text.
  844. </action>
  845. <action context="Code" dev="JM" type="update">
  846. Improved log and error messages in a number of places by adding additional
  847. context information that should make it easier to find the location in the
  848. source files.
  849. </action>
  850. <action context="Code" dev="JM" type="fix">
  851. Fix to correct image sizes in RTF output.
  852. </action>
  853. <action context="Code" dev="JM" type="add">
  854. First attempt at SVG support in RTF output. SVG images are converted to 300dpi JPEG
  855. images internally.
  856. </action>
  857. <action context="Code" dev="JM" type="update">
  858. Additional checks to detect text overflows. The overflow property is now properly
  859. handled where applicable.
  860. </action>
  861. <action context="Code" dev="JM" type="update">
  862. Source location information improved. If location information is not available,
  863. the context information is provided based on text content.
  864. </action>
  865. <action context="Code" dev="JM" type="add">
  866. The command-line now automatically sets two parameters for any XSLT transformation:
  867. "fop-output-format" contains the MIME type of the currently selected output format,
  868. "fop-version" contains FOP's version number.
  869. </action>
  870. <action context="Code" dev="JM" type="fix">
  871. The output file is now deleted when an exception occurs when calling FOP from
  872. the command-line.
  873. </action>
  874. <action context="Code" dev="JM" type="fix">
  875. Bugfix: Areas for table-cells that are broken over more than one page are now
  876. generated even if all its content is already painted on a previous page. This
  877. fixes strange effects like a table grid that is not completely painted.
  878. </action>
  879. <action context="Code" dev="JM" type="fix" fixes-bug="37828">
  880. Bugfix: Column balancing produced strange break decisions in certain multi-column
  881. documents with large amounts of text.
  882. </action>
  883. <action context="Code" dev="JM" type="add">
  884. Added an alternative set of rules for calculating text indents which tries to mimic
  885. the behaviour of many commercial FO implementations that chose to break the rules
  886. in the FO specification in order to better meet the natural expectations of
  887. inexperienced FO users.
  888. </action>
  889. <action context="Code" dev="JM" type="fix" fixes-bug="37815" due-to="Tom Craddock">
  890. Bugfix: The combination of content-width="scale-to-fit" and content-height="100%"
  891. did not work as expected due to a datatype conversion bug.
  892. </action>
  893. <action context="Code" dev="JM" type="fix" fixes-bug="37813">
  894. Bugfix: A span="all" on the first block cause a subsequent page break and the first block
  895. didn't span all columns.
  896. </action>
  897. <action context="Code" dev="JM" type="fix">
  898. Bugfix: Self-created OutputStreams in PNG Renderer were not properly closed.
  899. </action>
  900. <action context="Code" dev="JM" type="update">
  901. The border-collapse property on fo:table is now forced to the value "separate" until the collapsing
  902. border has been implemented.
  903. </action>
  904. <action context="Code" dev="JM" type="add">
  905. font-family list still not fully supported but a comma-separated list is now properly tokenized.
  906. FOP will now go through all fonts in the list to find one that is available, but it doesn't
  907. do so per character, yet.
  908. </action>
  909. <action context="Code" dev="JM" type="add">
  910. Implemented "Overconstrained Geometry" rules (5.3.4, XSL 1.0) for the most important cases.
  911. </action>
  912. <action context="Code" dev="JM" type="fix">
  913. Bugfix: Relatively positioned BlockViewports (from block-containers) caused the paint
  914. cursor not be be properly advanced when space-before or space-after were present.
  915. </action>
  916. <action context="Code" dev="JM" type="fix">
  917. Bugfix: Space resolution was incomplete for content in table-cells. Conditional elements
  918. didn't get removed.
  919. </action>
  920. <action context="Code" dev="JM" type="fix">
  921. The validation check for non-zero borders and padding on a region-* and for empty static-content
  922. elements is now turned off when relaxed validation is active to improve compatibility with
  923. FO documents written for other FO implementations.
  924. </action>
  925. <action context="Code" dev="JM" type="fix">
  926. Bugfix for "/ by zero" ArithmeticExceptions when an URL to a non-existing image is used
  927. and content-width and/or content-height is used.
  928. </action>
  929. <action context="Code" dev="JM" type="fix">
  930. Bugfix for a multi-threading problem:
  931. propertyListTable initialization moved from the constructor to a static block in FONode.
  932. This fixes NullPointerExceptions in PropertyList.
  933. </action>
  934. <action context="Code" dev="JM" type="fix">
  935. Bugfix for placement of text inside a text area when borders are present in PostScript output.
  936. </action>
  937. <action context="Code" dev="JM" type="update">
  938. Improvements on leader painting in PDF output.
  939. </action>
  940. <action context="Code" dev="JM" type="add">
  941. Support for leader painting in PostScript output.
  942. </action>
  943. <action context="Code" dev="LF, MM" type="add">
  944. Support for hyphenation-ladder-count.
  945. </action>
  946. </release>
  947. <release version="0.90alpha1" date="22 Nov 2005">
  948. <action context="Code" dev="all" type="update">
  949. <strong>Complete redesign of the FOP codebase</strong> in the period between Dec 2001 and Nov 2005.
  950. There are just too many changes to list here. If you like to know details, run
  951. <code>"svn log --verbose http://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/"</code>.
  952. </action>
  953. </release>
  954. <release version="0.20.5" date="18 July 2003">
  955. <action context="Code" dev="all" type="update">
  956. For the change log for the maintenance branch
  957. (where FOP 0.20.5 came from), please see the "CHANGES" file in the distribution, or
  958. <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>.
  959. </action>
  960. </release>
  961. </changes>
  962. </status>