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

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