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.

CHANGES 49KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964
  1. ==============================================================================
  2. Done since 0.20.4 release
  3. - Use Locator to make system id, line and column number available to
  4. FOs. Use it when throwing FOPExceptions. TBD: Use it in mesages, also
  5. catch RuntimeExceptions and wrap them.
  6. - Added PDF encryption. Available options: no printing, no copy, no
  7. edit, no annotations.
  8. Submitted by Patrick C. Lankswert <PLankswert@InsightBB.COM>
  9. - Fixed text alingment for lines containing forward pointing page number
  10. citations. This should greatly improve TOC layout. (J.Pietschmann)
  11. - Fixed repeatedly laid out small caps text (for example in static
  12. content or due ot keeps). (J.Pietschmann)
  13. - Fixed marker handling thouroughly. All retrieving boundaries and
  14. retrieve-position first-starting-within-page and last-starting-within-page
  15. should work now, as well as multiline/multiblock marker contents.
  16. Retrieve-position first-including-carryover and last-ending-within-page
  17. do not yet work. Also fixed marker handling in case layout was undone
  18. due to keeps (#16999). (J.Pietschmann, based on material submitted
  19. by Marc C. Allman)
  20. - Fixed some sources of "wrong operand type" error in Acrobat Reader. They
  21. were caused by rounding bugs, mostly experienced with SVG files coming from
  22. OpenOffice. (Jeremias Maerki)
  23. - FOP Ant task: Fix for logging behaviour, fix for directory structure
  24. preservation for nested filesets and additional attribute "logFiles".
  25. Submitted by: Stefan Wachter <Stefan.Wachter@gmx.de>
  26. - Fixed TrueType embedding bug when the font doesn't contain the fpgm table
  27. which is optional. (Jeremias Maerki)
  28. - Added support for url()-syntax to the fo:basic-link-Element
  29. Submitted by: Stefan Wachter <Stefan.Wachter@gmx.de>
  30. - Added new extension element for defining named destinations (PDF)
  31. Submitted by: Lloyd McKenzie <lmckenzi@ca.ibm.com> and Stefan Wachter
  32. - Added support for linking to a specific page and a named destinations
  33. of an external PDF file
  34. Submitted by: Bernd Brandstetter <bbrand@freenet.de>
  35. - Added Turkish messages for AWT Viewer
  36. Submitted by: Togan Muftuoglu <toganm@users.sourceforge.net>
  37. - Fixed leader expansion and leader alignment to reference area to some
  38. extent(#7490 and #15936). (J.Pietschmann)
  39. - Temporary fix for wrong mapping of the hyphen character in the PostScript
  40. renderer. Needs to be done in a clean way later.
  41. Submitted by: Arnd Beissner <arnd.beissner@cappelino.de>
  42. - Fix for bug 16257: Get ascender/descender from OS/2 table if the ones in
  43. hhea are zero (Jeremias Maerki)
  44. - Reduced the size of the PSRenderer output (removed redundant movetos)
  45. Submitted by: Arnd Beißner <arnd.beissner@cappelino.de> (see bug #16130)
  46. - Fixed many (not all) problems with link hotspot positioning and made
  47. the default behavior to create a single hotspot over all words in each
  48. line (Karen Lease)
  49. - Added continued-label extension which works in table-header or table-footer
  50. to add text in non-first occurences of those areas (Karen Lease)
  51. - Fixed a bug in the TTF font inclusion which was showing up when using
  52. non-stroked text in SVG (Karen Lease)
  53. - Improved table behavior in some cases where keeps properties are used on
  54. rows (Karen Lease)
  55. - Fixed NullPointerException in Label.java experienced by certain DocBook
  56. users.
  57. Submitted by: Stephan Wiesner <stephan@stephan-wiesner.de>
  58. - Fixed bug #15877: ArrayIndexOutOfBoundException with certain TrueType fonts.
  59. Reserved name indexes were not ignored. (Jeremias Maerki)
  60. - Fixed resolution of relative URLs in FopImageFactory with IBM JDK
  61. Submitted by: Manuel Mall <mm@arcus.com.au> (see bug #14948)
  62. - Fixed infinite loop when page-height="auto" (Oleg Tkachenko)
  63. - Fix embedding of Adobe Type 1 fonts. PFB file encoded in PC format were
  64. not decoded prior to embedding. This may explain error messages with
  65. certain RIP engines. (Jeremias Maerki)
  66. - Added infinite loop detection (just halts processing, see bug #8878)
  67. Submitted by: Rhett Aultman (raultman@fcci-group.com)
  68. - Added autoselecting portrait/landscape on PCL Renderer (see bug #6638)
  69. Submitted by: vicentesalvador@netscape.net (Vicente Salvador)
  70. - Improved AWT Font-measuring/rendering (see bug #14657)
  71. Submitted by: Ralph LaChance <Ralph_LaChance@compuserve.com>
  72. - Updated examples/fo files to remove all errors and warnings during build
  73. Submitted by: Manuel Mall <mm@arcus.com.au> (see bug #13867)
  74. - Performance tuning (reduced object creation etc.) (see bug #14013)
  75. Submitted by: Henrik Olsson <henrik.olsson@intentia.se>
  76. - Update to Xerces 2.2.1 (Jeremias Maerki)
  77. - Fixed EOFException in TTFReader (Bug #14576)
  78. Submitted by: Bernard D'Have <bdhaveos@wanadoo.be>
  79. - Added support for CCITT Group 4 encoded TIFF files
  80. Made JAI support dynamic (no recompile needed anymore)
  81. Submitted by: Manuel Mall <mm@arcus.com.au> (see bug #13866)
  82. - Fixed problem with jpegs with icc profile and acrobat reader 5 (Bug #11301)
  83. Submitted by: Stephan Neuhaus <stephan.neuhaus@myview.de>
  84. - Fix bug in LinkSet.mergeLinks() (ArrayOutOfBoundsException when number of
  85. rects is zero) (Jeremias Maerki)
  86. - Removed the necessity for a buildtools.jar (Jeremias Maerki)
  87. - Updated several JARs: Ant 1.5.1, Xerces 2.2.0, Xalan 2.4.1 (Jeremias Maerki)
  88. - Fixed some multi-threading issues (NPEs)
  89. Submitted by: Joachim Unger <joachim.unger@softwareag.com>
  90. - Improved registration of ImageReader implementations (Jeremias Maerki)
  91. - Refactored baseDir stuff. Internally most code has been changed to work on
  92. URLs instead of filenames. The baseDir property is evaluated to a baseURL
  93. which can be accessed through Configuration.getBaseURL() (Jeremias Maerki)
  94. - Added a fontBaseDir property (similar to baseDir) which represents a base
  95. dir/URL for fonts. If this property isn't set, a fallback is made to
  96. baseDir. (Jeremias Maerki)
  97. - Fixed some javadoc warnings
  98. Submitted by: Victor Mote <vic@outfitr.com>
  99. - Added translation for GoToPageDialog and update for czech translations
  100. Submitted by: Michal Buchtik <BuchtikM@dlsystem.cz>
  101. - background properties for all regions + regions precedence support
  102. (Oleg Tkachenko)
  103. - TXTRenderer output encoding (Oleg Tkachenko)
  104. - border-spacing support (Oleg Tkachenko)
  105. - New Avalon Framework JAR with Log4J support (Bug 11274) (Jeremias Maerki)
  106. - Added a RunLengthEncode filter for the PostScript renderer
  107. Submitted by: Stephen Wolke <smwolke@geistig.com>
  108. - Added a property on the PostScript renderer for switching between PostScript
  109. Level 2 and 3. Default is Level 3. (Jeremias Maerki)
  110. - Improved standard conformance for forced page counts (J.Pietschmann)
  111. - Better error reporting for common problems (invalid page master references,
  112. missing table-body elements) (J.Pietschmann)
  113. - Improved handling of text containing entity references. (J.Pietschmann)
  114. - Made marker references work for markers not from the current page,
  115. with some caveats (J.Pietschmann)
  116. - Simplification of ASCII85 computation, work around for a JVM bug on Linux
  117. (J.Pietschmann)
  118. - Fixed width calculation for spaces (J.Pietschmann)
  119. - Fixed problems with setting text decorations on fo:wrapper. (J.Pietschmann)
  120. - Automatic compilation on Java1.4 (J.Pietschmann)
  121. - More possiblities to pass data to FOP (J.Pietschmann)
  122. - Fixed missing Ids for table rows (#12876) (J.Pietschmann)
  123. - Page number citations are now correctly formatted (#13691) (J.Pietschmann)
  124. - Text decoration and links now work with hyphenated words. (#4511)
  125. (J.Pietschmann)
  126. - Fixed problems with scrambled and lost related to hyphenation (#6042
  127. and a few others). (J.Pietschmann)
  128. - Fixed wrong space generation related to hyphenation. (J.Pietschmann)
  129. ==============================================================================
  130. Done since 0.20.3 release
  131. - Moved from org.apache.log.Logger to org.apache.avalon.framework.logger.Logger
  132. (this removes dependency from logkit)
  133. Submitted by: Michael Gratton <mjg@recalldesign.com>
  134. - Made FOP running with any JAXP1.1 compliant parser/transformer
  135. Submitted by: Joerg Pietschmann <joerg.pietschmann@zkb.ch>
  136. - Updated old servlet code, moved to contrib
  137. Submitted By: Jeremias Maerki <jeremias.maerki@outline.ch>
  138. - Added russian messages for AWTViewer
  139. fallback to english messages if resources are not found
  140. Submitted by: Alex V. Alishevskikh <alex@openmechanics.net>
  141. - AWT renderer exit for closing window is only called when started from
  142. command line and not on the window (Keiron Liddle)
  143. - Updated ant to version 1.4.1 (Christian Geisert)
  144. (ant-optional.jar is no longer needed)
  145. - Changed build.sh to work under cygwin
  146. Submitted by: Andriy Palamarchuk <APalamar@wyeth.com>
  147. - Added turkish hyphenation patterns
  148. Submitted by: Togan Muftuoglu <toganm@users.sourceforge.net>
  149. - Added portuguese hyphenation patterns
  150. Submitted by: Paulo Soares <psoares@consiste.pt>
  151. - Added czech translation for AWT viewer
  152. Submitted by: Michal Buchtik <BuchtikM@dlsystem.cz>
  153. - removed xalan1 support (Christian Geisert)
  154. - Added czech hyphenation patterns
  155. Submitted by: Michal Buchtik <BuchtikM@dlsystem.cz>
  156. - Added support for background-image
  157. Submitted by: Michael Gratton <mjg@recalldesign.com>
  158. - Updated Batik to 1.5beta2 and improved the useragent usage
  159. (Keiron Liddle)
  160. - Fixed a problem when EPS files have Bounding Boxes containing
  161. negative integers.
  162. Submitted by: Claes Bergsten <claes.bergsten@tjgroup.com>
  163. - Workaround for a bug in JDK 1.3.0.* and 1.4 to improve text output.
  164. Submitted by: Ralph LaChance <Ralph_LaChance@compuserve.com>
  165. - Added support for overline, line-through and text-decoration on
  166. inline spaces for AWT renderer (Jeremias Maerki)
  167. - Added patch to prevent the same image being inserted multiple times
  168. into pdf graphics
  169. Submitted by: Paul Reavis <preavis@partnersoft.com>
  170. - Fixed PDF-Renderer to work on EBCDIC systems
  171. (Actually on systems where file.encoding != ASCII/ISO-8859)
  172. Submitted by: Jason West <Jason.West@mail.state.ky.us>
  173. - Updated xerces to version 2.0.1 and xalan to version 2.3.1
  174. (Christian Geisert)
  175. - Fixed svg links to external url (Keiron)
  176. - Fixed problem with Win98/ME commandline (Christian Geisert)
  177. - Removed Tc that were inserted in [...] TJ commands. (Bug 9054)
  178. - Fixed letter-spacing (Jeremias Maerki)
  179. - BaseDir property is now used for loading custom fonts (Bug #7608)
  180. (thanks to Arnd Beissner and Brian O'Kelley)
  181. - Added support for comma-separated values for the font-family property
  182. Submitted by: Oleg Tkachenko <olegt@multiconn.com>
  183. - Fixed support for fractional font sizes
  184. Submitted by: Björn Lütkemeier
  185. - Added exit codes/file deletion in case of an error (Joerg Pietschmann)
  186. - Implemented margin shorthand
  187. Submitted by: Peter Kullmann <p.kullmann@arenae.ch>
  188. - Added reload functionality in AWT preview window
  189. Submitted by: Oleg Tkachenko <olegt@multiconn.com>
  190. ==============================================================================
  191. Done since 0.20.2 release
  192. *** General
  193. - Added correct metrics for euro sign in standard fonts
  194. (bug 2105 and bug 4654)
  195. Submitted by: Rainer Garus <rainer.garus@nexgo.de>
  196. - Fixed problem with computing remaining with in LineArea where start-indent <> 0
  197. (bug 4839)
  198. Submitted by: Rainer Garus <rainer.garus@nexgo.de>
  199. - Support for CMYK and embedded ICC profiles in jpeg images (Tore Engvig)
  200. - Support for jpeg images in PS Renderer (Tore Engvig)
  201. - Add support for EPS images in PostScript renderer and limited EPS support in
  202. PDF Renderer (Tore Engvig)
  203. - fixed bug in TTFReader (unsigned lsb changed to signed)
  204. Submitted by: Cristi Ruja, c_ruja@yahoo.com
  205. - fixed threading problem (Keiron Liddle)
  206. - Formatting results patch to enable embedders to obtain info from render doc
  207. Submitted by: Jeremias Maerki <jeremias.maerki@outline.ch>
  208. - Better handling of missing markers (Keiron Liddle)
  209. - jimi.jar removed for removed for license reasons
  210. - Added "Printing from a servlet" example
  211. Submitted by: Ralph LaChance <Ralph_LaChance@compuserve.com>
  212. - Proper use of font encodings for "native" fonts
  213. Submitted by: Peter S. Housel (housel@acm.org) and Rainer Garus (rainer.garus@arcor.de)
  214. - fixed Marker (Christian Geisert)
  215. - updated logkit from 1.0b4 to to 1.0 (Christian Geisert)
  216. *** Tables
  217. - Implement the proportional-column-width() function in table-column and
  218. make it possible to specify table width (or inline-progression-dimension)
  219. using percentage values. (Karen Lease)
  220. - Fix a bug causing strange layout when a cell containing a nested table
  221. was laid out again because another cell in the same row was split (David
  222. Dixon's example). (Karen Lease)
  223. - Fix for infinite loops with table keeps (Christian Geisert)
  224. *** Datatypes
  225. - Rearrange the Length class hierarchy as part of the table-column proportional
  226. width work. (Karen Lease)
  227. *** Functions
  228. - make sure label-end() value gets calculated
  229. (fix for bug #6094, endless loop while processing list-item-label))
  230. *** Areas
  231. - Fix BlockArea to account for padding and border when calculating space
  232. remaining for content. (Karen Lease)
  233. - Improved line breaking for japanese
  234. Submitted by: Satoshi Ishigami <ishigami@victokai.co.jp>
  235. *** Properties
  236. - Changed "master-name" to "master-reference" on fo:page-sequence,
  237. fo:single-page-master-reference, fo:repeatable-page-master-reference and
  238. fo:conditional-page-master-reference to comply with the latest XSL recommendation.
  239. Also changed the unimplemented property space-treatment to white-space-treatment and
  240. updated examples and tests to use the new syntax.
  241. Submitted by: Christian Geisert [Christian.Geisert@isu-gmbh.de]
  242. - Add support for inline-progression-dimension and table-layout. (Karen)
  243. - Add support for letter-spacing.
  244. Submitted by: Raymond Penners <raymond@duologix.nl>
  245. - text-decoration support for blocks (Christian Geisert)
  246. - Added inheritance for the text-decoration property from parent inline or
  247. block elements (Christian Geisert)
  248. *** SVG
  249. - updated to cvs batik 3/12/2001 for api changes
  250. - fixed problem where width of scaled lines was not correct
  251. *** Images
  252. - fixed problem where streams where opened for cached images
  253. *** Messages
  254. - Improved for some common errors
  255. *** FOTreeBuilder
  256. - fixed npe problem when text outside root element
  257. - handles document errors and unknown namespace better
  258. *** AWTRenderer
  259. - Fixed small border problem
  260. Submitted by: Ralph LaChance <Ralph_LaChance@compuserve.com>
  261. - Improved i18n support for AWT viewer (Japanese dialogs)
  262. Submitted by: Satoshi Ishigami (ishigami@victokai.co.jp)
  263. *** TXTRenderer
  264. - Generated text is written in UTF-8 encoding instead of ISO-8859-1
  265. *** MIFRenderer
  266. - MIF output strings escaping (see bug #1332)
  267. Submitted by: Vicente Salvador (vicentesalvador@netscape.net)
  268. - Fixed NoSuchElementException in MIF renderer (Christian Geisert)
  269. *** Hyphenation
  270. - Added Polish Hyphenation based on TeX hypenation
  271. Submitted by: Marcin Kuthan [M.Kuthan@elka.pw.edu.pl]
  272. - Fixed infinite loop with hyphenation
  273. Submitted by: Enrico Schnepel <enrico.schnepel@gmx.de>
  274. - Added greek Hyphenation
  275. Submitted by: Dimitris Kamenopoulos <el97146@mail.ntua.gr>
  276. - Added hungarian Hyphenation
  277. Submitted by: Simon Geza <simon@mail.drotposta.hu>
  278. ==============================================================================
  279. Done since 0.20 release
  280. *** General
  281. - immediate fix to PDFRenderer and LazyFont, leading up to 0.20.1
  282. - build.xml improvements (Weiqi Gao)
  283. ==============================================================================
  284. Done since 0.19 release
  285. *** General
  286. (Lots and lots of stuff by Keiron Liddle)
  287. - all properties are read, a message will indicate if it is not supported
  288. - all elements now handled, with a message for unsupported elements
  289. - uses Unknown element if namespace+element not found, rather than using
  290. FObjMixed
  291. - support for only loading user fonts for pdf when needed
  292. - fo:wrapper should support inheriting properties better
  293. - table row span, bunch of other significant table improvements by Karen Lease
  294. - support for drawing text into PDFGraphics2D
  295. - marker support (ASandstrom)
  296. - streaming pdf
  297. - changed rendering of alpha images for svg in pdf, now uses white
  298. background
  299. - proper device information for PDFGraphics2D rendering
  300. - code formatted (Tore Engvig)
  301. - element and property list mappings now added through single interface
  302. Mark Lillywhite's performance and memory patch added.
  303. Unfortunately breaks marker support.
  304. XSL-FO with markers is not a good idea until it is fixed.
  305. *** Building
  306. - (build.bat, build.sh) now uses only the local set class path (KLiddle)
  307. - (build.xml) added support for easily using w3c testsuite for build target
  308. test (KLiddle)
  309. *** Examples
  310. - (extensive.fo) sets style so that it looks better (KLiddle)
  311. - (images.fo) images are relative to where the doc is rather than an arbitrary
  312. location (KLiddle)
  313. - (glossary.xml, glossary.xsl) fo:marker examples (ASandstrom)
  314. - (embedding.fo, external.fo) added some more info, examples (KLiddle)
  315. - (headfoot.fo) Fix spanning row example so it works (KLease)
  316. *** Documentation
  317. - (embedding.xml) added info about using xslt input handler (KLiddle)
  318. - (examples.xml) some slightly more info about svg -> pdf (KLiddle)
  319. - (svg.xml) some slightly more info about svg -> pdf (KLiddle)
  320. - (testing.xml) added support for easily using w3c testsuite for build
  321. target test (KLiddle)
  322. *** Hyphenation
  323. - (sk.xml) added slovak hyphenation patterns; Obtained from: skhyphen.tex
  324. Submitted by: KRUMPOLEC Martin <krumpolec@asset.sk>
  325. *** FOP libraries
  326. - (buildtools.jar) added support for easily using w3c testsuite for build
  327. target test (KLiddle)
  328. *** XSL Code Generation
  329. - (elements.xsl) some independance improvements (KLiddle)
  330. - (foproperties.xml) setup a couple of props (KLiddle); activated
  331. space-start/space-end (ASandstrom)
  332. - (foproperties.xml) added all remaining properties, currently just with
  333. type String (KLiddle)
  334. - Support 'format' property on fo:page-sequence (ASandstrom)
  335. - (propmaker.xsl) put import at start; puts the right property family name
  336. in resulting prop file (KLiddle)
  337. *** Package org.apache.fop.apps:
  338. - (AWTStarter.java, CommandLineStarter.java, Driver.java) Adds Mark
  339. Lillywhite's performance
  340. and memory patch in all it's glory. Unfortunately breaks marker support.
  341. (AreaTree getNextPage and getPreviousPage return the current page)
  342. XSL-FO with markers is not a good idea until it is fixed.
  343. - (CommandLineOptions.java) command line support for new ps renderer
  344. Submitted by: Jeremias Maerki <jeremias.maerki@outline.ch>
  345. - (Driver.java) combined property list setting into element setting
  346. also always get parser class name from one place; allows adding mappings from
  347. user config (KLiddle)
  348. - (Driver.java) command line support for new ps renderer
  349. Submitted by: Jeremias Maerki <jeremias.maerki@outline.ch>
  350. - (Options.java) fixed error where configfile was not being set (KLiddle)
  351. - (Options.java) Added patch for loading config via Thread ContextClassLoader
  352. Submitted by: Davanum Srinivas
  353. - (StreamRenderer.java) This just moves the marker supporting code from before
  354. Mark's patch into StreamRenderer. Not tested. (SCoffman)
  355. *** Package org.apache.fop.configuration:
  356. - (Configuration.java) combined property list setting into element setting
  357. also always get parser class name from one place (KLiddle)
  358. - (ConfigurationReader.java) combined property list setting into element
  359. setting; also always get parser class name from one place (KLiddle)
  360. *** Package org.apache.fop.datatypes:
  361. - (ToBeImplemented.java) indicates to be implemented status for
  362. properties not implemented (KLiddle)
  363. - (ToBeImplementedProperty.java) indicates to be implemented status for
  364. properties no implemented (KLiddle)
  365. *** Package org.apache.fop.extensions:
  366. - (ExtensionElementMapping.java) combined property list setting into element
  367. setting; also always get parser class name from one place (KLiddle)
  368. *** Package org.apache.fop.fo:
  369. started support to read all relevant properties, mostly commented; added all
  370. remaining elements, currently are indicated as not implemented; removed old
  371. elements (KLiddle)
  372. - (ElementMapping.java) combined property list setting into element setting
  373. also always get parser class name from one place (KLiddle)
  374. - (FONode.java) initial marker support (ASandstrom)
  375. - (FOTreeBuilder.java) gets all properties specified on each element; adds
  376. "Unknown" element for unknown elements or other namespaces; need to get a
  377. consistent and easy way to use the property values (KLiddle)
  378. - (FOTreeBuilder.java) Added patch to allow FOTreeBuilder to be reused easier
  379. Submitted by: Christopher Burkey
  380. - (FObj.java) initial marker support (ASandstrom)
  381. - (PropertyManager.java) handles page break for nested blocks now (KLiddle);
  382. addressing break boundary conditions (ASandstrom)
  383. *** Package org.apache.fop.fo.flow:
  384. Table border placement and border-drawing improvements (PDF only)
  385. Added support for the "height" property on table-row and for display-align
  386. (except "auto") on table-cell.
  387. Partial support for the "collapse" style of cell-borders was contributed
  388. by Ivan Demakov (Jun 14, maybe that was already in 0.19?). The support
  389. for "height" on table-cell was also contributed by Ivan.
  390. - (Block.java) changed Area methods slightly (ASandstrom); initial marker
  391. support, addressing break boundary conditions (ASandstrom)
  392. - (ListBlock.java, ListItem.java, ListItemBody.java, ListItemLabel.java)
  393. added support for 'returned-by' (ASandstrom)
  394. - (Marker.java) initial marker support (ASandstrom)
  395. - (PageNumber.java) Supports page-number formatting (ASandstrom)
  396. - (RetrieveMarker.java) initial marker support (ASandstrom)
  397. - (RowSpanMgr.java) Helper class for spanning rows (KLease)
  398. - (Table.java) Fix some bugs in table and cell border drawing and cell
  399. width calculations (KLease)
  400. - (TableBody.java) Implements spanning table rows (KLease)
  401. - (TableCell.java) Use a copy of BorderAndPadding to fix alignment bugs
  402. in header/footer cells (KLease); Fix some bugs in table and cell border drawing
  403. and cell width calculations (KLease); Make display-align work on table-cell
  404. (KLease) Implements spanning table rows (KLease)
  405. - (TableColumn.java) Fix some bugs in table and cell border drawing and
  406. cell width calculations (KLease)
  407. - (TableRow.java) Make display-align work on table-cell (KLease);
  408. checkBreakBefore signature (Weiqi Gao); Fix spanning bug; use height property
  409. (KLease) Implements spanning table rows (KLease)
  410. *** Package org.apache.fop.fo.pagination:
  411. - (PageNumberGenerator.java) helper class for page-number formatting
  412. (ASandstrom)
  413. - (PageSequence.java) initial marker support; support 'force-page-count';
  414. Supports page-number formatting (ASandstrom); should handle page number
  415. properly, with threads and multiple page sequences
  416. Submitted by: Jeremias Maerki <jeremias.maerki@outline.ch>
  417. - (RepeatablePageMasterAlternatives.java) restore ability to do blank pages
  418. (ASandstrom)
  419. - (Root.java) initial marker support; support 'force-page-count' (ASandstrom)
  420. ; should handle page number properly, with threads and multiple page sequences
  421. Submitted by: Jeremias Maerki <jeremias.maerki@outline.ch>
  422. *** Package org.apache.fop.fonts:
  423. - (Glyphs.java) Fixes for unicode escapes that were removed during code
  424. formatting (Sasaki Suguru [s-sasaki@hkg.odn.ne.jp])
  425. - (TTFFile.java) Some glyphs are missed when more then one glyph maps to the
  426. same data, now fixed. (SASAKI Suguru [s-sasaki@hkg.odn.ne.jp])
  427. *** Package org.apache.fop.image:
  428. - (FopImageFactory.java) changed to correct mime type
  429. catch error if batik not available (KLiddle); compiles on jdk1.1;
  430. fixes possible npe when no protocol specified; tries to get the reference from
  431. baseDir + ref path (KLiddle)
  432. - (SVGReader.java) changed to correct mime type; catch error if batik not
  433. available (KLiddle)
  434. *** Package org.apache.fop.layout:
  435. - (AbsolutePositionProps.java, AccessibilityProps.java) adds the remaining
  436. property groups (KLiddle)
  437. - (Area.java) changed Area methods slightly; improving area information; initial
  438. marker support; addressing break boundary conditions (ASandstrom)
  439. - (AreaContainer.java) improving area information (ASandstrom)
  440. - (AuralProps.java, BackgroundProps.java) adds the remaining property groups
  441. (KLiddle)
  442. - (BlockArea.java) Fix a bug which caused FOP to overestimate the space
  443. available for the first line of a Block (KLease)
  444. - (BorderAndPadding.java) Add clone method (KLease); Make display-align work
  445. on table-cell (KLease)
  446. - (FontInfo.java) updates to pdf text painter (KLiddle)
  447. - (LineArea.java) Fixes bug that causes character - glyph mapping to occur
  448. twice in getWordWidth method causing overlapping areas.
  449. (Struan Judd [struan@sjudd.com])
  450. - (LineArea.java) Fixes for unicode escapes that were removed during code
  451. formatting (Sasaki Suguru [s-sasaki@hkg.odn.ne.jp])
  452. - (LineArea.java) Added support for various spaces, inluding non-breaking space
  453. (fixes bug no 2297) (TEngvig)
  454. Added support for line breaking in the middle of words for CJK languages
  455. Fixes for bug 2243 based on a patch from rainer.garus@nexgo.de
  456. - (LineArea.java) This fixes bug 2556 by changing the leader with pattern
  457. "space" to use an InlineSpace instead of adding actually spaces. (TEngvig)
  458. - (MarginInlineProps.java) adds the remaining property groups (KLiddle)
  459. - (Page.java) initial marker support; page-number formatting (ASandstrom)
  460. - (RelativePositionProps.java) adds the remaining property groups (KLiddle)
  461. *** Package org.apache.fop.layout.hyphenation:
  462. - (Hyphenator.java) Added patch for loading config via Thread ContextClassLoader
  463. (Davanum Srinivas)
  464. - (TernaryTree.java) Fixes for unicode escapes that were removed during code
  465. formatting (Sasaki Suguru [s-sasaki@hkg.odn.ne.jp])
  466. *** Package org.apache.fop.layout.inline:
  467. - (InlineSpace.java) Added support for various spaces, including non-breaking
  468. space (fixes bug no 2297); Added support for line breaking in the middle of
  469. words for CJK languages (TEngvig)
  470. Fixes for bug 2243 based on a patch from rainer.garus@nexgo.de
  471. *** Package org.apache.fop.pdf:
  472. - (PDFColor.java) changed PDFNumber to use static methods (Liddle)
  473. - (PDFDocument.java) adds support for lazy loading of fonts; saves some cpu,
  474. memory (SASAKI Suguru <s-sasaki@hkg.odn.ne.jp>)
  475. - (PDFOutline.java) Adds support for unicode characters in bookmarks.
  476. (SASAKI Suguru [s-sasaki@hkg.odn.ne.jp])
  477. *** Package org.apache.fop.render:
  478. - (PrintRenderer.java) Add new addFilledRect method to make it possible to
  479. draw filled rectangles without any stroke in PDF; in doFrame, use rectangles
  480. instead of lines for borders to eliminate pixel errors (KLease)
  481. - (awt.AWTRenderer.java) updated to new batik interface (KLiddle)
  482. improvements to AWTRenderer (borders,backgrounds...)
  483. (Ralph LaChance/Andy Langowitz):
  484. [ AWTRenderers (-awt and -print options)
  485. - eliminated 3D-effect in rendering background color
  486. - borders now draw wider than 1 pixel if appropriate
  487. - fixed a roundoff error in background and border dimension/location
  488. - fixed a positioning error on Top and Right borders ]
  489. - (pdf.FontSetup.java) adds support for lazy loading of fonts
  490. saves some cpu, memory (SASAKI Suguru <s-sasaki@hkg.odn.ne.jp>)
  491. - (pdf/PDFRenderer.java) adds support for lazy loading of fonts
  492. saves some cpu, memory (SASAKI Suguru <s-sasaki@hkg.odn.ne.jp>)
  493. - (pdf/PDFRenderer.java) updated to new batik interface (KLiddle)
  494. - (pdf/PDFRenderer.java) added the start of svg linking; also improved a few
  495. text things (KLiddle)
  496. - (pdf/PDFRenderer.java) Add new addFilledRect method to make it possible to
  497. draw filled rectangles without any stroke in PDF; in doFrame, use rectangles
  498. instead of lines for borders to eliminate pixel errors (KLease)
  499. - (pdf/PDFRenderer.java) added initial impl of text painter that uses pdf fonts
  500. rather than stroking (KLiddle)
  501. - (pdf/PDFRenderer.java) workaround for a bug in Acrobat Reader where text
  502. may disappear or be placed in the wrong position (KLiddle)
  503. - (pdf.fonts.LazyFont.java) adds support for lazy loading of fonts
  504. saves some cpu, memory (SASAKI Suguru <s-sasaki@hkg.odn.ne.jp>)
  505. *** Package org.apache.fop.render.ps:
  506. New addition: postscript renderer
  507. Submitted by: Jeremias Maerki <jeremias.maerki@outline.ch>
  508. - (PSGraphics2D.java, PSRenderer.java) added support for rendering SVG
  509. graphics to ps, not fully functional (KLiddle)
  510. *** Package org.apache.fop.svg:
  511. - (PDFDocumentGraphics2D.java) fixes PDFDoc to work with changed interface;
  512. added the start of svg linking; should handle colour space a bit better;
  513. writes fonts to resources in PDFDocument; sets up the font state if not using
  514. strokes for text (KLiddle)
  515. - (PDFGraphics2D.java) Handles the graphics device better. (Kliddle)
  516. Also handles the alpha transparency better, at least for white backgrounds
  517. it works properly (Thomas E Deweese <thomas.deweese@kodak.com>)
  518. - (PDFGraphics2D.java) should handle colour space a bit better;
  519. writes fonts to resources in PDFDocument; added initial impl of text painter
  520. that uses pdf fonts rather than stroking (KLiddle)
  521. - (PDFTextPainter.java) should handle colour space a bit better; writes fonts
  522. to resources in PDFDocument; added initial impl of text painter that uses pdf
  523. fonts rather than stroking (KLiddle)
  524. - (PDFTranscoder.java) updated to new batik interface (KLiddle); added the
  525. start of svg linking; gets the xml parser class name properly (KLiddle)
  526. - (SVGElement.java) sets the context url properly (with baseDir)
  527. - (SVGObj.java, XMLObj.java) allows better for other xml data (KLiddle)
  528. - (SVGUtilities.java) a utility file for creating some svg things (Kliddle)
  529. *** Testing and Support
  530. - (tools.anttasks.Fop.java) handles baseDir (with a capital D) properly as
  531. suggested by Anthony Tagunov <atagunov@nnt.ru> (KLiddle)
  532. - (tools.anttasks.RunTest.java) added support for easily using w3c testsuite
  533. for build target test (KLiddle)
  534. ==============================================================================
  535. Done since 0.18 release
  536. *** Building
  537. - improvements and fixes to build.xml (ASandstrom,KCampbell)
  538. *** General
  539. - Changes to support Batik (KLiddle)
  540. { FOP now uses Batik to render svg
  541. This is handled for awt - using batik to render to a graphic
  542. and pdf.
  543. Pdf still requires better image support.
  544. The elements and properties are generated from the svgelements.xml
  545. document.
  546. The version of batik is 17/05/2001 cvs. }
  547. - memory buffering (Seshadri G.K.)
  548. *** Examples
  549. - Added Norwegian hyphenation based on Rune Kleveland's original
  550. nohyphb.tex TeX patterns from the ispell-norsk-2.0 package (TEngvig)
  551. adds Danish text (Lars Michael Johnsen)
  552. - fixed up fills and borders for better appearance (KLiddle)
  553. - Fixed basic-link horizontal position with justification turned on. (KCampbell)
  554. - add border-collapse property (KLease)
  555. - Added CID Font example (KCampbell)
  556. *** Hyphenation
  557. - corrected danish hyphenation (Carlos Villegas)
  558. - adds Danish hyphenation file (Carlos Villegas)
  559. - Added Norwegian hyphenation based on Rune Kleveland's original
  560. nohyphb.tex TeX patterns from the ispell-norsk-2.0 package (TEngvig)
  561. - Hyphenation patterns for russian (TEngvig)
  562. *** codegen
  563. - The elements and properties are generated from the svgelements.xml
  564. document. (KLiddle)
  565. *** Package org.apache.fop.apps:
  566. - support for XMLRenderer (ASandstrom)
  567. - Removed uses of System.out where throwing a FOPException should suffice.
  568. Refactored code to throw FOPExceptions so embedding FOP wont' cause app
  569. server JVMs to exit. (KCampbell)
  570. - adding -text and -pcl options to help text (FJannidis)
  571. - sets baseDir to a URL string rather than a file path string (KLiddle)
  572. *** Package org.apache.fop.datatypes:
  573. - New datatype to represent the property border-separation (KLease)
  574. *** Package org.apache.fop.fo:
  575. - fixed a couple of problems when placing foreign objects near
  576. page break (KLiddle)
  577. - Support for LengthPair property type (KLease)
  578. - restored support for external svg images (KLiddle)
  579. *** Package org.apache.fop.fo.flow:
  580. - inlining of images (ASandstrom, Seshadri G.K.)
  581. - footnote height problem fix (KLiddle)
  582. - fixed a couple of problems when placing foreign objects near
  583. page break (KLiddle)
  584. - added support for 'number-columns-repeated' (G. Pretterhofer)
  585. - fixes a null pointer ex if area is removed before creating area (KLiddle)
  586. - footnote height/id reference problem fixes (KLiddle)
  587. - Fix body positioning; remove widow and orphan handling for rows (KLease)
  588. - Make borders closer to CR spec (KLease)
  589. - Improves cell borders when border-collapse=collapse (the default). Note that
  590. this doesn't implement the full CR, but it's a big improvement and will handle
  591. many common cases. (KLease)
  592. - Stop tables from breaking too early, but make sure that all cells are
  593. composed with the same maxHeight and that absolute Height is set correctly.
  594. In TableRow.java, remove old commented out stuff and put back space-before
  595. (for now) and fix a potential bug involving space-before. (KLease)
  596. - Overflows may cause a row to be re-laid out, need to skip cell content
  597. that has already been processed. (AWelch)
  598. - Put back background on table-column and table-cell (KLease)
  599. - increasing padding problem fix (KLiddle)
  600. - Each column in the row should start with the same height available. (AWelch)
  601. - For borders to be drawn properly on overflowed rows must process all
  602. children. (AWelch)
  603. - Use Constants values. (KLease)
  604. *** Package org.apache.fop.fo.pagination:
  605. - running page num ctr now instance variable for servlet use (KLiddle)
  606. - Made logging go to the same stream (out) for pages and the newline
  607. after a page sequence. The newline was previously going to the err stream.
  608. (KCampbell)
  609. *** Package org.apache.fop.fonts:
  610. - Patch from westbay@seaple.icc.ne.jp to use unicode escape char instead of
  611. pound sign because it was interpreted as an invalid double byte char in
  612. Japanese locale (ja_JP.EUC) and wouldn't compile. (TEngvig)
  613. - Fixes a signedness bug in handling cmaps that caused some fonts to be
  614. invalid. (TEngvig)
  615. - Some fonts contains malformed composite glyphs which used to make fop crash.
  616. This adds an errormessage and tries to embed the font without the composite
  617. glyph. (TEngvig)
  618. - Made some tables in the TTF embedding optional to be compatible with more
  619. fonts. This adheres to the TrueType spec, and makes the MS OpenType
  620. extras optional. (KCampbell)
  621. - Bugfix for font headers with long datatype (KCampbell)
  622. *** Package org.apache.fop.fonts.apps:
  623. - Fixes NumberFormatExceptions when reading .pfm files with kerning values.
  624. (TEngvig)
  625. *** Package org.apache.fop.image[.analyser]:
  626. - now passes in url string to the analyser; some readers may need the url
  627. eg. svg document creator (KLiddle)
  628. - inlining of images (ASandstrom, Seshadri G.K.)
  629. - restored support for external svg images (KLiddle)
  630. - gives SVGReader the correct size (KLiddle)
  631. *** Package org.apache.fop.layout:
  632. - Fix table breaking bug (KLease)
  633. - (AreaContainer) Remove offset of X and Y position by border and
  634. padding (KLease)
  635. - (FontInfo, FontState) Refactored FontState so it doesn't do excessive font
  636. lookups per character. (KCampbell)
  637. - (LineArea) Moved mapping from character to cid from LineArea to PDFRenderer.
  638. This fixes bug no 1681 and other issues with wrong characters being displayed
  639. when using CID fonts. (TEngvig)
  640. - (LineArea) vertical align amount modified (KLiddle)
  641. - (LineArea) Fixes hyphenation for CID fonts (TEngvig)
  642. - (basic-link) Fixed basic-link horizontal position with justification
  643. turned on. (KCampbell)
  644. *** Package org.apache.fop.layout.hyphenation:
  645. - Fixed an array out of bounds that caused some combinations of word/pattern
  646. to crash (TEngvig)
  647. *** Package org.apache.fop.layout.inline:
  648. - Fixed basic-link horizontal position with justification turned on. (Campbell)
  649. *** Package org.apache.fop.pdf:
  650. - Changed encoding of CID fonts from customized CMap to predefined Identity-H
  651. encoding. (TEngvig)
  652. - Fixed some bugs in PDF rendering when font embedding fails.
  653. FontDescriptor is now written out anyway to produce a valid PDF
  654. and acrobat reports that the font can't be displayed. (KCampbell)
  655. - Added default producer to fix a bug where the PDF producer is
  656. set to null in the default commandline usage. (KCampbell)
  657. - (PrintRenderer) Correct border positions on absolutely positioned
  658. AreaContainers (fo:block-container) (KLease)
  659. *** Package org.apache.fop.render[.*]:
  660. - ps renderer (JMaerki)
  661. - improved support for XMLRenderer (ASandstrom)
  662. - fixes for -print option (DBradby)
  663. - restored support for external svg images (KLiddle)
  664. - Moved mapping from character to cid from LineArea to PDFRenderer. This
  665. fixes bug no 1681 and other issues with wrong characters being displayed when
  666. using CID fonts. (TEngvig)
  667. - Fix for color carrying over page breaks (ASandstrom)
  668. - Cleaned up renderWordArea. removed unused code. optimized object creation
  669. a little. (KCampbell)
  670. - Fix disappearing text when using text-anchor != start (KLease)
  671. - Fix for using embedded TrueType fonts in SVG. This fix adds the use of
  672. FontState.mapChar to ensure that glyphs used in the SVG document are included
  673. in the embedded font. (TEngvig)
  674. - Fixed some bugs in PDF rendering when font embedding fails.
  675. FontDescriptor is now written out anyway to produce a valid PDF
  676. and acrobat reports that the font can't be displayed. (KCampbell)
  677. *** Package src.org.apache.fop.svg:
  678. - svg handled with batik, supported in pdf, awt and ps
  679. - svg->pdf transcoder, PDFGraphics2D for drawing into pdf
  680. - (PDFDocumentGraphics2D) now supports size setting properly (KLiddle)
  681. - (PDFGraphics2D) fixes a line colouring problem (Liddle)
  682. - (PDFGraphics2D) better svg rendering; stroke style for lines (KLiddle)
  683. - (PDFGraphics2D) now supports size setting properly (KLiddle)
  684. - (SVG) Add viewBox support to svg element. (KLease)
  685. *** Package src.org.apache.fop.tools:
  686. - (TestConverter.java) fixes a problem relating to rendering options for xml
  687. renderer (KLiddle)
  688. test/Testing:
  689. - testing system, for use with the w3c defined testsuite.dtd including our
  690. tests (KLiddle)
  691. - added some simple test files with blocks (KLiddle)
  692. - also a script to create pdf from test suites (KLiddle)
  693. ==============================================================================
  694. Done since 0.17 release
  695. - added: improved Fop task for Ant, added basedir attribute [Will Holcomb]
  696. - added: Driver can be reset now [Art Welch]
  697. - added: CID Font support to svg text [Claud Yu]
  698. - added: renders svg to the awt viewer using batik [Keiron Liddle]
  699. - added: start on the PDFGraphics2D for rendering the batik svg to pdf [Keiron Liddle]
  700. - added: a text renderer [Art Welch]
  701. - added: PCL renderer [Art Welch]
  702. - added: a bunch more properties on svg elements [Keiron Liddle]
  703. - added: subset fonts embedding [Tore Engvig]
  704. - added: Dutch hyphenation file [Reinout Verkerk]
  705. - added: Fop is now self-contained (all necessary jar files included) and
  706. a runnable jar (can be started with java -jar fop.jar) [Kelly Campbell]
  707. - added: support for border and padding shorthand properties [Karen Lease]
  708. - added: use of property manager, new properties handling [Karen Lease]
  709. - added: support for region-start, region-end [Arved Sandstrom]
  710. - added: to migrate FOP to use the svg facilities from Batik in a special cvs branch [Keiron Liddle]
  711. - added: enabling CID keyed truetype fonts; this gives support
  712. for other encodings besides WinAnsiEncoding (eg japanese, chinese, arabic,
  713. iso-whatever, etc). Also makes font inclusion easier [Tore Engvig]
  714. - added: new font configuration [Fotis Jannidis]
  715. - added: support for body-start and label-end in lists [Peter S. Housel]
  716. - added: support for non-rotated arcs in svg [Keiron Liddle]
  717. - added: break before and break after for table rows [Keiron Liddle]
  718. - added: error is reported if the number of columns the cells are using is
  719. different to the number of columns in the table [Keiron Liddle]
  720. - updated: better handling of svg properties using xsl conversion to svgproperties [Keiron Liddle]
  721. - updated: the FOP build to fix the problems of the output location for the
  722. property code generation. updated ant.jar to version 1.3,
  723. added all needed jar files [Kelly Campbell]
  724. - changed: cleaned up renderWordArea. removed unused code.
  725. optimized object creation a little. [Kelly Campbell]
  726. - changed: refactored FontState so it doesn't do excessive font lookups per character [Kelly Campbell]
  727. - changed: Driver to make embedding Fop easier [Kelly Campbell]
  728. - changed: apps package and commandline usage of Fop [Fotis Jannidis]
  729. - changed: adding a PrintRenderer for all print oriented renderers [Art Welch]
  730. - fixed: problems if calculated leader-length < 0 [Fotis Jannidis]
  731. - fixed: fixes problem with page break after last row of table body [Keiron Liddle]
  732. - fixed: fixed svg placement bug, now puts the image at the correct offset [Keiron Liddle]
  733. - fixed: broken support of jdk 1.1 [Art Welch]
  734. - fixed: xalan 1 support works again, was broken after changes in apps [Kelly Campbell]
  735. - fixed: properly adjusts the max height of table parts, when a footnote is added
  736. table will not overlap with the footnote [Keiron Liddle]
  737. - fixed: hexadecimal escape sequences in dutch hyphenation file converted
  738. to iso-latin-1 [Carlos Villegas]
  739. - fixed: the typos in the fonts example in the userconfig.xml
  740. and optimized conversions to String in TTFReader and use of StringBuffer [Alain Fagot]
  741. - fixed: added border style to relevant border so that borders show up [Keiron Liddle]
  742. - fixed: put text-anchor in the correct place [Keiron Liddle]
  743. - fixed: InstreamForeignObject checks for no more room in block area [Keiron Liddle]
  744. - fixed: false border rendering for PCL renderer [Art Welch]
  745. - fixed: added default producer to fix a bug where the PDF producer is set to null in the default
  746. commandline usage. [Kelly Campbell]
  747. - fixed: Made logging go to the same stream (out) for pages and the newline after a page
  748. sequence. The newline was previously going to the err stream. [Kelly Campbell]
  749. Done since 0.16 release
  750. - added: a branch for a Fop version which supports Japanese text
  751. (not yet part of the main branch) [Satoshi Ishigami]
  752. - added support for text-anchor in svg:text, viewBox in svg:svg [Aaron Optimizer Digulla]
  753. - added: MIF Renderer [G. Seshadri]
  754. - added: vertical-align to text [Keiron Liddle]
  755. - added: support for PDF outlines (aka bookmarks). See the example in
  756. docs/examples/fo/pdfoutline.fo [Kelly Campbell]
  757. - added: some text rendering optimizations for PDF [Kelly Campbell]
  758. - added: limited support for fo:wrapper [Kelly Campbell]
  759. - added: support in pdfrenderer for using TrueType fonts, and embedding of TrueType
  760. and Type1 fonts, and support for kerning [Tore Engvig]
  761. - added: further support for complete font handling in pdf renderer [Alain Fagot]
  762. - added: support for fo:footnote, fo:footnote-body [Keiron Liddle]
  763. - added: support for values of property textdecoration ('overline','linethrough') [Christian Geisert]
  764. - added: support for font-variant="small-caps" [Eric Schaeffer]
  765. - added/changed: organization of build tools / classes + support for xalan 2 [Kelly Campbell]
  766. - added: italian hyphenation file [Stephane Bline)]
  767. - added: uml diagrams to online docs [Stuart Zakon]
  768. - added: a new faq for fop at http://www.owal.co.uk:8090/ [Alex McLintock]
  769. - refactoring org.apache.fop.layout [Keiron Liddle]
  770. - changed: XObject to use the stream default filter list [Kelly Campbell]
  771. - changed: placed svg inline first, part in moving towards proper inline areas [Keiron Liddle]
  772. - fixed: a problem with spaces before and after a body in table
  773. also properly sets the width of the table to the sum of the columns [Keiron Liddle]
  774. - fixed: handling of orphans, keep problem [Keiron Liddle]
  775. - fixed: handling of column heights properly [Keiron Liddle]
  776. - fixed: bails out if no rows in table body [Keiron Liddle]
  777. - fixed: list-block spanning a page problem [Keiron Liddle]
  778. - fixed: an off by one error in the end of stream encoding part of ASCII85Filter
  779. as reported by Alex Cherepanov [Kelly Campbell]
  780. - fixed: Clarified error reported for order of static-content, flow within a
  781. page-sequence to meet section 6.4.5 of the spec [Kelly Campbell]
  782. - fixed: leader didn't fill rest of line in table of contents [Fotis Jannidis]
  783. - fixed: throws a more useful error if non-row inside table body [Keiron Liddle]
  784. - fixed: duplicate ID bug for tables that flow over a page [Keiron Liddle]
  785. - fixed: empty flow bug [Kai Strackbein]
  786. - fixed: broken support of jdk 1.1 [Peter Housel]
  787. Done since 0.15 release
  788. - added: support for background color property, column breaks [Arved Sandstrom]
  789. - added: support for xalan 2 in xslt task [Kelly Campbell]
  790. - added: support for the properties table-omit-header-at-break,
  791. table-omit-footer-at-break, number-columns-spanned (partly), orphans, widows (only for tables) [Keiron Liddle]
  792. - added: support for multi-column and column spanning (column-count, column-gap, span)[Arved Sandstrom]
  793. - added: compression for pdf files, changed output format to OutputStream [Kelly Campbell]
  794. - added: improved handling of compound properties [Karen Lease]
  795. - added: fo:character and property 'character' [Fotis Jannidis]
  796. (limitation: not included into hyphenation, no Common Margin and Padding support)
  797. - added: vertical alignment for table cell contents [Keiron Liddle]
  798. - added: Finnish hyphenation patterns [Jarno Elovirta]
  799. - added: hyphenation package [Carlos Villegas], integration into Fop [Fotis Jannidis]
  800. - added: interim configuration package [Fotis Jannidis]
  801. - added: FopImage class that uses JAI [Eric Schaeffer] and JAI compile target [Kelly Campbell]
  802. - added: support for rule-style [Fotis Jannidis]
  803. - added: support for fo:table-header, fo:table-footer, and for the following properties
  804. in tables: keep-with-next, keep-with-previous [Keiron Liddle]
  805. - updated: svg stuff for the latest java bindings [Keiron Liddle]
  806. - fixed: enhanced error messages for page layout (region names, master) [Norm Walsh]
  807. - fixed: infinite looping bug when TableCell or TableRow is larger than a page [Hani Elabed]
  808. - fixed: corrected the size of the "-" char [Keiron Liddle]
  809. - fixed: check for unnecessary whitespace at end of line [Marcus Crafter]
  810. - fixed: moves table completely to next page if first row doesn't fit into last page [Keiron Liddle]
  811. - fixed: problem where id's where being setup twice for
  812. table row going over the page [Kelly Campbell]
  813. - fixed colspanning so that the cell state keeps track of the
  814. width so far properly [Keiron Liddle]
  815. - fix to allow JDK 1.1 users to compile and use FOP [Mikko Honkala, Art Welch]
  816. - fix: removing duplicate character mappings [Dharamveer Salecha]
  817. - fix: NullPointerException in FopImageFactory [Kelly Campbell]
  818. - fixed: space after's where not being removed if table row was being removed [Keiron Liddle]
  819. - fixed problem with keep-with not storing the correct rows [Keiron Liddle]
  820. - fixed: extra space after was left behind for rows going over a page [Keiron Liddle]
  821. Done since 0.14 release
  822. - added region-name support, refactoring of region, PageSequence,
  823. PageMasterReference, flow/static [Kelly Campbell, Arved Sandstrom]
  824. - added CommandLine/Driver -d option to output stack traces [Kelly Campbell, Arved Sandstrom]
  825. - added: a new package for image support and analysis [Pankaj Narula]
  826. - added better svg support (linear gradients, radial gradients, css style selectors,
  827. css colour names, patterns, path curves (except arcs), text tspan and tref, text whitespace
  828. handling, text outline and fill, switch, images (including external svg images)
  829. references in external svg documents, svg elements (below top element), symbol element) [Keiron Liddle]
  830. - added large test suite for svg [Keiron Liddle]
  831. - added support for property textdecoration (only value 'underline') [Christian Geisert]
  832. - added support for type 1 fonts [Jeremias Maerki,Alan Fagot]
  833. - added support for compile target jdk 1.1 only [Art Welch]
  834. - added support for partial borders in block, block-container,
  835. table-row, table-column and table-cell [Corinna Hischke]
  836. - redesign of properties handling, support for computed, compound and shorthand properties,
  837. supporting docs [Karen Lease]
  838. - redesign of font handling for AWTRenderer [Dorothea Wiarda]
  839. - added: support for leader-alignment, leader-pattern-width, leader-pattern (dots,space) [Fotis Jannidis]
  840. - fixed: unnecessary dependence on jdk 1.2 features [Christian Geisert]
  841. - fixed: unicode problem in UserMessage [Ross Golder]
  842. - fixed: broken buildFOTree [Marcus Holmberg]
  843. - fixed: problems with borders and padding in tables [Corinna Hischke]
  844. - fixed: XMLRenderer, unbalanced " in the produced output [Dorothea Wiarda]
  845. - fixed: renamed: inline-sequence -> inline, simple-link -> basic-link,
  846. white-space-treatment -> white-space-collapse [Fotis Jannidis]
  847. - fixed: images were rendered only half size (Mikko Honkala)
  848. - fixed: pdf file in XalanCommandFile explicitly closed [Dharamveer Salecha]
  849. - fixed: lists containing list do not keep their indentation correctly
  850. over a page boundary [Dorothea Wiarda]
  851. Done since 0.13 release
  852. - pagination updated to 03/27/2000 XSL WD [Arved Sandstrom]
  853. - added support for fo page-number-citation [Mike Crowe, Jordan Naftolin]
  854. - added support for 06/29/2000 SVG WD + W3C Java DOM bindings [Keiron Liddle]
  855. - added image support using Jimi [Eric Schaeffer]
  856. - added support for external and internal simple-links [Jordan Naftolin]
  857. - added support for the fonts Symbol and ZapfDingbats [Fotis Jannidis]
  858. - added a MessageHandler [Fotis Jannidis]
  859. - fixed table overflow bug [Jordan Naftolin]
  860. - finally fixed postscript printing of generated PDF [Domagoj Cosic]
  861. - removed XTCommandLine from build.xml
  862. - removed PDFOutputHandler from build.xml
  863. - added XalanCommandLine [Fotis Jannidis]
  864. - added: fo:instream-foreign-object [Keiron Liddle]
  865. - added: goto button in AWT viewer [Stanislav Gorkhover]
  866. - updated: AWT viewer now works again and supports - with some restrictions - the new SVG support [Stanislav Gorkhover]
  867. Done since 0.12.1 release
  868. - using Ant to build Fop instead of make [Giacomo Pati]
  869. - borders, padding and absolute positioning [Jon Smirl]
  870. 0.12.1 release
  871. to make the bug fix on XTCommandLine available to non developers
  872. basic support for padding-{top,left,bottom,right} on blocks.
  873. implemented simple-link (don't think it works, though)
  874. XTCommandLine now works again
  875. background color works on list-block
  876. list-blocks can now be in table-cell
  877. Done for 0.12.0 release:
  878. Make sure Makefiles work
  879. Switch to using Status object as return from layout()
  880. Incorporate Eric Schaeffer's fix to tables in static-content
  881. Incorporate Kelly Campell's fixes to GifJpegImage
  882. Incorporate Eric Schaeffer's background colour implementation
  883. (actually used different approach with background colour as trait)