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

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