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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896
  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. <!DOCTYPE status PUBLIC "-//APACHE//DTD Status V1.3//EN"
  18. "http://forrest.apache.org/dtd/status-v13.dtd">
  19. <status>
  20. <developers>
  21. <!-- In alphabetical order (last name) -->
  22. <person name="Max Berger" email="mayberger@apache.org" id="MB"/>
  23. <person name="Chris Bowditch" email="cbowditch@apache.org" id="CB"/>
  24. <person name="Jay Bryant" email="jbryant@apache.org" id="JB"/>
  25. <person name="Adrian Cumiskey" email="acumiskey@apache.org" id="AC"/>
  26. <person name="Bertrand Delacrétaz" email="bdelacretaz@apache.org" id="BD"/>
  27. <person name="Andreas Delmelle" email="adelmelle@apache.org" id="AD"/>
  28. <person name="Luca Furini" email="lfurini@apache.org" id="LF"/>
  29. <person name="Christian Geisert" email="chrisg@apache.org" id="CG"/>
  30. <person name="Vincent Hennebert" email="vhennebert@apache.org" id="VH"/>
  31. <person name="Clay Leeds" email="clay@apache.org" id="CL"/>
  32. <person name="Manuel Mall" email="manuel@apache.org" id="MM"/>
  33. <person name="Jeremias Märki" email="jeremias@apache.org" id="JM"/>
  34. <person name="Simon Pepping" email="spepping@apache.org" id="SP"/>
  35. <person name="the FOP committers" email="fop-dev@xmlgraphics.apache.org" id="all"/>
  36. <person name="Volunteer needed" email="general@xmlgraphics.apache.org" id="open"/>
  37. <!-- See also src/documentation/content/xdocs/team.xml -->
  38. </developers>
  39. <contexts>
  40. <context id="Docs" title="Changes to Documentation"/>
  41. <context id="Code" title="Changes to the Code Base"/>
  42. <context id="Layout" title="Changes to the Layout Engine"/>
  43. <context id="Renderers" title="Changes to Renderers (Output Formats)"/>
  44. <context id="Fonts" title="Changes to the Font Subsystem"/>
  45. <context id="API" title="Changes to the End-User API"/>
  46. <context id="Extensions" title="Changes to the Bundled Extensions"/>
  47. <context id="Images" title="Changes to the Image Support"/>
  48. <context id="Config" title="Changes to the User Configuration"/>
  49. </contexts>
  50. <changes>
  51. <!--
  52. When adding changes, please try to highlight those which might affect upgrading
  53. users, i.e. when the behaviour changes and could affect the layout of existing
  54. documents. Example: the fix of marks layering will be such a case when it's done.
  55. -->
  56. <release version="FOP Trunk" date="TBD">
  57. <action context="Renderers" dev="JM" type="add">
  58. Added support for CIE Lab colors (from XSL-FO 2.0 WD).
  59. </action>
  60. <action context="Renderers" dev="JM" type="add" fixes-bug="49403" due-to="Patrick Jaromin">
  61. Initial work on spot colors (aka named colors) for PDF output.
  62. </action>
  63. <action context="Renderers" dev="JM" type="fix" fixes-bug="50705" due-to="Mehdi Houshmand">
  64. Fix to preserve the order of AFP TLEs and NOPs as given in the XSL-FO document.
  65. </action>
  66. <action context="Fonts" dev="JM" type="add" fixes-bug="50699" due-to="Alexandros Papadakis">
  67. Added support for lookup of alternative glyphs when additional single-byte encodings are
  68. used, ex. replacing "Omegagreek" by "Omega" and vice versa.
  69. </action>
  70. <action context="Code" dev="AD" type="add" fixes-bug="48334">
  71. Added support for resolution of relative URIs against a specified xml:base during
  72. property refinement.
  73. </action>
  74. <action context="Renderers" dev="JM" type="add">
  75. Allow afp:no-operation to also appear under fo:page-sequence and fo:declarations.
  76. </action>
  77. <action context="Code" dev="AD" type="fix" fixes-bug="50635" due-to="mkoegler.AT.auto.tuwien.ac.at">
  78. Bugfix: fix issue in RenderPagesModel.checkPreparedPages() where the same page-sequence
  79. is potentially started multiple times.
  80. </action>
  81. <action context="Code" dev="AD" type="fix" fixes-bug="50636" due-to="mkoegler.AT.auto.tuwien.ac.at">
  82. Bugfix: fix performance issue when adding pages, if the total number of pages
  83. is significantly large.
  84. </action>
  85. <action context="Code" dev="AD" type="fix" fixes-bug="50626" due-to="mkoegler.AT.auto.tuwien.ac.at">
  86. Bugfix: fix performance issue when adding nodes, if the number of children
  87. is significantly large.
  88. </action>
  89. <action context="Config" dev="SP" type="fix">
  90. Bugfix: relative URIs in the configuration file (base, font-base, hyphenation-base) are evaluated relative to the base URI of the configuration file.
  91. </action>
  92. <action context="Layout" dev="AD" type="fix" fixes-bug="49848">
  93. Bugfix: correct behavior of keep-together.within-line in case there are nested inlines
  94. </action>
  95. <action context="Code" dev="AD" type="fix" fixes-bug="50471">
  96. Bugfix: avoid ArrayIndexOutOfBoundsException for codepoints without a linebreak class
  97. </action>
  98. <action context="Layout" dev="AD" type="fix" fixes-bug="48380">
  99. Bugfix: avoid ClassCastException when using fox:widow-content-limit
  100. </action>
  101. <action context="Layout" dev="VH" type="fix" fixes-bug="50089">
  102. Bugfix: content after forced break in block-container is not rendered.
  103. </action>
  104. <action context="Layout" dev="JM" type="fix" fixes-bug="42034">
  105. Fixed adjustment of inline parent area for justified text containing a forward page reference.
  106. </action>
  107. <action context="Layout" dev="AD" type="fix" fixes-bug="38264">
  108. Fixed behavior when combining hyphenation with preserved linefeeds or whitespace.
  109. </action>
  110. <action context="Code" dev="VH" type="fix" fixes-bug="49695" due-to="Joshua Marquart">
  111. Replaced magic numbers with constants from UnitConv and GraphicsConstants.
  112. </action>
  113. <action context="Renderers" dev="JM" type="add" fixes-bug="42600" due-to="Maximilian Aster">
  114. Added some support for break-before/-after for RTF output.
  115. </action>
  116. <action context="Renderers" dev="JM" type="add" fixes-bug="49379" due-to="Peter Hancock">
  117. Added ability to embed an external AFP page segment resource file (AFP output only).
  118. </action>
  119. <action context="Renderers" dev="JM" type="fix" fixes-bug="46360" due-to="Alexis Giotis">
  120. Fixed a multi-threading issue when rendering SVG.
  121. </action>
  122. <action context="Layout" dev="JM" type="fix" fixes-bug="49885">
  123. Fixed retrieval of available BPD for cases spanning columns and multiple pages with differing page masters.
  124. </action>
  125. <action context="Renderers" dev="VH" type="remove">
  126. Removed old Renderer implementations for those output formats that have a version based on
  127. the new DocumentHandler architecture available (AFP, PCL, PDF, PS).
  128. </action>
  129. <action context="Fonts" dev="AC" type="fix">
  130. Reinstated support for being able to specify a font cache filepath in the fop user configuration.
  131. </action>
  132. <action context="Fonts" dev="AC" type="add">
  133. Added convenience support for the flushing of the Fop font cache file from the command line.
  134. </action>
  135. <action context="Renderers" dev="JM" type="add" fixes-bug="44460" due-to="Andrejus Chaliapinas">
  136. Added support for PDF File Attachments (Embedded Files).
  137. </action>
  138. </release>
  139. <release version="1.0" date="21 July 2010">
  140. <action context="Renderers" dev="JM" type="fix">
  141. AFP Output: Fixed positioning of Java2D-based images (when GOCA is enabled).
  142. </action>
  143. <action context="Renderers" dev="JM" type="add">
  144. AFP Output: Added enhanced dithering functionality for images that are converted to
  145. bi-level images.
  146. </action>
  147. <action context="Renderers" dev="JM" type="fix">
  148. AFP Output: Fix for bitmap images inside an SVG or G2D graphic (printer errors) and
  149. positioning fix for bitmaps from G2D graphics.
  150. </action>
  151. <action context="Renderers" dev="JM" type="fix" fixes-bug="42306" due-to="Richard Wheeldon">
  152. Fix for AWT viewer to correctly track page numbers in continuous display mode.
  153. </action>
  154. <action context="Renderers" dev="JM" type="fix">
  155. Bugfix for formatting of floating point numbers which could lead to invalid PDFs.
  156. </action>
  157. <action context="Renderers" dev="JM" type="fix">
  158. Added a save/restoreGraphicsState pair for the initial coordinate system in PDF output
  159. for easier post-processing.
  160. </action>
  161. <action context="Images" dev="JM" type="add">
  162. Added customization ability for the image loading framework from FOP's configuration file.
  163. </action>
  164. <action context="Renderers" dev="JM" type="fix" fixes-bug="48696" due-to="Peter Hancock">
  165. Bugfix for color model in IOCA IDE structure parameter for 4- and 8-bit grayscale images.
  166. </action>
  167. <action context="Renderers" dev="JM" type="add" fixes-bug="48567" due-to="Peter Hancock">
  168. Initial support for CID-keyed double-byte fonts (Type 0) in AFP output.
  169. </action>
  170. <action context="API" dev="SP" type="add">Added a command-line option '-catalog' to use a catalog resolver for the XML and XSLT files</action>
  171. <action context="Layout" dev="SP" type="add">Implement internal character classes if the hyphenation pattern file does not contain them</action>
  172. <action context="Layout" dev="VH" type="fix" fixes-bug="46486">
  173. Bugfix: having a special page-master for the last page caused loss of content when normal
  174. blocks were mixed with blocks spanning all columns.
  175. </action>
  176. <action context="Renderers" dev="VH" type="add">
  177. Added possibility to customize PDF tagging via the ‘role’ property.
  178. </action>
  179. <action context="Renderers" dev="CB" type="fix" fixes-bug="48237" due-to="Peter Hancock">
  180. Bugfix: AFP Renderer: Respect image color settings for svg
  181. </action>
  182. <action context="Renderers" dev="CB" type="fix" fixes-bug="48376" due-to="Venkat Reddy">
  183. Bugfix: AFP Renderer: Page Overlays not generated when using Intermediate Format
  184. </action>
  185. <action context="Renderers" dev="CB" type="fix" fixes-bug="48456">
  186. Bugfix: AFP Renderer: Underline is incorrectly placed when reference-orientation != 0
  187. </action>
  188. <action context="Renderers" dev="CB" type="fix" fixes-bug="48453">
  189. Bugfix: AFP Renderer: Page Segments not positioned correctly when reference-orientation != 0
  190. </action>
  191. <action context="Fonts" dev="JM" type="add">
  192. Added support for TrueType fonts with symbol character maps (like "Wingdings" and "Symbol").
  193. Character for these fonts are usually found in the 0xF020 to 0xF0FF range
  194. (a Unicode private use area).
  195. </action>
  196. <action context="Fonts" dev="JM" type="fix">
  197. Bugfix: Font selection fallbacks did not work in some cases (ex. bold+italic to normal)
  198. </action>
  199. <action context="Renderers" dev="CB" type="fix" fixes-bug="48290">
  200. Bugfix: AFP Renderer: AttributeQualifier Triplet occurs before TLE Value.
  201. </action>
  202. <action context="Renderers" dev="JM" type="fix" fixes-bug="48048" due-to="D.W. Harks">
  203. Bugfix in AFP output: fixed flags in GOCA GBAR order.
  204. </action>
  205. <action context="Renderers" dev="VH" type="fix" fixes-bug="48185" due-to="Harald G. Henne">
  206. Bugfix in AFP output: rounding error when computing the CMYK components of a color.
  207. </action>
  208. <action context="Code" dev="VH" type="fix" fixes-bug="48167" due-to="Venkat Reddy">
  209. Bugfix: when #CMYK pseudo-profile was used in the rgb-icc() function, always the fallback
  210. RGB colors were used instead.
  211. </action>
  212. <action context="Layout" dev="VH" type="fix" fixes-bug="48082">
  213. Bugfix: value of conditional space not always taken into account in the calculation of a
  214. table’s height.
  215. </action>
  216. <action context="Renderers" dev="JM,VH" type="add" fixes-bug="46705" due-to="Jost Klopfstein">
  217. Added basic accessibility and Tagged PDF support.
  218. </action>
  219. <action context="Renderers" dev="JM" type="add">
  220. Added support for encoding CMYK bitmap images (IOCA FS45) and TIFF images as embedded objects.
  221. </action>
  222. <action context="Code" dev="AC" type="add">
  223. Added support for xmlfile and xsltfile parameters in FOP's Ant Task.
  224. </action>
  225. <action context="Renderers" dev="AC" type="fix" fixes-bug="47941">
  226. BugFix: Maintain valid AFP by providing TLE truncation on Attribute Value Triplet values that are greater than 250 chars in length.
  227. </action>
  228. <action context="Fonts" dev="JM" type="fix" fixes-bug="47711" due-to="Nicolas Peninguy">
  229. Fixed generation of CIDSet object in PDF output.
  230. </action>
  231. <action context="Layout" dev="VH" type="fix">
  232. Fixed handling of percentage values for provisional-label-separation.
  233. </action>
  234. <action context="Layout" dev="VH" type="fix" fixes-bug="47835" due-to="Jonathan Levinson">
  235. Fixed handling of percentage values for provisional-distance-between-starts.
  236. </action>
  237. <action context="Renderers" dev="CB" type="add">
  238. Added support for positioning Page Overlays in AFP Output
  239. </action>
  240. <action context="Fonts" dev="JM" type="add">
  241. Added support for specifying referenced fonts per renderer in addition to the general
  242. match list.
  243. </action>
  244. <action context="Renderers" dev="JM" type="add">
  245. Added support for creating thumbnails or preview bitmaps of fixed size for PNG and TIFF
  246. output.
  247. </action>
  248. <action context="Extensions" dev="JM" type="add">
  249. Added support for the #CMYK pseudo-profile supported by some commercial XSL implementations
  250. on the rgb-icc() function.
  251. </action>
  252. <action context="Layout" dev="VH" type="add" importance="high">
  253. Added limited support for pages of different inline-progression-dimensions within a
  254. page-sequence.
  255. </action>
  256. <action context="Layout" dev="AD" type="add" fixes-bug="46905">
  257. Added basic implementation for column-keeps.
  258. </action>
  259. <action context="Code" dev="AD" type="fix" fixes-bug="47710">
  260. White-space handling in markers with inline-content throws a NullPointerException
  261. in some cases.
  262. </action>
  263. <action context="Renderers" dev="CB" type="fix" fixes-bug="47694">
  264. Dithered Background Shading can produce illegal AFP if objects are very small
  265. </action>
  266. <action context="Renderers" dev="CB" type="add">
  267. AFP Output: Added support for IMM Extension on fo:simple-page-master.
  268. </action>
  269. <action context="Renderers" dev="JM" type="add" fixes-bug="47311" due-to="Peter Coppens">
  270. Added an initial set of extensions for prepress support (fox:bleed, fox:crop-offset,
  271. fox:crop-box and fox:scale). This is currently supported only by PDF and Java2D renderers.
  272. </action>
  273. <action context="Renderers" dev="JM" type="add">
  274. PCL Output: Added support for specifying the output bin.
  275. </action>
  276. <action context="Renderers" dev="JM" type="add">
  277. AFP Output: Added support for embedding external AFP form maps (form defs) using the
  278. afp:include-form-map extension.
  279. </action>
  280. <action context="Renderers" dev="JM" type="add">
  281. AFP Output: Added support for AFP font embedding. Note: this changes the default behaviour.
  282. Like with PDF and PS, all fonts are embedded by default unless matched in the
  283. "referenced-fonts" section in the configuration.
  284. </action>
  285. <action context="Renderers" dev="AD" type="fix" fixes-bug="47508" due-to="Bharat Attaluri">
  286. Bugfix: Error while writing TLE's attribute qualifier in the output.
  287. </action>
  288. <action context="Renderers" dev="CB" type="fix">
  289. Bugfix: support justified text in AFP Renderer (already working in AFP Painter)
  290. </action>
  291. <action context="Renderers" dev="AD" type="add">
  292. AFP Renderer Raster Fonts:
  293. <ul>
  294. <li>added support for fractional font-sizes in the configuration.</li>
  295. <li>selection of the smaller font-size, in case two possible fallbacks have the
  296. same difference to a requested size.</li>
  297. </ul>
  298. </action>
  299. <action context="Fonts" dev="CB" type="fix">
  300. Bugfix: support PFM Files with no extent table.
  301. </action>
  302. <action context="Code" dev="AD" type="fix" fixes-bug="46960">
  303. Bugfix: previously retrieved markers were not cleared if the new marker was empty.
  304. </action>
  305. <action context="Fonts" dev="VH" type="fix" fixes-bug="47232" due-to="Maxim Wirt">
  306. Bugfix: for the last character of a Type1 font, always a width of 0 was returned.
  307. </action>
  308. <action context="Code" dev="VH" type="fix">
  309. Changed meaning of ‘-v’ option to ‘verbose’, which will print FOP’s version and proceed.
  310. Added a ‘-version’ option to simply print the version then exit, following Java practices.
  311. </action>
  312. <action context="Layout" dev="VH" type="fix" fixes-bug="47101">
  313. Bugfix: The cells of a table inside a marker were duplicated at every marker retrieval.
  314. </action>
  315. <action context="Images" dev="JM" type="fix">
  316. Bugfix: use the effective color profile supplied by the ImageEncodingHelper, instead of the
  317. original one.
  318. </action>
  319. <action context="Renderers" dev="JM" type="fix">
  320. Bugfix: reset graphic state when a page is finished in PostScript.
  321. </action>
  322. <action context="Renderers" dev="JM" type="add">
  323. Added setting to enable dithered painting of filled rectangles in AFP and PCL.
  324. </action>
  325. <action context="Layout" dev="VH" type="fix">
  326. Bugfix: footnotes occurring within the forced height of a table row did not appear on the
  327. output
  328. </action>
  329. <action context="Renderers" dev="JM" type="update" fixes-bug="47031" due-to="Francois Fernandes">
  330. PDFGraphics2D.writeClip doesn't generate a clip command anymore when the clip path
  331. is empty.
  332. </action>
  333. <action context="Renderers" dev="JM" type="add" fixes-bug="47000">
  334. Added a custom text painter for rendering SVG text using text operators when rendering
  335. to PostScript or EPS. Text is no longer painted as shapes, thus creating much smaller files.
  336. </action>
  337. <action context="Renderers" dev="JM" type="fix">
  338. Fixed a bug that left the PrintRenderer unconfigured even if a configuration was
  339. specified for "application/X-fop-print".
  340. </action>
  341. <action context="Renderers" dev="JM" type="fix" fixes-bug="46882" due-to="Yegor Kozlov">
  342. Fixed the handling of CMYK colors in PDFGraphics2D.
  343. </action>
  344. <action context="Layout" dev="AD" type="fix" fixes-bug="46489">
  345. Fixed a bug when combining a forced break with a "last" page-master. The restart
  346. of the algorithm would start at the index of the penalty corresponding to the last
  347. page-break. This has been changed to the index of the first element after the last
  348. page-break.
  349. </action>
  350. <action context="Fonts" dev="JM" type="add">
  351. Added a command-line tool to list all configured fonts
  352. (org.apache.fop.tools.fontlist.FontListMain).
  353. </action>
  354. <action context="Code" dev="AD" type="add" fixes-bug="46828" due-to="Dario Laera">
  355. Added the possibility to use CachedRenderPagesModel, to conserve memory in case
  356. of large documents with a lot of cross-references (area tree will be serialized to
  357. disk to avoid keeping it entirely in memory).
  358. </action>
  359. <action context="Fonts" dev="JM" type="add">
  360. AFP Fonts: Added support for full URI resolution on configured AFP fonts.
  361. </action>
  362. <action context="Renderers" dev="JM" type="add">
  363. AFP Output: Tag Logical Element (TLE) is now also allowed on fo:page-sequence
  364. (page group level).
  365. </action>
  366. <action context="Layout" dev="JM" type="fix">
  367. Fixed BPD trait and border painting for leaders with leader-pattern="space"
  368. (and similar cases).
  369. </action>
  370. <action context="Renderers" dev="JM" type="add">
  371. AFP Output: Added support for Invoke Medium Map (IMM).
  372. </action>
  373. <action context="Renderers" dev="JM" type="add">
  374. Introduced a new, additional intermediate format optimized for performance. Please see
  375. the intermediate format documentation for details.
  376. </action>
  377. <action context="Fonts" dev="JM" type="fix" fixes-bug="46686" due-to="Alok Singh">
  378. Use temporary directory for the font cache if the user home directory is not
  379. write-accessible.
  380. </action>
  381. <action context="Renderers" dev="JM" type="fix" fixes-bug="45342" due-to="Emil Maskovsky">
  382. AFP Fonts: Fixed interpretation of metric for fonts with fixed metrics and made sure
  383. all repeating groups in FNP (Font Position) are processed.
  384. </action>
  385. <action context="Renderers" dev="JM" type="add">
  386. AFP Output: Added a configuration option to override the resource level defaults in the
  387. code.
  388. </action>
  389. <action context="Code" dev="VH" type="fix" fixes-bug="46638">
  390. MinOptMaxUtil.toMinOptMax was converting LengthRangeProperty objects into illegal MinOptMax
  391. objects (in some cases opt could be inferior to min).
  392. </action>
  393. <action context="Layout" dev="VH" type="add" fixes-bug="46315" due-to="Georg Datterl">
  394. Added extension to disable column balancing before blocks spanning the whole page, in
  395. multiple-column documents.
  396. </action>
  397. <action context="Renderers" dev="JM" type="add">
  398. AFP Output: Bilevel images in resource groups as generated as hard page segments
  399. (instead of image objects) for better interoperability with older IPDS environments
  400. and for better printing performance.
  401. </action>
  402. <action context="Fonts" dev="JM" type="add">
  403. FOP now creates ToUnicode CMaps for single-byte fonts that don't use built-in
  404. encodings to help PDF text extractors interpreting characters.
  405. </action>
  406. <action context="Fonts" dev="JM" type="add">
  407. Added support for forcing single-byte encodings for TrueType fonts without
  408. creating an XML font metric file (see "encoding-mode" attribute on "font" element)
  409. </action>
  410. <action context="Layout" dev="JM" type="fix" fixes-bug="45306">
  411. Fixed fo:instream-foreign-object inside fo:marker.
  412. </action>
  413. <action context="Renderers" dev="JM" type="fix">
  414. Fixed black backgrounds occurring for transparent images in PCL output.
  415. </action>
  416. <action context="Renderers" dev="CB" type="fix" fixes-bug="46369">
  417. Fixed bug that caused AFP Renderer Extensions to be ignored.
  418. </action>
  419. <action context="Code" dev="AD" type="fix" fixes-bug="46319">
  420. Fixed a memory-leak in Marker.MarkerAttribute, where an instance was used both as key and value in
  421. a WeakHashMap, effectively neutralizing the benefit of using WeakReferences. Solved by extending
  422. PropertyCache to work for MarkerAttributes as well.
  423. </action>
  424. <action context="Renderers" dev="JM" type="fix" fixed-bug="46360">
  425. Fixed a multi-threading issue when rendering SVG.
  426. </action>
  427. <action context="Renderers" dev="AC" importance="high" type="add">
  428. AFP Output: An AFPGraphics2D implementation which provides the ability to use Batik to drive the production of AFP Graphics (GOCA) output from SVG.
  429. </action>
  430. <action context="Renderers" dev="AC" importance="high" type="add">
  431. AFP Output: Resource group leveling, external streaming, and de-duplication of images and graphics using IncludeObject and ResourceGroup.
  432. </action>
  433. <action context="Renderers" dev="AC" importance="high" type="add">
  434. AFP Output: Native image embedding support (e.g. JPEG, GIF, TIFF) using ObjectContainer and a MOD:CA Registry implementation.
  435. </action>
  436. <action context="Fonts" dev="AC" type="fix">
  437. More robust AFP font parsing, although it is still in need of some rework in the future.
  438. </action>
  439. <action context="Images" dev="JM" type="add" fixes-bug="41657">
  440. Added support for SVG 1.2 functionality inside fo:instream-foreign-object.
  441. </action>
  442. <action context="Layout" dev="AD" type="fix" fixes-bug="46240">
  443. Fixed a bug when combining break-before with a span change.
  444. </action>
  445. <action context="Code" dev="AD" type="fix" fixes-bug="46211" due-to="rogov.AT.devexperts.com">
  446. Fixed some multi-threading issues in FontCache.java:
  447. <ul>
  448. <li>remove the unused private readObject()</li>
  449. <li>make the changeLock member final (initialization-safety + impossible to reassign)</li>
  450. <li>perform the HashMap check for a failed font inside the synchronized block to avoid a race condition</li>
  451. </ul>
  452. </action>
  453. <action context="Renderers" dev="AD" type="add" fixes-bug="45113" due-to="Alexander Stamenov">
  454. Added PDF /Launch action: references to URIs using the file:// protocol will now generate
  455. a /Launch action as opposed to a more general /URI (which doesn't yield the expected result
  456. for this protocol).
  457. </action>
  458. <action context="Layout" dev="JM" type="fix">
  459. Fixed a problem where the BPD or a block area could be wrong if there is a nested,
  460. absolutely positioned area (for example a block-container).
  461. </action>
  462. <action context="Code" dev="VH" type="fix" fixes-bug="45971" due-to="Tow Browder">
  463. Improved the behaviour of the command line interface.
  464. </action>
  465. <action context="Layout" dev="AD" type="fix" fixes-bug="40798">
  466. Bugzilla 40798: A conditional-page-master-reference with page-position="last" qualifies
  467. for a first page, if it is also the last. Additionally: also added support for
  468. page-position="only".
  469. </action>
  470. <action context="Code" dev="AD" type="fix" fixes-bug="45842" due-to="Carsten Siedentop">
  471. Make fop.bat and fop.cmd use the %FOP_OPTS% environment variable.
  472. </action>
  473. <action context="Renderers" dev="JM" type="add" fixes-bug="45795">
  474. PDF Output: Added support for handling 16-bit alpha channel. They are currently
  475. converted to 8 bits.
  476. </action>
  477. <action context="Renderers" dev="JM" type="fix">
  478. PDF Output: Made sure the XMP Metadata stream is never compressed.
  479. </action>
  480. <action context="Fonts" dev="JM" type="fix" fixes-bug="45734" due-to="J. Frantzius">
  481. Fix for PFMReader after bug #43089 changed the behavior of PFMFile. Fixes baseline
  482. problems when Type 1 fonts are used in conjunction with XML font metric files.
  483. </action>
  484. <action context="Renderers" dev="JM" type="fix" fixes-bug="45616" due-to="Pavel Kysilka">
  485. Fix for table handling in RTF output, so the output works with OpenOffice and AbiWord, too.
  486. </action>
  487. <action context="Code" dev="AD" type="fix" fixes-bug="45667">
  488. Quick-fix to avoid a possible NullPointerException when using
  489. empty inlines and hyphenation.
  490. </action>
  491. <action context="Layout" dev="JM" type="add">
  492. Added missing generation of areas for empty grid units in tables with collapsing border
  493. model.
  494. </action>
  495. <action context="Code" dev="JM" type="fix" importance="high">
  496. Fixed memory leak in property cache (not cleaning stale PropertyCache$CacheEntry instances).
  497. </action>
  498. <action context="Renderers" dev="JM" type="fix">
  499. Fixed text stroking in SVG when the stroke-width is zero.
  500. </action>
  501. <action context="Layout" dev="JM" type="fix">
  502. Fixed the source for a division by zero when the content of an fo:leader with
  503. leader-pattern="use-content" collapses to zero width during layout.
  504. </action>
  505. <action context="Renderers" dev="JM" type="fix">
  506. Fixed border trait parsing for the area tree XML when CMYK or ICC colors were used.
  507. </action>
  508. <action context="Renderers" dev="JM" type="fix" fixes-bug="45606" due-to="Pavel Kysilka">
  509. Fixed generation of "fonttbl" for RTF output to fix loading problem with AbiWord.
  510. </action>
  511. <action context="Layout" dev="JM" type="fix">
  512. Fixed ID resolution for nested bookmarks with duplicated IDs.
  513. </action>
  514. <action context="Code" dev="AD" type="fix" fixes-bug="45490" due-to="Thomas Stieler">
  515. Fixed a slight error when resolving non-file URLs: avoid
  516. altering the original 'href' if the protocol is other than 'file:'
  517. </action>
  518. <action context="Layout" dev="JM" type="fix" fixes-bug="45470">
  519. Added LayoutManagerMapping.registerMaker() to make registration of custom
  520. layout managers easier.
  521. </action>
  522. <action context="Layout" dev="LF" type="fix">
  523. Fixed absolute positioning of block-containers when specified
  524. using right and bottom instead of left and top.
  525. </action>
  526. <action context="Renderers" dev="AC" type="add">
  527. Added PDF encryption parameter support in configuration.
  528. </action>
  529. <action context="Layout" dev="LF" type="add">
  530. Allowing non-zero borders and padding on page regions when
  531. relaxed validation is turned on.
  532. </action>
  533. <action context="Layout" dev="LF" type="fix">
  534. Fixed an inconsistency in footnote handling that led to unnecessary
  535. empty areas in pages whose last normal line contains footnotes
  536. when the page bpd is not the same for all pages.
  537. </action>
  538. <action context="Code" dev="AD" type="update" importance="high">
  539. Changed FONode.addCharacters() parameter to closer match the signature of
  540. the standard SAX characters() event (reduces confusion and computations).
  541. <em>!! Implementors of extensions that subclass FONode directly, and
  542. offer an implementation for addCharacters() should take care to make
  543. similar modifications in their code !!</em>
  544. </action>
  545. <action context="Renderers" dev="JM" type="add" fixes-bug="45115" due-to="Martin Edge">
  546. Added a PCL-specific extension attribute on simple-page-master for controlling
  547. the simplex/duplex mode.
  548. </action>
  549. <action context="Code" dev="AD" type="fix" fixes-bug="45097">
  550. Corrected white-space-treatment for situations where an inline-node is the first/last
  551. child node of an fo:block, without preceding/following text.
  552. </action>
  553. <action context="Layout" dev="MB" type="add">
  554. Implemented word-by-ford font-selection strategy on text.
  555. </action>
  556. <action context="Layout" dev="MB" type="add">
  557. Support character-by-character font-selection strategy on fo:character element.
  558. </action>
  559. <action context="Layout" dev="AD" type="fix" fixes-bug="44794">
  560. Added support for page-number-citation and page-number-citation-last
  561. of fo:inline. Corrected behavior for page-number-citation-last
  562. of fo:block: forward references now properly resolved.
  563. </action>
  564. <action context="Fonts" dev="JM" type="add">
  565. For auto-detected fonts it is now possible to specify that a font needs to be referenced
  566. rather than embedded (for the output formats that support this distinction).
  567. </action>
  568. <action context="Layout" dev="AD" type="fix" fixes-bug="42423">
  569. Added support for the "id" attribute on fo:wrappers when used
  570. as a child of the fo:flow.
  571. </action>
  572. <action context="Layout" dev="AD" type="fix" fixes-bug="41500">
  573. Fixed a ClassCastException when using an fo:wrapper as a child
  574. of an fo:block-container.
  575. </action>
  576. <action context="Fonts" dev="AC" type="add" importance="high">
  577. Add support for font substitution.
  578. </action>
  579. <action context="Renderers" dev="JM" type="fix" fixes-bug="43650">
  580. PCL Renderer: Improved page format selection so it doesn't interfere with
  581. duplex printing.
  582. </action>
  583. <action context="Layout" dev="AD" type="fix" fixes-bug="42703">
  584. Fixed a regression introduced by the fix for
  585. <link href="https://issues.apache.org/bugzilla/show_bug.cgi?id=44286">Bugzilla 44286</link>.
  586. </action>
  587. <action context="Layout" dev="AD" type="fix" fixes-bug="43591">
  588. Activated min-height/max-height and min-width/max-width properties.
  589. </action>
  590. <action context="Code" dev="AD" type="fix" fixes-bug="44203">
  591. Fixed a logic error in Hyphenator.java:
  592. If the source had an associated InputStream, an UnsupportedOperationException was
  593. triggered.
  594. </action>
  595. <action context="Renderers" dev="AD" type="add" fixes-bug="44634">
  596. Add partial support for the "show-destination" property on fo:basic-link
  597. (PDF output only; see limitations on the compliance page)
  598. </action>
  599. <action context="Layout" dev="JM" type="add" importance="high">
  600. Added minimal support for integer keep values on the various keep properties on block-level
  601. FOs. For now, all integer values are treated the same (i.e. without strength distinction).
  602. Using integers allows to avoid overflows that can happen when "always" is used extensively.
  603. </action>
  604. <action context="Renderers" dev="JM" type="add">
  605. Added support for rendering pages using JPS (Java Printing System). See new example:
  606. examples/embedding/java/ExamplesFO2JPSPrint.java
  607. </action>
  608. <action context="Renderers" dev="JM" type="add" fixes-bug="41687">
  609. Restored ability to specify from/to and odd/even pages as well as the number of copies
  610. for printing from the command-line.
  611. </action>
  612. <action context="Renderers" dev="JM" type="add" fixes-bug="44678" due-to="Antti Karanta">
  613. Added ability to pass a preconfigured PrinterJob instance to the PrintRenderer via
  614. the rendering options map.
  615. </action>
  616. <action context="Renderers" dev="JM" type="add" fixes-bug="44743" due-to="Yegor Kozlov">
  617. Added a public accessor for reference to the current page to PDFGraphics2D.
  618. </action>
  619. <action context="Fonts" dev="JM" type="add" fixes-bug="44737" due-to="Jason Harrop">
  620. Added support for auto-configuring TrueType Collections. XML font metrics files for
  621. *.ttc fonts are not required anymore.
  622. </action>
  623. <action context="Renderers" dev="JM" type="update">
  624. When a JPEG image is embedded, an optionally embedded color profile is filtered out
  625. as it's already embedded separately in the PDF file.
  626. </action>
  627. <action context="Fonts" dev="JM" type="add" importance="high">
  628. Added support for addressing all glyphs available in a Type 1 font, not just the ones
  629. in the font's primary encoding.
  630. </action>
  631. <action context="Code" dev="JM" type="add" importance="high">
  632. Added an event handling framework which allows to get better feedback from within FOP
  633. with the ability to customize problem management.
  634. </action>
  635. </release>
  636. <release version="0.95" date="05 August 2008">
  637. <notes>
  638. <section>
  639. <title>Notes</title>
  640. <p>
  641. Besides the important changes listed below, the most important areas with
  642. improvements in this release are:
  643. </p>
  644. <ul>
  645. <li>
  646. Many bugfixes in tables, plus some new features (full support for keeps and
  647. breaks, border conditionality, background on columns and header/footer/body)
  648. </li>
  649. <li>
  650. Improvements and bugfixes for font handling and font
  651. auto-detection/-registration.
  652. </li>
  653. <li>
  654. Performance improvements and memory optimizations for the property handling
  655. in the FO tree.
  656. </li>
  657. </ul>
  658. <p>
  659. Please note that with this release, we've dropped support for Java 1.3.
  660. FOP will, from now on, <strong>require at least Java 1.4</strong>.
  661. </p>
  662. <p>
  663. There have been a few changes in tables that make FOP both more strict and more
  664. compliant to the Recommendation:
  665. <ul>
  666. <li>XSL-FO 1.1 explicitly states that a row-spanning fo:table-cell element is not
  667. allowed to span further than its enclosing fo:table-header/footer/body element
  668. (see bottom of <link href="http://www.w3.org/TR/xsl11/#fo_table">section
  669. 6.7.3</link>). From now on FOP will give a validation error if a document
  670. contains such an erroneous cell.
  671. </li>
  672. <li>
  673. <p>If an fo:table element contains explicit fo:table-column children, then those
  674. elements set the total number of columns in the table. This means that a
  675. validation error will now occur if a row contains more cells than available
  676. columns. This change allows to improve performance, since the rendering of the
  677. table may start as soon as the table-column elements have been parsed.</p>
  678. <p>If more flexibility is needed, then the fo:table-column elements may be just
  679. omitted. The final number of columns will then be set by the row that has the
  680. most cells.</p>
  681. </li>
  682. </ul>
  683. </p>
  684. <p>
  685. The image libraries Jimi and JAI are no longer needed (and used) for image loading.
  686. Instead we rely completely on the Image I/O API that has been introduced with
  687. Java 1.4. If you still need support for bitmap image formats that do not work
  688. out-of-the-box, we recommend adding
  689. <link href="http://jai-imageio.dev.java.net/">JAI Image I/O Tools</link>
  690. (an Image I/O compatible image codec package) to the classpath. JAI is still required
  691. for building the FOP distribution but it is optional for normal builds and at run-time.
  692. </p>
  693. <note>
  694. This final 0.95 release also includes all of the
  695. <a href="changes_0.95beta.html">changes made for Apache FOP 0.95beta</a>.
  696. </note>
  697. </section>
  698. </notes>
  699. <action context="Renderers" dev="JM" type="fix">
  700. Fixed a color selection problem which occurred after an image has been painted
  701. through the Graphics2DAdapter in PDF output.
  702. </action>
  703. <action context="Renderers" dev="JM" type="fix" fixes-bug="41306">
  704. Fixed page ordering problem with AWTRenderer.
  705. </action>
  706. <action context="Renderers" dev="JM" type="fix" fixes-bug="39980">
  707. Fixed image scaling for RTF output.
  708. </action>
  709. <action context="API" dev="JM" type="fix">
  710. Fixed the -imagein command-line option.
  711. </action>
  712. <action context="Renderers" dev="JM" type="add" fixes-bug="43825" due-to="Maximilian Aster">
  713. Added support for fo:leader for RTF output (no full support!). Fixes problems with empty leaders
  714. being used to force empty lines among other issues.
  715. </action>
  716. <action context="Renderers" dev="JM" type="add" fixes-bug="43824" due-to="Maximilian Aster">
  717. Added support for page-number-citation for RTF output.
  718. </action>
  719. <action context="Renderers" dev="JM" type="fix" fixes-bug="43606" due-to="Maximilian Aster">
  720. Fixed handling of proportional-column-width() and percentages for table column in RTF
  721. output.
  722. </action>
  723. <action context="Layout" dev="AD" type="fix" fixes-bug="45295">
  724. Fixed NullPointerException when page-number-citations are used inside a marker.
  725. </action>
  726. <action context="Images" dev="JM" type="fix">
  727. Fixed two bugs concerning resolution handling with SVG images and their
  728. conversion to bitmaps for RTF output.
  729. </action>
  730. <action context="Code" dev="JM" type="fix" fixes-bug="44887" importance="high">
  731. Fixed potential multi-threading problem concerning the use of DecimalFormat.
  732. </action>
  733. <action context="Layout" dev="JM" type="fix" fixes-bug="44412">
  734. Regression bugfix: Multiple collapsible breaks don't cause empty pages anymore.
  735. </action>
  736. <action context="Renderers" dev="JM" type="fix">
  737. Fixed resolution handling inside AWT preview dialog.
  738. </action>
  739. <action context="Renderers" dev="JM" type="fix" importance="high">
  740. Fixed positioning of absolutely positioned block-containers in multi-column documents.
  741. </action>
  742. <action context="Renderers" dev="JM" type="fix" importance="high">
  743. Fixed rendering of fixed block-containers in AFP output.
  744. </action>
  745. <action context="Layout" dev="VH" type="fix" fixes-bug="44621" importance="high">
  746. Various bugfixes for table layout.
  747. </action>
  748. <action context="Renderers" dev="JM" type="fix">
  749. Fixed regression causing bad positioning of block-containers if used as descendant
  750. of a table-cell.
  751. </action>
  752. <action context="Fonts" dev="JM" type="fix">
  753. Fixed text extraction problem with ZapfDingbats and Symbol font in PDF output.
  754. </action>
  755. <action context="Images" dev="JM" type="fix">
  756. Fixed a performance problem concerning image serialization.
  757. </action>
  758. <action context="Fonts" dev="JM" type="fix">
  759. Fixed NullPointerException when loading a TrueType font using XML font metric files.
  760. </action>
  761. </release>
  762. <release version="0.95beta" date="26 March 2008">
  763. <notes>
  764. <section>
  765. <title>Notes</title>
  766. <p>
  767. Besides the important changes listed below, the most important areas with
  768. improvements in this release are:
  769. </p>
  770. <ul>
  771. <li>
  772. Many bugfixes in tables, plus some new features (full support for keeps and
  773. breaks, border conditionality, background on columns and header/footer/body)
  774. </li>
  775. <li>
  776. Improvements and bugfixes for font handling and font
  777. auto-detection/-registration.
  778. </li>
  779. <li>
  780. Performance improvements and memory optimizations for the property handling
  781. in the FO tree.
  782. </li>
  783. </ul>
  784. <p>
  785. Please note that with this release, we've dropped support for Java 1.3.
  786. FOP will, from now on, <strong>require at least Java 1.4</strong>.
  787. </p>
  788. <p>
  789. There have been a few changes in tables that make FOP both more strict and more
  790. compliant to the Recommendation:
  791. <ul>
  792. <li>XSL-FO 1.1 explicitly states that a row-spanning fo:table-cell element is not
  793. allowed to span further than its enclosing fo:table-header/footer/body element
  794. (see bottom of <link href="http://www.w3.org/TR/xsl11/#fo_table">section
  795. 6.7.3</link>). From now on FOP will give a validation error if a document
  796. contains such an erroneous cell.
  797. </li>
  798. <li>
  799. <p>If an fo:table element contains explicit fo:table-column children, then those
  800. elements set the total number of columns in the table. This means that a
  801. validation error will now occur if a row contains more cells than available
  802. columns. This change allows to improve performance, since the rendering of the
  803. table may start as soon as the table-column elements have been parsed.</p>
  804. <p>If more flexibility is needed, then the fo:table-column elements may be just
  805. omitted. The final number of columns will then be set by the row that has the
  806. most cells.</p>
  807. </li>
  808. </ul>
  809. </p>
  810. <p>
  811. The image libraries Jimi and JAI are no longer needed (and used) for image loading.
  812. Instead we rely completely on the Image I/O API that has been introduced with
  813. Java 1.4. If you still need support for bitmap image formats that do not work
  814. out-of-the-box, we recommend adding
  815. <link href="http://jai-imageio.dev.java.net/">JAI Image I/O Tools</link>
  816. (an Image I/O compatible image codec package) to the classpath. JAI is still required
  817. for building the FOP distribution but it is optional for normal builds and at run-time.
  818. </p>
  819. </section>
  820. </notes>
  821. <action context="Layout" dev="JM" type="fix" fixes-bug="44412">
  822. Bugfix: The before border of a block is no longer swallowed if its first child issues
  823. a break-before.
  824. </action>
  825. <action context="Layout" dev="JM" type="fix" fixes-bug="44412">
  826. Bugfix: When there was a forced break after a block with (conditional) borders the
  827. border-after wasn't painted.
  828. </action>
  829. <action context="Layout" dev="VH" type="fix">
  830. Bugfix: a forced break inside a cell was ignored when occurring before the minimum height
  831. set on the enclosing row was set.
  832. </action>
  833. <action context="Layout" dev="JM" type="fix">
  834. Fixed exceptions when lists, tables or block-container are children of an inline-level
  835. FO.
  836. </action>
  837. <action context="Layout" dev="VH" type="add" importance="high">
  838. Added support for background on fo:table-column and fo:table-header/footer/body elements.
  839. </action>
  840. <action context="Layout" dev="VH" type="fix">
  841. Fixed the rendering of the area of a table corresponding to border-separation, which must
  842. be filled with the background of the table, and not the rows.
  843. </action>
  844. <action context="Layout" dev="VH" type="fix">
  845. Improved conformance: even if a table-cell spans several rows its background must
  846. correspond to the first row spanned.
  847. </action>
  848. <action context="Renderers" dev="JM" type="fix" due-to="Gordon Cooke">
  849. Slight improvement for thin lines in Java2D/AWT output.
  850. </action>
  851. <action context="Layout" dev="VH" type="add">
  852. Added full support for keep-with-previous on fo:table-row and in fo:table-cell elements.
  853. </action>
  854. <action context="Code" dev="MB" type="add">
  855. Turned on XInclude processing for the main source given on the command line.
  856. </action>
  857. <action context="Fonts" dev="JM" type="fix" fixes-bug="44451" due-to="Justus Piater">
  858. Improved the font auto-detection so fonts accessed using the font-family name are
  859. selected with higher accuracy.
  860. </action>
  861. <action context="API" dev="JM" type="remove">
  862. Removed deprecated methods in the "apps" package that were left-overs from the API
  863. discussions.
  864. </action>
  865. <action context="Fonts" dev="JM" type="add">
  866. Added support for unusual font encodings (like for Symbol or Cyrillic fonts) of Type 1
  867. fonts in PDF and PostScript output.
  868. </action>
  869. <action context="Layout" dev="VH" type="fix" fixes-bug="44321">
  870. Moved to the FO tree stage the check for break-before/after on table-row while spanning in
  871. progress.
  872. </action>
  873. <action context="Layout" dev="VH" type="add">
  874. Added full support for breaks before and after table cells (that is, break-before/after set
  875. on the first/last child of a cell).
  876. </action>
  877. <action context="Layout" dev="VH" type="add">
  878. Added full support for breaks inside the cells of a table.
  879. </action>
  880. <action context="Code" dev="AD" type="fix" fixes-bug="41631">
  881. Added correct percentage resolution for arguments to the proportional-column-width() function.
  882. </action>
  883. <action context="Fonts" dev="JM" type="fix">
  884. Bugfix for date formatting with negative time zones in the PDF's Info object.
  885. This affected PDF/A compliance.
  886. </action>
  887. <action context="Renderers" dev="JM" type="add">
  888. Added an option to disable the default sRGB profile in PDF output for those who
  889. don't care about color fidelity, but care about PDF file size.
  890. </action>
  891. <action context="Code" dev="AD" type="fix" fixes-bug="43705">
  892. Fixed a bug when the rgb-icc() function was used either before the fo:declarations,
  893. or in documents without a fo:declarations node. In such cases, the sRGB fallback
  894. is now used to avoid an ugly NullPointerException.
  895. </action>
  896. <action context="Code" dev="AD" type="add">
  897. Added very basic parsing for the xml:lang shorthand.
  898. </action>
  899. <action context="Code" dev="AD" type="fix" fixes-bug="44343">
  900. Fixed a bug when using relative font-size (smaller/larger) in combination
  901. with percentages.
  902. </action>
  903. <action context="Fonts" dev="JM" type="fix">
  904. Bugfix for handling of optional tables in subset TrueType fonts. This bug caused errors
  905. in various PDF viewers.
  906. </action>
  907. <action context="Renderers" dev="JM" type="add">
  908. Added support for the natural language indentifier ("Lang" in the document catalog)
  909. for PDF documents based on the language/country values on fo:page-sequence.
  910. </action>
  911. <action context="Code" dev="AD" type="fix" fixes-bug="44286" due-to="Stefan Ziel">
  912. Fixed a memory-leak in XMLWhiteSpaceHandler.
  913. </action>
  914. <action context="Layout" dev="VH" type="fix" fixes-bug="44289">
  915. Fixed the resolution of borders when header/footer is omitted at page breaks.
  916. </action>
  917. <action context="Layout" dev="VH" type="add" importance="high" fixes-bug="43934">
  918. Added support for conditional borders in tables, for both the separate and the collapsing
  919. border model.
  920. </action>
  921. <action context="Layout" dev="JM" type="fix" fixes-bug="44160">
  922. Fixed a possible IndexOutOfBoundsException that could happen with certain constellations
  923. when footnotes are used.
  924. </action>
  925. <action context="Layout" dev="JM" type="fix">
  926. Compliance fix: for absolutely positioned block-containers, "top" wasn't
  927. interpreted correctly.
  928. </action>
  929. <action context="Extensions" dev="JM" type="add">
  930. New extension attribute fox:transform on fo:block-container allows free-form transformation
  931. (rotation, scaling etc.) of absolute and fixed block-containers. Supported only
  932. for PDF, PS and Java2D-based renderers.
  933. </action>
  934. <action context="Renderers" dev="JM" type="fix">
  935. Fixed logic error setting the transformation matrix for block-container viewports
  936. (applies to absolute and fixed block-containers only).
  937. Important: External renderer implementations need to adjust for the change and implement
  938. the new method concatenateTransformationMatrix(AffineTransform) if the renderer is
  939. derived from AbstractPathOrientedRenderer.
  940. </action>
  941. <action context="Images" dev="JM" importance="high" type="fix">
  942. A new image loading framework has been introduced to fix various problems with external
  943. graphics and improve performance.
  944. </action>
  945. <action context="Renderers" dev="JM" type="fix">
  946. Fixed generation of named destinations so it works when the PDF document is encrypted.
  947. </action>
  948. <action context="Renderers" dev="JM" type="add">
  949. PostScript output now generates the bounding box DSC comments for the whole document.
  950. </action>
  951. <action context="Renderers" dev="JM" type="add">
  952. Added support for PDF page labels.
  953. </action>
  954. <action context="Renderers" dev="JM" type="add" fixes-bug="44176" due-to="Patrick Jaromin">
  955. Added support for custom fonts in Java2DRenderer and derived renderers.
  956. </action>
  957. <action context="Extensions" dev="JM" type="add" importance="high">
  958. Added new extension element: fox:external-document. It allows to add whole documents
  959. such as multi-page TIFF images to be inserted as peers to a page-sequence. Each image
  960. will make up an entire page. See the documentation for details.
  961. </action>
  962. <action context="Layout" dev="JM" type="add">
  963. Added minimal support for the .minimum/.maximum components of block/inline-progression-dimension
  964. on fo:external-graphic and fo:instream-foreign-object.
  965. </action>
  966. <action context="Layout" dev="JM" type="add" importance="high">
  967. Added support for scale-down-to-fit and scale-up-to-fit (introduced in XSL 1.1).
  968. </action>
  969. <action context="Layout" dev="VH" type="fix" fixes-bug="43633">
  970. Bugfix: content of a row with zero height overriding the previous row
  971. </action>
  972. <action context="Renderers" dev="JM" type="fix" fixes-bug="37993">
  973. Bugfix: allow multiple bookmarks to point at the same destination.
  974. </action>
  975. <action context="Layout" dev="JM" type="fix" fixes-bug="43917">
  976. Bugfix for border-after painting and element list generation when a
  977. forced break is involved.
  978. </action>
  979. <action context="Layout" dev="JM" type="fix" fixes-bug="40230">
  980. Bugfix: no empty page is generated anymore if there's no content
  981. after a break-after.
  982. </action>
  983. <action context="Layout" dev="VH" type="fix" fixes-bug="43803">
  984. Restored proper handling of fo:table-cell having no children, which is allowed in relaxed
  985. validation mode.
  986. </action>
  987. <action context="Layout" dev="JM" type="fix">
  988. Memory Leak fixed in the Property Cache. Fixed by Jeremias Maerki. Reported and Tested By
  989. Chris Bowditch.
  990. </action>
  991. <action context="Layout" dev="VH" type="fix" fixes-bug="43712">
  992. Bugfix in tables: wrong element generation by the merging algorithm when glues must be
  993. produced to cope with conditional spaces. The corresponding length was added twice: one in
  994. the glue itself and one in the following box.
  995. </action>
  996. <action context="Code" dev="JM" type="fix">
  997. Bugfix for URI resolution: Make StreamSources without system identifier work again.
  998. </action>
  999. <action context="Code" dev="JM" type="fix" fixes-bug="43910" due-to="David Delbecq">
  1000. Avoid a NullPointerException in AreaTreeHandler.endDocument().
  1001. </action>
  1002. <action context="Layout" dev="VH" type="fix" fixes-bug="43766">
  1003. Bugfix: breaks generated by the merging algorithm for a table-row containing empty cells
  1004. had always a penalty of 900.
  1005. </action>
  1006. <action context="Layout" dev="JM" type="add" fixes-bug="43605" due-to="V. Schappert">
  1007. Added methods for fo:page-number-citation(-last) in FOEventHandler.
  1008. </action>
  1009. <action context="Layout" dev="VH" type="add">
  1010. Step towards performance: the collapsing-border resolution algorithm no longer triggers the
  1011. retrieving of the whole table, when possible.
  1012. </action>
  1013. <action context="Layout" dev="VH" type="fix">
  1014. In case of missing cells the border-end of the table was applied to an inner cell, instead
  1015. of the (empty) cell in the last column.
  1016. </action>
  1017. <action context="Layout" dev="VH" type="fix">
  1018. Fixed the resolution of borders with table-columns (border-before/after was wrongly applied
  1019. to every cell of the column).
  1020. </action>
  1021. <action context="Layout" dev="VH" type="fix" fixes-bug="42768">
  1022. Fixed the resolution of border-end on cells spanning several rows.
  1023. </action>
  1024. <action context="Fonts" dev="JM" type="fix" fixes-bug="43835" due-to="David Churavy">
  1025. Bugfix: Use Font.getName() (logical font name) instead of Font.getFontName()
  1026. (localized) when registering fonts from AWT.
  1027. </action>
  1028. <action context="Fonts" dev="JM" type="fix">
  1029. Made the way TrueType fonts are embedded in PDF compliant to the
  1030. specification so viewers correctly identify subset fonts.
  1031. </action>
  1032. <action context="Fonts" dev="JM" type="fix">
  1033. Fixed font-autodetection so fonts with uppercase extensions are
  1034. detected, too.
  1035. </action>
  1036. <action context="Fonts" dev="JM" type="update">
  1037. Improved font auto-detection and handling of AWT-supplied fonts in order
  1038. to achieve better results when using multiple output formats. Whenever
  1039. possible, the font names appearing in the operating system can also
  1040. be used in XSL-FO.
  1041. </action>
  1042. <action context="Renderers" dev="JM" type="fix">
  1043. Fixed regression: transparent-page-background was not recognized for PNG output.
  1044. </action>
  1045. <action context="Layout" dev="VH" type="add">
  1046. Added check for table-cells which span more rows than available in their parent element
  1047. (table-header/footer/body).
  1048. </action>
  1049. <action context="Layout" dev="AD" type="add">
  1050. Added support for fo:markers in fo:inline and fo:basic-link.
  1051. </action>
  1052. <action context="Renderers" dev="JM" type="update" importance="high">
  1053. PDF Transcoder (SVG) text painting has been completely rewritten.
  1054. Except for some special cases (with filters for example), all text
  1055. (including flow text) is now painted using PDF text operators.
  1056. </action>
  1057. <action context="Layout" dev="AD" type="add" fixes-bug="42748">
  1058. Added support for ids on empty fo:inlines.
  1059. </action>
  1060. <action context="Fonts" dev="AC" type="add" fixes-bug="42982" due-to="Max Berger">
  1061. Add Font support in jar files.
  1062. </action>
  1063. <action context="Renderers" dev="AC" type="fix" fixes-bug="43042" due-to="Andrejus Chaliapinas">
  1064. Postscript extension cleanup.
  1065. </action>
  1066. <action context="Renderers" dev="AC" type="fix" fixes-bug="43587">
  1067. Fix to avoid ClassCastException where multiple ps:ps-comments are declared within fo:declarations.
  1068. </action>
  1069. <action context="Fonts" dev="AC" type="fix" fixes-bug="43143">
  1070. Fix to avoid NullPointerException when parsing ExpertEncoded and ExpertSubsetEncoded Type 1 fonts.
  1071. </action>
  1072. <action context="Renderers" dev="AC" type="fix" fixes-bug="43439">
  1073. Fixes missing TLE value attribute when using AreaTree input with the AFP renderer.
  1074. </action>
  1075. <action context="Renderers" dev="JM" type="add">
  1076. Added generic structures to the PDF library in order to support PDF
  1077. file in fo:external-graphic later.
  1078. </action>
  1079. <action context="Code" dev="JM" type="add" fixes-bug="43597" due-to="Max Berger">
  1080. Added support for SVGZ.
  1081. </action>
  1082. <action context="Layout" dev="JM" type="fix">
  1083. Bugfix for NPE with empty table-row (regression from 0.93).
  1084. </action>
  1085. <action context="Renderers" dev="JM" type="add">
  1086. Added a configuration setting to the PCL renderer to disable PJL commands.
  1087. </action>
  1088. <action context="Renderers" dev="JM" type="fix" fixes-bug="43464" due-to="Bruno Feurer">
  1089. Fix to avoid a ClassCastException in renderer configuration.
  1090. </action>
  1091. <action context="Renderers" dev="JM" type="fix" fixes-bug="43439" due-to="Adrian Cumiskey">
  1092. Fixed the restoration of the TLE values from the intermediate format
  1093. for the AFP extension elements.
  1094. </action>
  1095. <action context="Renderers" dev="JM" type="add" fixes-bug="43041" due-to="Adrian Cumiskey">
  1096. Added a configuration setting for the renderer/device resolution to the AFP renderer.
  1097. </action>
  1098. <action context="Layout" dev="AD" type="update">
  1099. Facilitate the implementation for font-selection-strategy:<br/>
  1100. • Changed FontInfo.fontLookup to always return an array of FontTriplet.<br/>
  1101. • Changed CommonFont.getFontState to return an array of FontTriplet.<br/>
  1102. • Initial modifications to the related LMs: initialized with
  1103. the font corresponding to the first of the triplets.<br/>
  1104. </action>
  1105. <action context="Layout" dev="AD" type="update">
  1106. PropertyCache phase 2:<br/>
  1107. • improvement of the PropertyCache itself should now guarantee acceptable
  1108. performance of the static caches in multi-session environments, which is
  1109. a possible problem with synchronizedMap.<br/>
  1110. • changed CommonFont to use the cache:
  1111. added CachedCommonFont to contain the properties that are always cacheable
  1112. CommonFont itself is only cached if the remaining properties are absolutes.<br/>
  1113. • changed CommonHyphenation, KeepProperty, ColorProperty and FontFamilyProperty to use the cache.<br/>
  1114. </action>
  1115. <action context="Layout" dev="AD" type="fix" fixes-bug="42705">
  1116. Fixed swallowing PCDATA in text-node children of
  1117. retrieved markers.
  1118. </action>
  1119. <action context="Layout" dev="AD" type="fix" fixes-bug="42703">
  1120. Fixed erroneous white-space removal in retrieved markers.
  1121. </action>
  1122. <action context="Layout" dev="AD" type="fix" fixes-bug="43274" due-to="ckohrn.at.tng.de">
  1123. Fixed erroneous usage of inherited color-values in SVG.
  1124. </action>
  1125. </release>
  1126. <release version="0.94" date="24th August 2007">
  1127. <action context="Code" dev="JM" type="fix">
  1128. AFP Renderer: Bugfix for 1 bit images where the width is not a multiple of 8.
  1129. </action>
  1130. <action context="Code" dev="MM" type="add" importance="high">
  1131. Support for keep-together.within-line="always".
  1132. </action>
  1133. <action context="Code" dev="MM" type="fix">
  1134. Fixed incomplete support for Unicode Word Joiner characters (U+2060 and U+FEFF).
  1135. </action>
  1136. <action context="Code" dev="VH" type="add">
  1137. Add support for conditional spaces in table-cells.
  1138. </action>
  1139. <action context="Code" dev="AD" type="add" fixes-bug="42785" due-to="Max Berger">
  1140. Support alignment-adjust for images.
  1141. </action>
  1142. <action context="Code" dev="AD" type="add" fixes-bug="41044" due-to="Richard Wheeldon">
  1143. Partial application of the patch in Bugzilla 41044:
  1144. * addition of a generic PropertyCache to be used by all Property
  1145. types that can be safely canonicalized
  1146. * modified EnumProperty, StringProperty, NumberProperty, EnumNumber
  1147. and FixedLength to make use of the cache infrastructure
  1148. </action>
  1149. <action context="Code" dev="AD" type="update" fixes-bug="41656">
  1150. Refactoring in the fo package:
  1151. -> removal of the childNodes instance member in fop.fo.FObj
  1152. -> addition of a firstChild instance member in fop.fo.FObj
  1153. -> addition of a siblings instance member in fop.fo.FONode
  1154. -> addition of a FONodeIterator interface in FONode + corresponding implementation in FObj
  1155. -> changed implementations of FObj.addChildNode(), .removeChild() and .getChildNodes()
  1156. </action>
  1157. <action context="Code" dev="AD" type="update" fixes-bug="42089" due-to="Adrian Cumiskey">
  1158. Code cleanup and restructuring:
  1159. Refactoring of PageSequenceLayoutManager and provide common FObj id property use
  1160. </action>
  1161. <action context="Code" dev="AD" type="add">
  1162. Slight improvement of relative font-weight handling in the properties
  1163. package.
  1164. </action>
  1165. <action context="Code" dev="JM" type="update">
  1166. Updated PDF/A-1b support according to ISO-19005-1:2005/Cor.1:2007.
  1167. </action>
  1168. <action context="Code" dev="JM" type="add" importance="high" fixes-bug="41831" due-to="Adrian Cumiskey">
  1169. Add support for font auto-detection (easier font configuration).
  1170. </action>
  1171. <action context="Code" dev="JM" type="update" fixes-bug="42406" due-to="Hussein Shafie">
  1172. Use source resolution setting for bitmap images which don't provide their own
  1173. resolution.
  1174. </action>
  1175. <action context="Code" dev="JM" type="fix" fixes-bug="42109" due-to="Paul Vinkenoog">
  1176. Fixed the rendering of zero-width spaces for certain fonts by not generating them into
  1177. the area tree.
  1178. </action>
  1179. <action context="Code" dev="LF" type="fix">
  1180. Fixed a problem with disappearing footnotes inside hyphenated inlines (and footnotes with hyphenated inline child).
  1181. </action>
  1182. <action context="Code" dev="JM" type="add" fixes-bug="42067" due-to="Paul Vinkenoog">
  1183. Add support for exact positioning of internal PDF links.
  1184. </action>
  1185. <action context="Code" dev="JM" type="fix" fixes-bug="41434" due-to="Martin Kögler">
  1186. Fix PDF Genaration for non-ASCII compatible locales.
  1187. </action>
  1188. <action context="Code" dev="VH" type="fix">
  1189. Fix several exceptions when break-before/after is set on the first/last row of a table.
  1190. </action>
  1191. <action context="Code" dev="VH" type="fix">
  1192. Fix extra page break when break-before is set on both a table and its first row.
  1193. </action>
  1194. <action context="Code" dev="VH" type="fix">
  1195. Make keep-with-next and keep-with-previous work on fo:table.
  1196. </action>
  1197. <action context="Code" dev="VH, JM" type="add" importance="high" fixes-bug="36934">
  1198. Add support for the collapsing-border model in tables.
  1199. </action>
  1200. <action context="Code" dev="JB" type="add" importance="high">
  1201. Add support for named destinations in PDF.
  1202. </action>
  1203. <action context="Code" dev="JM" type="fix">
  1204. Fixed a problem with keep-with-next on table-rows. Once a keep-with-next was set
  1205. inside a table, the FO following the table would always be glued to the previous table.
  1206. </action>
  1207. <action context="Code" dev="JM" type="fix">
  1208. Fixed a problem with the auto-rotate-landscape setting in the PostScript renderer.
  1209. It didn't generate the right setpagedevice command.
  1210. </action>
  1211. <action context="Code" dev="JM" type="fix">
  1212. Fixed an IllegalArgumentException for absolutely positioned block-containers with a
  1213. border and no height/bpd set.
  1214. </action>
  1215. <action context="Code" dev="JM" type="add">
  1216. Add support for a two-pass production for PostScript output to minimize file size. This
  1217. adds images only once and adds only the fonts that are really used.
  1218. </action>
  1219. <action context="Code" dev="AD" type="fix" fixes-bug="41652">
  1220. If a line contained nothing but a linefeed, this didn't produce empty lines.
  1221. Replaced the auxiliary zero-width box with a glue the width of a line,
  1222. and shrinkable to zero-width.
  1223. </action>
  1224. <action context="Code" dev="VH" type="fix" fixes-bug="40120" due-to="Adrian Cumiskey">
  1225. Stricter FOP user configuration checking
  1226. </action>
  1227. <action context="Code" dev="AD" type="fix" fixes-bug="41572" due-to="Erwin Tratar">
  1228. Fix parsing 'url(...)' when the URL itself contains a bracketed part.
  1229. </action>
  1230. <action context="Code" dev="JM" type="add">
  1231. Support for GIF images in RTF output (RTF handler, only. Does not affect the RTF library.)
  1232. </action>
  1233. <action context="Code" dev="JM" type="fix">
  1234. Fix for NPE with PNG images for RTF output.
  1235. </action>
  1236. <action context="Code" dev="AD" type="fix">
  1237. Fix for properly parsing font-family names containing spaces.
  1238. </action>
  1239. <action context="Code" dev="JM" type="add">
  1240. Support for soft masks (transparency) with ImageIO image adapter.
  1241. </action>
  1242. <action context="Code" dev="LF" type="fix" fixes-bug="41019">
  1243. Fix incorrect behaviour of the BreakingAlgorithm when some inline content is wider than
  1244. the available ipd, causing a restart.
  1245. </action>
  1246. <action context="Code" dev="JM" type="fix">
  1247. Fix for PDF corruption when a TrueType font with spaces in its name is embedded and no
  1248. XML font metrics file for that font is used.
  1249. </action>
  1250. <action context="Code" dev="JM" type="fix" fixes-bug="41426" due-to="Adrian Cumiskey">
  1251. Fix for ClassCastException when fo:wrapper was used as direct child of fo:flow.
  1252. Note: "id" attributes are still not handled properly on fo:wrapper!
  1253. </action>
  1254. <action context="Code" dev="MM" type="add">
  1255. Added support for the soft hyphen (SHY) character.
  1256. </action>
  1257. <action context="Code" dev="MM" type="add">
  1258. Added support for line-height-shift-adjustment property.
  1259. </action>
  1260. <action context="Code" dev="SP" type="add">
  1261. Added support for the system property fop.home to
  1262. cli.Main.getJARList().
  1263. </action>
  1264. <action context="Code" dev="JM" type="add" fixes-bug="40930">
  1265. Added support for display-align for table-cell in RTF output.
  1266. </action>
  1267. <action context="Code" dev="MM" type="add" importance="high">
  1268. Added support for UAX#14 type line breaking. Support does not extend across nested fo:inline elements.
  1269. </action>
  1270. </release>
  1271. <release version="0.93" date="9 January 2007">
  1272. <notes>
  1273. <section>
  1274. <title>Notes</title>
  1275. <p>This is the first production grade release of the new FOP
  1276. codebase.</p>
  1277. <ul>
  1278. <li>It contains the new API first introduced in release 0.92
  1279. beta. The preceding API has been removed.
  1280. </li>
  1281. <li>
  1282. See the <link href="../compliance.html">compliance page</link> for an
  1283. overview of the compliance of this release with the XSL 1.0 and
  1284. 1.1 recommendations.
  1285. </li>
  1286. <li>
  1287. This release again contains many bug fixes and new features. See
  1288. below for details.
  1289. </li>
  1290. <li>
  1291. See the <link href="../knownissues.html">known issues page</link>
  1292. for an overview of the known issues with this release.
  1293. </li>
  1294. </ul>
  1295. <p>Caveats:</p>
  1296. <ul>
  1297. <li>
  1298. You may experience different behaviour compared to version 0.20.5.
  1299. Please consult the <link href="upgrading.html">"Upgrading"</link> page for details.
  1300. </li>
  1301. </ul>
  1302. </section>
  1303. </notes>
  1304. <action context="Code" dev="BD" type="add" importance="high">
  1305. Added support for the use of Open Type fonts
  1306. </action>
  1307. <action context="Code" dev="BD" type="update" fixes-bug="5535" due-to="Adam Strzelecki, Victor Mote" importance="high">
  1308. Enabled Copy/Paste from PDF content in Acrobat Reader for text using embedded TrueType fonts.
  1309. </action>
  1310. <action context="Code" dev="SP" type="update" fixes-bug="41044" due-to="Richard Wheeldon">
  1311. Commented out unused properties, in order to minimize memory usage.
  1312. </action>
  1313. <action context="Code" dev="SP" type="update" fixes-bug="41009" due-to="Richard Wheeldon">
  1314. Removed unused attributes from TableCell.
  1315. </action>
  1316. <action context="Code" dev="JM" type="add">
  1317. Added initial support for loading fonts without a pre-created XML font metric
  1318. file.
  1319. </action>
  1320. <action context="Code" dev="JM" type="add" fixes-bug="40729" due-to="Peter Coppens" importance="high">
  1321. Support for the rgb-icc() function and for a proprietary cmyk() function (for device CMYK
  1322. colors only through the PDF renderer so far).
  1323. </action>
  1324. <action context="Code" dev="JM" type="update" fixes-bug="40813" due-to="Richard Wheeldon">
  1325. Minor fixes and improvements for the AWT Preview (keyboard shortcuts, scrolling, windows
  1326. setup).
  1327. </action>
  1328. <action context="Code" dev="JM" type="add" fixes-bug="40849" due-to="Dominic Brügger">
  1329. Added support for SVG in fo:instream-foreign objects for RTF output.
  1330. </action>
  1331. <action context="Code" dev="JM" type="fix">
  1332. Bugfix: Fixed bug when the sum of column widths of a table is larger than the
  1333. specified widths. The table width was not adjusted.
  1334. </action>
  1335. <action context="Code" dev="JM" type="fix">
  1336. Bugfix: Nested tables with headers and footers were not handled correctly and could
  1337. overlap with the region-after.
  1338. </action>
  1339. <action context="Code" dev="JM" type="add" fixes-bug="40519" due-to="Oliver Hernàndez Valls">
  1340. Added support for CCITT compression in the TIFFRenderer by switching to the ImageWriter
  1341. abstraction from XML Graphics Commons.
  1342. </action>
  1343. <action context="Code" dev="JM" type="add">
  1344. Extension properties fox:orphan-content-limit and fox:widow-content-limit which
  1345. help with list-block and table layout. See the documentation for details.
  1346. </action>
  1347. <action context="Code" dev="JM" type="add">
  1348. Configuration option in the Java2D-based renderers that allows to disable the default
  1349. white background in order to produce bitmap output with transparency.
  1350. </action>
  1351. <action context="Code" dev="AD" type="fix" fixes-bug="39414">
  1352. Split up FOText instances larger than 32K characters to avoid
  1353. integer overflow during layout.
  1354. </action>
  1355. <action context="Code" dev="JM" type="fix">
  1356. Bugfix: Corrected painting of shading patterns and position of links for SVG images
  1357. inside FO documents.
  1358. </action>
  1359. <action context="Code" dev="AD" type="update">
  1360. Minor fix: correctly set negative values for ipd/bpd to zero.
  1361. </action>
  1362. <action context="Code" dev="AD" type="update" fixes-bug="35656">
  1363. Rework of default column-creation / column-width setting from
  1364. cells in the first row.
  1365. </action>
  1366. <action context="Code" dev="AD" type="update" fixes-bug="40270" due-to="Gary Reed">
  1367. Added relaxed validation for empty list-item-*, as suggested by Gary Reed.
  1368. </action>
  1369. <action context="Code" dev="AD" type="update">
  1370. Modified proportional-column-width() function to log an error if used
  1371. with table-layout=auto
  1372. </action>
  1373. <action context="Code" dev="AD" type="fix">
  1374. Deferred property resolution for markers until they are actually retrieved,
  1375. which leads to percentages and relative font-sizes now getting the correct
  1376. values. Also deferred white-space-handling for markers.
  1377. </action>
  1378. <action context="Code" dev="JM" type="update">
  1379. Changed the way overflowing pages are handled. The overflow property on region-body
  1380. is now used to define the behaviour.
  1381. </action>
  1382. <action context="Code" dev="JM" type="fix">
  1383. Fixed a memory-leak: The FO tree part of a page-sequence was not released when a
  1384. page-sequence was finished.
  1385. </action>
  1386. <action context="Code" dev="JM" type="fix">
  1387. Bugfix: Table headers and footers were swallowed when a table was nested in a list-block.
  1388. </action>
  1389. <action context="Code" dev="JM" type="fix">
  1390. Fixed a bug with indent handling when margins are used on a surrounding block and
  1391. not start/end-indent.
  1392. </action>
  1393. <action context="Code" dev="JM" type="fix" fixes-bug="40106" due-to="Jeroen Meijer">
  1394. Compatibility fix for GCJ (GNU Classpath): Using "UTF-16BE" instead of "UnicodeBigUnmarked"
  1395. encoding.
  1396. </action>
  1397. <action context="Code" dev="JM" type="fix" fixes-bug="40062" due-to="Gilles Beaugeais">
  1398. Fixed handling for CCITT Group 4 TIFF images with fill order 2.
  1399. </action>
  1400. <action context="Code" dev="JM" type="fix" fixes-bug="40048" due-to="Igor Istomin">
  1401. Fixed setting of page margins in AWT Renderer like it was done in the print renderer.
  1402. </action>
  1403. <action context="Code" dev="JM" type="fix">
  1404. Fixed two memory-leaks in image handling. The image cache is finally working
  1405. properly.
  1406. </action>
  1407. <action context="Code" dev="JM" type="fix" fixes-bug="39608">
  1408. Let numeric property values without a unit be treated as pixels like in HTML.
  1409. This fixes certain NullPointerException when no units are specified.
  1410. (Note: the use of pixels in XSL-FO is discouraged!)
  1411. </action>
  1412. <action context="Code" dev="JM" type="fix">
  1413. Bugfix: Potential multi-threading issue (ConcurrentModificationException)
  1414. eliminated for ElementMapping classes.
  1415. </action>
  1416. <action context="Code" dev="JM" type="fix">
  1417. No more System.exit() and look &amp; feel setting calls inside the reusable
  1418. parts of the AWT viewer.
  1419. </action>
  1420. <action context="Code" dev="JM" type="fix">
  1421. Proper escaping of characters in list-items labels for RTF output.
  1422. </action>
  1423. <action context="Code" dev="MM" type="fix">
  1424. Bugfix: FOUserAgent specific configuration parameters specified in config file
  1425. were not set when FOP was invoked from command line.
  1426. </action>
  1427. <action context="Code" dev="JM" type="add" importance="high">
  1428. Added support for PDF/A-1b and PDF/X-3:2003. (Note: this may still be a bit
  1429. incomplete. Feedback is welcome!)
  1430. </action>
  1431. <action context="Code" dev="JM" type="add">
  1432. The CIDSet object is now generated for CID fonts which are embedded in PDFs.
  1433. (Required by PDF/A).
  1434. </action>
  1435. <action context="Code" dev="JM" type="update" importance="high">
  1436. The Java2DRenderer (and therefore the print and bitmap renderers) is now
  1437. offering the same quality as the PDF and PS renderers. Note: There can still
  1438. be little differences between PDF and Print/PNG/TIFF because the latter uses
  1439. a different font metrics source.
  1440. </action>
  1441. <action context="Code" dev="AD" type="fix" fixes-bug="39712">
  1442. Bugfix: components of the border-separation property weren't set when
  1443. in shorthand-mode, leading to a NPE being thrown.
  1444. </action>
  1445. <action context="Code" dev="JM" type="fix">
  1446. Bugfix: Table headers were omitted when a table is a child of a block-container.
  1447. </action>
  1448. <action context="Code" dev="JM" type="fix">
  1449. Bugfix: Bookmarks in PDF will be generated even if some bookmarks cannot be
  1450. resolved.
  1451. </action>
  1452. <action context="Code" dev="AD" type="fix" fixes-bug="39560">
  1453. Bugfix: the interaction between the table FOs and properties package in
  1454. determining initial values for column-number should be a one-time process,
  1455. not repeated when the table is in a marker that is retrieved.
  1456. </action>
  1457. <action context="Code" dev="JM" type="fix">
  1458. Bugfix: All fonts names were converted unnecessarily to lower case in RTF output.
  1459. </action>
  1460. <action context="Code" dev="JM" type="fix">
  1461. Bugfix: The combination of hyphenation and kerning resulted in slightly ragged
  1462. right ends for right-aligned and justified text.
  1463. </action>
  1464. <action context="Code" dev="JM" type="fix">
  1465. Bugfix: NullPointerException in AreaAdditionUtil in a table-cell spanning
  1466. multiple pages and with a marker.
  1467. </action>
  1468. <action context="Code" dev="JM" type="fix" fixes-bug="39533">
  1469. Bugfix: NullPointerException in RTF output when a table does not contain
  1470. table-columns.
  1471. </action>
  1472. <action context="Code" dev="JM" type="fix" fixes-bug="39607" due-to="Julien Aymé">
  1473. Bugfix: NullPointerException in RTF library when there are no borders on
  1474. the parent table.
  1475. </action>
  1476. <action context="Code" dev="JM" type="add" importance="high">
  1477. Automatic support for all fonts available to the Java2D subsystem for all
  1478. Java2D-descendant renderers (TIFF, PNG, print, AWT).
  1479. </action>
  1480. <action context="Code" dev="JM" type="fix">
  1481. Bugfix: Improved baseline detection in TTFReader for TrueType fonts.
  1482. </action>
  1483. <action context="Code" dev="JM" type="fix" fixes-bug="39443">
  1484. Bugfix: tables nested in inline elements caused a NullPointerException.
  1485. </action>
  1486. <action context="Code" dev="JM" type="update">
  1487. The default sRGB color profile provided by the Java class library is no longer
  1488. embedded if it is encountered. This should reduce the PDF size considerably.
  1489. </action>
  1490. <action context="Code" dev="JM" type="fix" fixes-bug="39443">
  1491. Bugfix: Sections with span="all" lead to overlapping text if spanning multiple pages.
  1492. </action>
  1493. <action context="Code" dev="MM" type="fix">
  1494. Bugfix: Percentages in vertical-align property values were not correctly handled.
  1495. </action>
  1496. <action context="Code" dev="JM" type="fix" fixes-bug="38243" due-to="Gerhard Oettl">
  1497. Bugfix: Gaps in table-columns cause a NullPointerException.
  1498. </action>
  1499. <action context="Code" dev="JM" type="update" fixes-bug="38946" due-to="Max Berger">
  1500. Changed the internal representation of colors to use Java's own color infrastructure
  1501. instead of FOP's home-grown classes.
  1502. </action>
  1503. <action context="Code" dev="MM" type="fix">
  1504. Bugfix: TABs were not correctly replaced by spaces in some circumstances.
  1505. </action>
  1506. <action context="Code" dev="JM" type="update">
  1507. Content in block-containers makes better use of shrink to fit content vertically
  1508. into the available area. This can be used indirectly to justify content vertically
  1509. in a block-container.
  1510. </action>
  1511. <action context="Code" dev="JM" type="fix">
  1512. Bugfix: basic-links with internal destinations in documents with multiple
  1513. page-sequences sometimes pointed at the wrong page.
  1514. </action>
  1515. <action context="Code" dev="JM" type="fix">
  1516. Bugfix: Fixed ClassCastException when retrieve-marker is used as a direct child
  1517. if static-content in which case leading and trailing white space is not properly
  1518. removed.
  1519. </action>
  1520. <action context="Code" dev="JM" type="fix" fixes-bug="39285">
  1521. Bugfix: Fixed OutOfMemoryException with long data URLs (RFC 2397).
  1522. </action>
  1523. <action context="Code" dev="JM" type="add" fixes-bug="39118" due-to="Pierre-Henri Kraus">
  1524. Initial support for page-number-citation-last (XSL 1.1). Works without problems
  1525. only for page-sequence so far.
  1526. </action>
  1527. </release>
  1528. <release version="0.92beta" date="18 Apr 2006">
  1529. <action context="Code" dev="JM" type="fix">
  1530. Bugfix: The generation of the PDF "d" (setdash) command was assuming that
  1531. only integer values can be used but that isn't the case. Dash patterns
  1532. PDFGraphics2D would be wrong in the process.
  1533. </action>
  1534. <action context="Code" dev="JM" type="fix">
  1535. Bugfix: Fixed a division by zero problem in TTFReader and improved the detection
  1536. of the capHeight and xHeight font metric values for TrueType fonts.
  1537. </action>
  1538. <action context="Code" dev="JM" type="fix">
  1539. Bugfix: Allow URLs in basic-link's external-destination to be wrapped in "url()".
  1540. </action>
  1541. <action context="Code" dev="MM" type="fix">
  1542. Bugfix: Corrected enumerated property value for white-space property
  1543. from "no-wrap" to "nowrap".
  1544. </action>
  1545. <action context="Code" dev="MM" type="fix" fixes-bug="38457">
  1546. Bugfix: Added support for white-space-treatment="preserve" in particular to
  1547. support the white-space="pre" short hand property.
  1548. </action>
  1549. <action context="Code" dev="JM" type="fix">
  1550. Corrected expectation and behaviour for the text-indent property to only apply
  1551. to the first line area generated by a block.
  1552. </action>
  1553. <action context="Code" dev="JM" type="fix">
  1554. Bugfix for invalid handling of ICC color profiles in JPEG images and for
  1555. dealing with CMYK JPEG images with the Adobe APPE marker.
  1556. </action>
  1557. <action context="Code" dev="JM" type="add">
  1558. Initial support for page-position="last" added.
  1559. </action>
  1560. <action context="Code" dev="JM" type="add">
  1561. Reenabled loading of user-supplied hyphenation patterns that was available in
  1562. FOP 0.20.5. (See "hyphenation-base" option in the user configuration)
  1563. </action>
  1564. <action context="Code" dev="JM" type="fix">
  1565. Bugfix: Certain filter combinations in PDF could lead to invalid PDFs.
  1566. DecodeParams were not properly handled.
  1567. </action>
  1568. <action context="Code" dev="JM" type="fix">
  1569. Bugfix: CCITT Group 4 encoded TIFF images with multiple strips are now properly
  1570. embedded in PDF files.
  1571. </action>
  1572. <action context="Code" dev="JM" type="add">
  1573. Added support for fixed-width spaces.
  1574. </action>
  1575. <action context="Code" dev="JM" type="add">
  1576. Added support for kerning.
  1577. </action>
  1578. <action context="Code" dev="JM" type="fix">
  1579. Bugfix: Fixed a copy/paste error in the table layout code that caused wrong page
  1580. break decisions when table-headers and/or table-footers are used.
  1581. </action>
  1582. <action context="Code" dev="JM" type="fix">
  1583. Bugfix: Fixed an NPE that was thrown when a table was used inside a footnote-body.
  1584. </action>
  1585. <action context="Code" dev="JM" type="fix">
  1586. Bugfix: Fixed a problem with certain TrueType fonts which are missing the "PCLT"
  1587. table, where a baseline-shift="sub" had no effect due to a missing x-height value.
  1588. (Note: This only affects TTFReader, so the font metric file has to be regenerated.)
  1589. </action>
  1590. <action context="Code" dev="JM" type="fix">
  1591. Bugfix: When the base URL was specified as a file system path, the constructed
  1592. URL was wrong.
  1593. </action>
  1594. <action context="Code" dev="JM" type="add" due-to="Jirí Mareš">
  1595. Support for "userconfig" attribute in FOP Ant Task.
  1596. </action>
  1597. <action context="Code" dev="JM" type="add">
  1598. Initial support for XMP metadata (PDF 1.4) under fo:declarations.
  1599. </action>
  1600. <action context="Code" dev="AD" type="add">
  1601. Added support for the background-position shorthand property.
  1602. </action>
  1603. <action context="Code" dev="AD" type="add">
  1604. Added support for the font shorthand property.
  1605. </action>
  1606. <action context="Code" dev="JM" type="add" fixes-bug="38618" due-to="Max Berger">
  1607. Added support for system-color() function.
  1608. </action>
  1609. <action context="Code" dev="JM" type="fix">
  1610. Bugfix: Fixed two causes for ClassCastExceptions in BlockContainerLayoutManager.
  1611. </action>
  1612. <action context="Code" dev="JM" type="fix">
  1613. Bugfix: padding-top and padding-bottom on list-items could lead to wrong page
  1614. break decisions and thus to overlapping text.
  1615. </action>
  1616. <action context="Code" dev="JM" type="fix">
  1617. Bugfix: break-before and break-after were ignored on list-items.
  1618. </action>
  1619. <action context="Code" dev="LF" type="fix" fixes-bug="38507">
  1620. Bugfix: The elements representing a non-breaking space weren't always correct.
  1621. </action>
  1622. <action context="Code" dev="JM" type="fix" fixes-bug="38453">
  1623. Bugfix: Text-decoration was not promoted if no text-decoration attribute was
  1624. specified on a nested element.
  1625. </action>
  1626. <action context="Code" dev="AD" type="add" fixes-bug="38282"
  1627. due-to="Gerhard Oettl (gerhard.oettl.at.oesoft.at)">
  1628. Added support for the from-table-column() function.
  1629. </action>
  1630. <action context="Code" dev="JM" type="fix" fixes-bug="38397">
  1631. Bugfix: Spanned cells could lead to an false error message about overlapping
  1632. cells and ultimately a NullPointerException.
  1633. </action>
  1634. <action context="Code" dev="JM" type="fix">
  1635. Bugfix: Regions with non-standard names got ignored in RTF output leading to
  1636. missing headers and footers.
  1637. </action>
  1638. <action context="Code" dev="JM" type="fix">
  1639. The RTF output now properly generates the "\landscape" flag for documents in
  1640. landscape orientation.
  1641. </action>
  1642. <action context="Code" dev="JM" type="fix">
  1643. Following a clarification by the XSL FO SG, space traits are only set on the
  1644. first and last area generated by an FO, and not on every area anymore.
  1645. </action>
  1646. <action context="Code" dev="JM" type="add">
  1647. New feature: "Intermediate format" (IF). The IF is basically the XML dialect
  1648. written by the area tree renderer (XMLRenderer). A new parser for this format
  1649. allows reparsing a serialized and possibly modified area tree and rendering it
  1650. to the final target format.
  1651. </action>
  1652. <action context="Code" dev="JM" type="fix">
  1653. Bugfix: Floating point numbers were not properly formatted in the PDF renderer
  1654. which could lead to error messages while opening a PDF in Acrobat Reader.
  1655. </action>
  1656. <action context="Code" dev="SP" type="update" fixes-bug="38098"
  1657. due-to="Gerhard Oettl">
  1658. Implement property name as default argument on some xsl-function calls.
  1659. </action>
  1660. <action context="Code" dev="SP" type="update" fixes-bug="38087"
  1661. due-to="Gerhard Oettl">
  1662. Implement force-page-count property of page-sequence.
  1663. </action>
  1664. <action context="Code" dev="JM" type="fix" fixes-bug="38054">
  1665. Bugfix: Spans that end up with a negative height don't get swallowed anymore.
  1666. </action>
  1667. <action context="Code" dev="MM" type="add" fixes-bug="36729">
  1668. Relative URLs for the font configuration attributes metrics-url and embed-url
  1669. are now supported. A new configuration property font-base has been added. It
  1670. sets the base URL against which relative font URLs are resolved. If font-base is
  1671. not set base is used.
  1672. </action>
  1673. <action context="Code" dev="JM" type="add" fixes-bug="38132" due-to="Richard Wheeldon">
  1674. Added support for RFC2397 "data" URLs.
  1675. </action>
  1676. <action context="Code" dev="JM" type="fix" fixes-bug="38132">
  1677. Bugfix: Certain border styles could lead to a NullPointerException.
  1678. </action>
  1679. <action context="Code" dev="JM" type="fix" fixes-bug="38102">
  1680. Bugfix: Space was not adjusted if the space was on a nested block. This could
  1681. lead to content overflowing the bottom of a page.
  1682. </action>
  1683. <action context="Code" dev="JM" type="fix">
  1684. Bugfix: TableCell did not properly report that it generates reference-areas
  1685. which could lead to wrong inherited values for start-indent and end-indent.
  1686. </action>
  1687. <action context="Code" dev="JM" type="add">
  1688. The font loading code now reads the encoding value from the XML font metrics file
  1689. so that fonts like Symbol and ZapfDingbats can be embedded explicitely (Required by PDF/A).
  1690. </action>
  1691. <action context="Code" dev="SP" type="update">
  1692. Improvements to the code for inline block content.
  1693. </action>
  1694. <action context="Code" dev="MM" type="fix" fixes-bug="38089">
  1695. Bugfix: Image height for BMP images was incorrectly calculated
  1696. </action>
  1697. <action context="Code" dev="AD" type="update">
  1698. Revision of refinement white-space handling.
  1699. </action>
  1700. <action context="Code" dev="AD" type="add">
  1701. Added feature: support for white-space shorthand
  1702. </action>
  1703. <action context="Code" dev="AD" type="add">
  1704. Added feature: support for page-break-* shorthands
  1705. </action>
  1706. <action context="Code" dev="MM" type="fix" fixes-bug="38053">
  1707. Bugfix: NullPointerException on certain fo:inline within lists.
  1708. </action>
  1709. <action context="Code" dev="MM" type="fix" fixes-bug="37743">
  1710. Bugfix: ClassCastException on certain fo:inline with border combinations.
  1711. </action>
  1712. <action context="Code" dev="MM" type="fix">
  1713. Changed a method name in LineArea from finalize to finalise because it was
  1714. never intended for the method to be an override of the Java Object finalize
  1715. method. If invoked by the Java garbage collector it may cause a NPE.
  1716. </action>
  1717. </release>
  1718. <release version="0.91beta" date="23 Dec 2005">
  1719. <action context="Code" dev="JM" type="update">
  1720. Deprecated Fop constructors that use integer constants to select the
  1721. output format have been removed in favor or the constructors that use
  1722. MIME types.
  1723. </action>
  1724. <action context="Code" dev="MM" type="fix">
  1725. Fixed a bug where the linefeed-treatment property value "preserve" was not
  1726. honoured when used in conjunction with text-align="center".
  1727. </action>
  1728. <action context="Code" dev="JM" type="fix" fixes-bug="37964">
  1729. Bugfix: hard breaks with even-page or odd-page were not handled correctly
  1730. when spaces were surrounding the break.
  1731. </action>
  1732. <action context="Code" dev="JM" type="update">
  1733. Changed the XMLHandler interface so it doesn't report the MIME type it
  1734. supports but instead can report whether it supports a particular Renderer
  1735. implementation. XMLHandlers are now configurable.
  1736. </action>
  1737. <action context="Code" dev="JM" type="fix">
  1738. Fixed a bug where SVG content could be clipped when rendered to PostScript.
  1739. </action>
  1740. <action context="Code" dev="JM" type="fix">
  1741. Changed the way resolutions are handled. The single resolution in the user
  1742. agent got split up into source and target resolutions. For more info, see
  1743. the updated documentation. Note: backwards-incompatible change!
  1744. </action>
  1745. <action context="Code" dev="JM" type="fix" fixes-bug="37875">
  1746. Bugfix: Some content inside a table-header may not have been renderered on
  1747. pages n &gt; 1 in certain conditions.
  1748. </action>
  1749. <action context="Code" dev="MM" type="fix">
  1750. Fixed a bug where an empty line, i.e. a block containing only a &amp;nbsp;,
  1751. was not rendered at all.
  1752. </action>
  1753. <action context="Code" dev="JM" type="fix">
  1754. Fixed a bug where the area for a finished cell that is broken over pages was
  1755. created once for each row it was spanned over instead of only once.
  1756. </action>
  1757. <action context="Code" dev="JM" type="add">
  1758. Added checks that warn about tables and block-containers that are wider than
  1759. the available content area.
  1760. </action>
  1761. <action context="Code" dev="JM" type="fix" fixes-bug="37880">
  1762. Bugfix: Footnotes were lost if the footnote appeared in centered text.
  1763. </action>
  1764. <action context="Code" dev="JM" type="update">
  1765. Improved log and error messages in a number of places by adding additional
  1766. context information that should make it easier to find the location in the
  1767. source files.
  1768. </action>
  1769. <action context="Code" dev="JM" type="fix">
  1770. Fix to correct image sizes in RTF output.
  1771. </action>
  1772. <action context="Code" dev="JM" type="add">
  1773. First attempt at SVG support in RTF output. SVG images are converted to 300dpi JPEG
  1774. images internally.
  1775. </action>
  1776. <action context="Code" dev="JM" type="update">
  1777. Additional checks to detect text overflows. The overflow property is now properly
  1778. handled where applicable.
  1779. </action>
  1780. <action context="Code" dev="JM" type="update">
  1781. Source location information improved. If location information is not available,
  1782. the context information is provided based on text content.
  1783. </action>
  1784. <action context="Code" dev="JM" type="add">
  1785. The command-line now automatically sets two parameters for any XSLT transformation:
  1786. "fop-output-format" contains the MIME type of the currently selected output format,
  1787. "fop-version" contains FOP's version number.
  1788. </action>
  1789. <action context="Code" dev="JM" type="fix">
  1790. The output file is now deleted when an exception occurs when calling FOP from
  1791. the command-line.
  1792. </action>
  1793. <action context="Code" dev="JM" type="fix">
  1794. Bugfix: Areas for table-cells that are broken over more than one page are now
  1795. generated even if all its content is already painted on a previous page. This
  1796. fixes strange effects like a table grid that is not completely painted.
  1797. </action>
  1798. <action context="Code" dev="JM" type="fix" fixes-bug="37828">
  1799. Bugfix: Column balancing produced strange break decisions in certain multi-column
  1800. documents with large amounts of text.
  1801. </action>
  1802. <action context="Code" dev="JM" type="add">
  1803. Added an alternative set of rules for calculating text indents which tries to mimic
  1804. the behaviour of many commercial FO implementations that chose to break the rules
  1805. in the FO specification in order to better meet the natural expectations of
  1806. inexperienced FO users.
  1807. </action>
  1808. <action context="Code" dev="JM" type="fix" fixes-bug="37815" due-to="Tom Craddock">
  1809. Bugfix: The combination of content-width="scale-to-fit" and content-height="100%"
  1810. did not work as expected due to a datatype conversion bug.
  1811. </action>
  1812. <action context="Code" dev="JM" type="fix" fixes-bug="37813">
  1813. Bugfix: A span="all" on the first block cause a subsequent page break and the first block
  1814. didn't span all columns.
  1815. </action>
  1816. <action context="Code" dev="JM" type="fix">
  1817. Bugfix: Self-created OutputStreams in PNG Renderer were not properly closed.
  1818. </action>
  1819. <action context="Code" dev="JM" type="update">
  1820. The border-collapse property on fo:table is now forced to the value "separate" until the collapsing
  1821. border has been implemented.
  1822. </action>
  1823. <action context="Code" dev="JM" type="add">
  1824. font-family list still not fully supported but a comma-separated list is now properly tokenized.
  1825. FOP will now go through all fonts in the list to find one that is available, but it doesn't
  1826. do so per character, yet.
  1827. </action>
  1828. <action context="Code" dev="JM" type="add">
  1829. Implemented "Overconstrained Geometry" rules (5.3.4, XSL 1.0) for the most important cases.
  1830. </action>
  1831. <action context="Code" dev="JM" type="fix">
  1832. Bugfix: Relatively positioned BlockViewports (from block-containers) caused the paint
  1833. cursor not be be properly advanced when space-before or space-after were present.
  1834. </action>
  1835. <action context="Code" dev="JM" type="fix">
  1836. Bugfix: Space resolution was incomplete for content in table-cells. Conditional elements
  1837. didn't get removed.
  1838. </action>
  1839. <action context="Code" dev="JM" type="fix">
  1840. The validation check for non-zero borders and padding on a region-* and for empty static-content
  1841. elements is now turned off when relaxed validation is active to improve compatibility with
  1842. FO documents written for other FO implementations.
  1843. </action>
  1844. <action context="Code" dev="JM" type="fix">
  1845. Bugfix for "/ by zero" ArithmeticExceptions when an URL to a non-existing image is used
  1846. and content-width and/or content-height is used.
  1847. </action>
  1848. <action context="Code" dev="JM" type="fix">
  1849. Bugfix for a multi-threading problem:
  1850. propertyListTable initialization moved from the constructor to a static block in FONode.
  1851. This fixes NullPointerExceptions in PropertyList.
  1852. </action>
  1853. <action context="Code" dev="JM" type="fix">
  1854. Bugfix for placement of text inside a text area when borders are present in PostScript output.
  1855. </action>
  1856. <action context="Code" dev="JM" type="update">
  1857. Improvements on leader painting in PDF output.
  1858. </action>
  1859. <action context="Code" dev="JM" type="add">
  1860. Support for leader painting in PostScript output.
  1861. </action>
  1862. <action context="Code" dev="LF, MM" type="add">
  1863. Support for hyphenation-ladder-count.
  1864. </action>
  1865. </release>
  1866. <release version="0.90alpha1" date="22 Nov 2005">
  1867. <action context="Code" dev="all" type="update">
  1868. <strong>Complete redesign of the FOP codebase</strong> in the period between Dec 2001 and Nov 2005.
  1869. There are just too many changes to list here. If you like to know details, run
  1870. <code>"svn log --verbose http://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/"</code>.
  1871. </action>
  1872. </release>
  1873. <release version="0.20.5" date="18 July 2003">
  1874. <action context="Code" dev="all" type="update">
  1875. For the change log for the maintenance branch
  1876. (where FOP 0.20.5 came from), please see the "CHANGES" file in the distribution, or
  1877. <link 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</link>.
  1878. </action>
  1879. </release>
  1880. </changes>
  1881. <todo>
  1882. <!-- See Bugzilla and http://wiki.apache.org/xmlgraphics-fop/FOPProjectTasks -->
  1883. <actions>
  1884. <action dev="open" type="update" context="Docs">
  1885. Improve the documentation.
  1886. </action>
  1887. </actions>
  1888. </todo>
  1889. </status>