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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687
  1. ==============================================================================
  2. Done since 0.20.2 release
  3. *** Tables
  4. - Implement the proportional-column-width() function in table-column and
  5. make it possible to specify table width (or inline-progression-dimension)
  6. using percentage values. (Karen Lease)
  7. - Fix a bug causing strange layout when a cell containing a nested table
  8. was laid out again because another cell in the same row was split (David
  9. Dixon's example). (Karen Lease)
  10. *** Datatypes
  11. - Rearrange the Length class hierarchy as part of the table-column proportional
  12. width work. (Karen Lease)
  13. *** Areas
  14. - Fix BlockArea to account for padding and border when calculating space
  15. remaining for content. (Karen Lease)
  16. *** Properties
  17. - Add support for inline-progression-dimension and table-layout. (Karen)
  18. ==============================================================================
  19. Done since 0.20 release
  20. *** General
  21. - immediate fix to PDFRenderer and LazyFont, leading up to 0.20.1
  22. - build.xml improvements (Weiqi Gao)
  23. ==============================================================================
  24. Done since 0.19 release
  25. *** General
  26. (Lots and lots of stuff by Keiron Liddle)
  27. - all properties are read, a message will indicate if it is not supported
  28. - all elements now handled, with a message for unsupported elements
  29. - uses Unknown element if namespace+element not found, rather than using
  30. FObjMixed
  31. - support for only loading user fonts for pdf when needed
  32. - fo:wrapper should support inheriting properties better
  33. - table row span, bunch of other significant table improvements by Karen Lease
  34. - support for drawing text into PDFGraphics2D
  35. - marker support (ASandstrom)
  36. - streaming pdf
  37. - changed rendering of alpha images for svg in pdf, now uses white
  38. background
  39. - proper device information for PDFGraphics2D rendering
  40. - code formatted (Tore Engvig)
  41. - element and property list mappings now added through single interface
  42. Mark Lillywhite's performance and memory patch added.
  43. Unfortunately breaks marker support.
  44. XSL-FO with markers is not a good idea until it is fixed.
  45. *** Building
  46. - (build.bat, build.sh) now uses only the local set class path (KLiddle)
  47. - (build.xml) added support for easily using w3c testsuite for build target
  48. test (KLiddle)
  49. *** Examples
  50. - (extensive.fo) sets style so that it looks better (KLiddle)
  51. - (images.fo) images are relative to where the doc is rather than an arbitrary
  52. location (KLiddle)
  53. - (glossary.xml, glossary.xsl) fo:marker examples (ASandstrom)
  54. - (embedding.fo, external.fo) added some more info, examples (KLiddle)
  55. - (headfoot.fo) Fix spanning row example so it works (KLease)
  56. *** Documentation
  57. - (embedding.xml) added info about using xslt input handler (KLiddle)
  58. - (examples.xml) some slightly more info about svg -> pdf (KLiddle)
  59. - (svg.xml) some slightly more info about svg -> pdf (KLiddle)
  60. - (testing.xml) added support for easily using w3c testsuite for build
  61. target test (KLiddle)
  62. *** Hyphenation
  63. - (sk.xml) added slovak hyphenation patterns; Obtained from: skhyphen.tex
  64. Submitted by: KRUMPOLEC Martin <krumpolec@asset.sk>
  65. *** FOP libraries
  66. - (buildtools.jar) added support for easily using w3c testsuite for build
  67. target test (KLiddle)
  68. *** XSL Code Generation
  69. - (elements.xsl) some independance improvements (KLiddle)
  70. - (foproperties.xml) setup a couple of props (KLiddle); activated
  71. space-start/space-end (ASandstrom)
  72. - (foproperties.xml) added all remaining properties, currently just with
  73. type String (KLiddle)
  74. - Support 'format' property on fo:page-sequence (ASandstrom)
  75. - (propmaker.xsl) put import at start; puts the right property family name
  76. in resulting prop file (KLiddle)
  77. *** Package org.apache.fop.apps:
  78. - (AWTStarter.java, CommandLineStarter.java, Driver.java) Adds Mark
  79. Lillywhite's performance
  80. and memory patch in all it's glory. Unfortunately breaks marker support.
  81. (AreaTree getNextPage and getPreviousPage return the current page)
  82. XSL-FO with markers is not a good idea until it is fixed.
  83. - (CommandLineOptions.java) command line support for new ps renderer
  84. Submitted by: Jeremias Maerki <jeremias.maerki@outline.ch>
  85. - (Driver.java) combined property list setting into element setting
  86. also always get parser class name from one place; allows adding mappings from
  87. user config (KLiddle)
  88. - (Driver.java) command line support for new ps renderer
  89. Submitted by: Jeremias Maerki <jeremias.maerki@outline.ch>
  90. - (Options.java) fixed error where configfile was not being set (KLiddle)
  91. - (Options.java) Added patch for loading config via Thread ContextClassLoader
  92. Submitted by: Davanum Srinivas
  93. - (StreamRenderer.java) This just moves the marker supporting code from before
  94. Mark's patch into StreamRenderer. Not tested. (SCoffman)
  95. *** Package org.apache.fop.configuration:
  96. - (Configuration.java) combined property list setting into element setting
  97. also always get parser class name from one place (KLiddle)
  98. - (ConfigurationReader.java) combined property list setting into element
  99. setting; also always get parser class name from one place (KLiddle)
  100. *** Package org.apache.fop.datatypes:
  101. - (ToBeImplemented.java) indicates to be implemented status for
  102. properties not implemented (KLiddle)
  103. - (ToBeImplementedProperty.java) indicates to be implemented status for
  104. properties no implemented (KLiddle)
  105. *** Package org.apache.fop.extensions:
  106. - (ExtensionElementMapping.java) combined property list setting into element
  107. setting; also always get parser class name from one place (KLiddle)
  108. *** Package org.apache.fop.fo:
  109. started support to read all relevant properties, mostly commented; added all
  110. remaining elements, currently are indicated as not implemented; removed old
  111. elements (KLiddle)
  112. - (ElementMapping.java) combined property list setting into element setting
  113. also always get parser class name from one place (KLiddle)
  114. - (FONode.java) initial marker support (ASandstrom)
  115. - (FOTreeBuilder.java) gets all properties specified on each element; adds
  116. "Unknown" element for unknown elements or other namespaces; need to get a
  117. consistent and easy way to use the property values (KLiddle)
  118. - (FOTreeBuilder.java) Added patch to allow FOTreeBuilder to be reused easier
  119. Submitted by: Christopher Burkey
  120. - (FObj.java) initial marker support (ASandstrom)
  121. - (PropertyManager.java) handles page break for nested blocks now (KLiddle);
  122. addressing break boundary conditions (ASandstrom)
  123. *** Package org.apache.fop.fo.flow:
  124. Table border placement and border-drawing improvements (PDF only)
  125. Added support for the "height" property on table-row and for display-align
  126. (except "auto") on table-cell.
  127. Partial support for the "collapse" style of cell-borders was contributed
  128. by Ivan Demakov (Jun 14, maybe that was already in 0.19?). The support
  129. for "height" on table-cell was also contributed by Ivan.
  130. - (Block.java) changed Area methods slightly (ASandstrom); initial marker
  131. support, addressing break boundary conditions (ASandstrom)
  132. - (ListBlock.java, ListItem.java, ListItemBody.java, ListItemLabel.java)
  133. added support for 'returned-by' (ASandstrom)
  134. - (Marker.java) initial marker support (ASandstrom)
  135. - (PageNumber.java) Supports page-number formatting (ASandstrom)
  136. - (RetrieveMarker.java) initial marker support (ASandstrom)
  137. - (RowSpanMgr.java) Helper class for spanning rows (KLease)
  138. - (Table.java) Fix some bugs in table and cell border drawing and cell
  139. width calculations (KLease)
  140. - (TableBody.java) Implements spanning table rows (KLease)
  141. - (TableCell.java) Use a copy of BorderAndPadding to fix alignment bugs
  142. in header/footer cells (KLease); Fix some bugs in table and cell border drawing
  143. and cell width calculations (KLease); Make display-align work on table-cell
  144. (KLease) Implements spanning table rows (KLease)
  145. - (TableColumn.java) Fix some bugs in table and cell border drawing and
  146. cell width calculations (KLease)
  147. - (TableRow.java) Make display-align work on table-cell (KLease);
  148. checkBreakBefore signature (Weiqi Gao); Fix spanning bug; use height property
  149. (KLease) Implements spanning table rows (KLease)
  150. *** Package org.apache.fop.fo.pagination:
  151. - (PageNumberGenerator.java) helper class for page-number formatting
  152. (ASandstrom)
  153. - (PageSequence.java) initial marker support; support 'force-page-count';
  154. Supports page-number formatting (ASandstrom); should handle page number
  155. properly, with threads and multiple page sequences
  156. Submitted by: Jeremias Maerki <jeremias.maerki@outline.ch>
  157. - (RepeatablePageMasterAlternatives.java) restore ability to do blank pages
  158. (ASandstrom)
  159. - (Root.java) initial marker support; support 'force-page-count' (ASandstrom)
  160. ; should handle page number properly, with threads and multiple page sequences
  161. Submitted by: Jeremias Maerki <jeremias.maerki@outline.ch>
  162. *** Package org.apache.fop.fonts:
  163. - (Glyphs.java) Fixes for unicode escapes that were removed during code
  164. formatting (Sasaki Suguru [s-sasaki@hkg.odn.ne.jp])
  165. - (TTFFile.java) Some glyphs are missed when more then one glyph maps to the
  166. same data, now fixed. (SASAKI Suguru [s-sasaki@hkg.odn.ne.jp])
  167. *** Package org.apache.fop.image:
  168. - (FopImageFactory.java) changed to correct mime type
  169. catch error if batik not available (KLiddle); compiles on jdk1.1;
  170. fixes possible npe when no protocol specified; tries to get the reference from
  171. baseDir + ref path (KLiddle)
  172. - (SVGReader.java) changed to correct mime type; catch error if batik not
  173. available (KLiddle)
  174. *** Package org.apache.fop.layout:
  175. - (AbsolutePositionProps.java, AccessibilityProps.java) adds the remaining
  176. property groups (KLiddle)
  177. - (Area.java) changed Area methods slightly; improving area information; initial
  178. marker support; addressing break boundary conditions (ASandstrom)
  179. - (AreaContainer.java) improving area information (ASandstrom)
  180. - (AuralProps.java, BackgroundProps.java) adds the remaining property groups
  181. (KLiddle)
  182. - (BlockArea.java) Fix a bug which caused FOP to overestimate the space
  183. available for the first line of a Block (KLease)
  184. - (BorderAndPadding.java) Add clone method (KLease); Make display-align work
  185. on table-cell (KLease)
  186. - (FontInfo.java) updates to pdf text painter (KLiddle)
  187. - (LineArea.java) Fixes bug that causes character - glyph mapping to occur
  188. twice in getWordWidth method causing overlapping areas.
  189. (Struan Judd [struan@sjudd.com])
  190. - (LineArea.java) Fixes for unicode escapes that were removed during code
  191. formatting (Sasaki Suguru [s-sasaki@hkg.odn.ne.jp])
  192. - (LineArea.java) Added support for various spaces, inluding non-breaking space
  193. (fixes bug no 2297) (TEngvig)
  194. Added support for line breaking in the middle of words for CJK languages
  195. Fixes for bug 2243 based on a patch from rainer.garus@nexgo.de
  196. - (LineArea.java) This fixes bug 2556 by changing the leader with pattern
  197. "space" to use an InlineSpace instead of adding actually spaces. (TEngvig)
  198. - (MarginInlineProps.java) adds the remaining property groups (KLiddle)
  199. - (Page.java) initial marker support; page-number formatting (ASandstrom)
  200. - (RelativePositionProps.java) adds the remaining property groups (KLiddle)
  201. *** Package org.apache.fop.layout.hyphenation:
  202. - (Hyphenator.java) Added patch for loading config via Thread ContextClassLoader
  203. (Davanum Srinivas)
  204. - (TernaryTree.java) Fixes for unicode escapes that were removed during code
  205. formatting (Sasaki Suguru [s-sasaki@hkg.odn.ne.jp])
  206. *** Package org.apache.fop.layout.inline:
  207. - (InlineSpace.java) Added support for various spaces, including non-breaking
  208. space (fixes bug no 2297); Added support for line breaking in the middle of
  209. words for CJK languages (TEngvig)
  210. Fixes for bug 2243 based on a patch from rainer.garus@nexgo.de
  211. *** Package org.apache.fop.pdf:
  212. - (PDFColor.java) changed PDFNumber to use static methods (Liddle)
  213. - (PDFDocument.java) adds support for lazy loading of fonts; saves some cpu,
  214. memory (SASAKI Suguru <s-sasaki@hkg.odn.ne.jp>)
  215. - (PDFOutline.java) Adds support for unicode characters in bookmarks.
  216. (SASAKI Suguru [s-sasaki@hkg.odn.ne.jp])
  217. *** Package org.apache.fop.render:
  218. - (PrintRenderer.java) Add new addFilledRect method to make it possible to
  219. draw filled rectangles without any stroke in PDF; in doFrame, use rectangles
  220. instead of lines for borders to eliminate pixel errors (KLease)
  221. - (awt.AWTRenderer.java) updated to new batik interface (KLiddle)
  222. improvements to AWTRenderer (borders,backgrounds...)
  223. (Ralph LaChance/Andy Langowitz):
  224. [ AWTRenderers (-awt and -print options)
  225. - eliminated 3D-effect in rendering background color
  226. - borders now draw wider than 1 pixel if appropriate
  227. - fixed a roundoff error in background and border dimension/location
  228. - fixed a positioning error on Top and Right borders ]
  229. - (pdf.FontSetup.java) adds support for lazy loading of fonts
  230. saves some cpu, memory (SASAKI Suguru <s-sasaki@hkg.odn.ne.jp>)
  231. - (pdf/PDFRenderer.java) adds support for lazy loading of fonts
  232. saves some cpu, memory (SASAKI Suguru <s-sasaki@hkg.odn.ne.jp>)
  233. - (pdf/PDFRenderer.java) updated to new batik interface (KLiddle)
  234. - (pdf/PDFRenderer.java) added the start of svg linking; also improved a few
  235. text things (KLiddle)
  236. - (pdf/PDFRenderer.java) Add new addFilledRect method to make it possible to
  237. draw filled rectangles without any stroke in PDF; in doFrame, use rectangles
  238. instead of lines for borders to eliminate pixel errors (KLease)
  239. - (pdf/PDFRenderer.java) added initial impl of text painter that uses pdf fonts
  240. rather than stroking (KLiddle)
  241. - (pdf/PDFRenderer.java) workaround for a bug in Acrobat Reader where text
  242. may disappear or be placed in the wrong position (KLiddle)
  243. - (pdf.fonts.LazyFont.java) adds support for lazy loading of fonts
  244. saves some cpu, memory (SASAKI Suguru <s-sasaki@hkg.odn.ne.jp>)
  245. *** Package org.apache.fop.render.ps:
  246. New addition: postscript renderer
  247. Submitted by: Jeremias Maerki <jeremias.maerki@outline.ch>
  248. - (PSGraphics2D.java, PSRenderer.java) added support for rendering SVG
  249. graphics to ps, not fully functional (KLiddle)
  250. *** Package org.apache.fop.svg:
  251. - (PDFDocumentGraphics2D.java) fixes PDFDoc to work with changed interface;
  252. added the start of svg linking; should handle colour space a bit better;
  253. writes fonts to resources in PDFDocument; sets up the font state if not using
  254. strokes for text (KLiddle)
  255. - (PDFGraphics2D.java) Handles the graphics device better. (Kliddle)
  256. Also handles the alpha transparency better, at least for white backgrounds
  257. it works properly (Thomas E Deweese <thomas.deweese@kodak.com>)
  258. - (PDFGraphics2D.java) should handle colour space a bit better;
  259. writes fonts to resources in PDFDocument; added initial impl of text painter
  260. that uses pdf fonts rather than stroking (KLiddle)
  261. - (PDFTextPainter.java) should handle colour space a bit better; writes fonts
  262. to resources in PDFDocument; added initial impl of text painter that uses pdf
  263. fonts rather than stroking (KLiddle)
  264. - (PDFTranscoder.java) updated to new batik interface (KLiddle); added the
  265. start of svg linking; gets the xml parser class name properly (KLiddle)
  266. - (SVGElement.java) sets the context url properly (with baseDir)
  267. - (SVGObj.java, XMLObj.java) allows better for other xml data (KLiddle)
  268. - (SVGUtilities.java) a utility file for creating some svg things (Kliddle)
  269. *** Testing and Support
  270. - (tools.anttasks.Fop.java) handles baseDir (with a capital D) properly as
  271. suggested by Anthony Tagunov <atagunov@nnt.ru> (KLiddle)
  272. - (tools.anttasks.RunTest.java) added support for easily using w3c testsuite
  273. for build target test (KLiddle)
  274. ==============================================================================
  275. Done since 0.18 release
  276. *** Building
  277. - improvements and fixes to build.xml (ASandstrom,KCampbell)
  278. *** General
  279. - Changes to support Batik (KLiddle)
  280. { FOP now uses Batik to render svg
  281. This is handled for awt - using batik to render to a graphic
  282. and pdf.
  283. Pdf still requires better image support.
  284. The elements and properties are generated from the svgelements.xml
  285. document.
  286. The version of batik is 17/05/2001 cvs. }
  287. - memory buffering (Seshadri G.K.)
  288. *** Examples
  289. - Added Norwegian hyphenation based on Rune Kleveland's original
  290. nohyphb.tex TeX patterns from the ispell-norsk-2.0 package (TEngvig)
  291. adds Danish text (Lars Michael Johnsen)
  292. - fixed up fills and borders for better appearance (KLiddle)
  293. - Fixed basic-link horizontal position with justification turned on. (KCampbell)
  294. - add border-collapse property (KLease)
  295. - Added CID Font example (KCampbell)
  296. *** Hyphenation
  297. - corrected danish hyphenation (Carlos Villegas)
  298. - adds Danish hyphenation file (Carlos Villegas)
  299. - Added Norwegian hyphenation based on Rune Kleveland's original
  300. nohyphb.tex TeX patterns from the ispell-norsk-2.0 package (TEngvig)
  301. - Hyphenation patterns for russian (TEngvig)
  302. *** codegen
  303. - The elements and properties are generated from the svgelements.xml
  304. document. (KLiddle)
  305. *** Package org.apache.fop.apps:
  306. - support for XMLRenderer (ASandstrom)
  307. - Removed uses of System.out where throwing a FOPException should suffice.
  308. Refactored code to throw FOPExceptions so embedding FOP wont' cause app
  309. server JVMs to exit. (KCampbell)
  310. - adding -text and -pcl options to help text (FJannidis)
  311. - sets baseDir to a URL string rather than a file path string (KLiddle)
  312. *** Package org.apache.fop.datatypes:
  313. - New datatype to represent the property border-separation (KLease)
  314. *** Package org.apache.fop.fo:
  315. - fixed a couple of problems when placing foreign objects near
  316. page break (KLiddle)
  317. - Support for LengthPair property type (KLease)
  318. - restored support for external svg images (KLiddle)
  319. *** Package org.apache.fop.fo.flow:
  320. - inlining of images (ASandstrom, Seshadri G.K.)
  321. - footnote height problem fix (KLiddle)
  322. - fixed a couple of problems when placing foreign objects near
  323. page break (KLiddle)
  324. - added support for 'number-columns-repeated' (G. Pretterhofer)
  325. - fixes a null pointer ex if area is removed before creating area (KLiddle)
  326. - footnote height/id reference problem fixes (KLiddle)
  327. - Fix body positioning; remove widow and orphan handling for rows (KLease)
  328. - Make borders closer to CR spec (KLease)
  329. - Improves cell borders when border-collapse=collapse (the default). Note that
  330. this doesn't implement the full CR, but it's a big improvement and will handle
  331. many common cases. (KLease)
  332. - Stop tables from breaking too early, but make sure that all cells are
  333. composed with the same maxHeight and that absolute Height is set correctly.
  334. In TableRow.java, remove old commented out stuff and put back space-before
  335. (for now) and fix a potential bug involving space-before. (KLease)
  336. - Overflows may cause a row to be re-laid out, need to skip cell content
  337. that has already been processed. (AWelch)
  338. - Put back background on table-column and table-cell (KLease)
  339. - increasing padding problem fix (KLiddle)
  340. - Each column in the row should start with the same height available. (AWelch)
  341. - For borders to be drawn properly on overflowed rows must process all
  342. children. (AWelch)
  343. - Use Constants values. (KLease)
  344. *** Package org.apache.fop.fo.pagination:
  345. - running page num ctr now instance variable for servlet use (KLiddle)
  346. - Made logging go to the same stream (out) for pages and the newline
  347. after a page sequence. The newline was previously going to the err stream.
  348. (KCampbell)
  349. *** Package org.apache.fop.fonts:
  350. - Patch from westbay@seaple.icc.ne.jp to use unicode escape char instead of
  351. pound sign because it was interpreted as an invalid double byte char in
  352. Japanese locale (ja_JP.EUC) and wouldn't compile. (TEngvig)
  353. - Fixes a signedness bug in handling cmaps that caused some fonts to be
  354. invalid. (TEngvig)
  355. - Some fonts contains malformed composite glyphs which used to make fop crash.
  356. This adds an errormessage and tries to embed the font without the composite
  357. glyph. (TEngvig)
  358. - Made some tables in the TTF embedding optional to be compatible with more
  359. fonts. This adheres to the TrueType spec, and makes the MS OpenType
  360. extras optional. (KCampbell)
  361. - Bugfix for font headers with long datatype (KCampbell)
  362. *** Package org.apache.fop.fonts.apps:
  363. - Fixes NumberFormatExceptions when reading .pfm files with kerning values.
  364. (TEngvig)
  365. *** Package org.apache.fop.image[.analyser]:
  366. - now passes in url string to the analyser; some readers may need the url
  367. eg. svg document creator (KLiddle)
  368. - inlining of images (ASandstrom, Seshadri G.K.)
  369. - restored support for external svg images (KLiddle)
  370. - gives SVGReader the correct size (KLiddle)
  371. *** Package org.apache.fop.layout:
  372. - Fix table breaking bug (KLease)
  373. - (AreaContainer) Remove offset of X and Y position by border and
  374. padding (KLease)
  375. - (FontInfo, FontState) Refactored FontState so it doesn't do excessive font
  376. lookups per character. (KCampbell)
  377. - (LineArea) Moved mapping from character to cid from LineArea to PDFRenderer.
  378. This fixes bug no 1681 and other issues with wrong characters being displayed
  379. when using CID fonts. (TEngvig)
  380. - (LineArea) vertical align amount modified (KLiddle)
  381. - (LineArea) Fixes hyphenation for CID fonts (TEngvig)
  382. - (basic-link) Fixed basic-link horizontal position with justification
  383. turned on. (KCampbell)
  384. *** Package org.apache.fop.layout.hyphenation:
  385. - Fixed an array out of bounds that caused some combinations of word/pattern
  386. to crash (TEngvig)
  387. *** Package org.apache.fop.layout.inline:
  388. - Fixed basic-link horizontal position with justification turned on. (Campbell)
  389. *** Package org.apache.fop.pdf:
  390. - Changed encoding of CID fonts from customized CMap to predefined Identity-H
  391. encoding. (TEngvig)
  392. - Fixed some bugs in PDF rendering when font embedding fails.
  393. FontDescriptor is now written out anyway to produce a valid PDF
  394. and acrobat reports that the font can't be displayed. (KCampbell)
  395. - Added default producer to fix a bug where the PDF producer is
  396. set to null in the default commandline usage. (KCampbell)
  397. - (PrintRenderer) Correct border positions on absolutely positioned
  398. AreaContainers (fo:block-container) (KLease)
  399. *** Package org.apache.fop.render[.*]:
  400. - ps renderer (JMaerki)
  401. - improved support for XMLRenderer (ASandstrom)
  402. - fixes for -print option (DBradby)
  403. - restored support for external svg images (KLiddle)
  404. - Moved mapping from character to cid from LineArea to PDFRenderer. This
  405. fixes bug no 1681 and other issues with wrong characters being displayed when
  406. using CID fonts. (TEngvig)
  407. - Fix for color carrying over page breaks (ASandstrom)
  408. - Cleaned up renderWordArea. removed unused code. optimized object creation
  409. a little. (KCampbell)
  410. - Fix disappearing text when using text-anchor != start (KLease)
  411. - Fix for using embedded TrueType fonts in SVG. This fix adds the use of
  412. FontState.mapChar to ensure that glyphs used in the SVG document are included
  413. in the embedded font. (TEngvig)
  414. - Fixed some bugs in PDF rendering when font embedding fails.
  415. FontDescriptor is now written out anyway to produce a valid PDF
  416. and acrobat reports that the font can't be displayed. (KCampbell)
  417. *** Package src.org.apache.fop.svg:
  418. - svg handled with batik, supported in pdf, awt and ps
  419. - svg->pdf transcoder, PDFGraphics2D for drawing into pdf
  420. - (PDFDocumentGraphics2D) now supports size setting properly (KLiddle)
  421. - (PDFGraphics2D) fixes a line colouring problem (Liddle)
  422. - (PDFGraphics2D) better svg rendering; stroke style for lines (KLiddle)
  423. - (PDFGraphics2D) now supports size setting properly (KLiddle)
  424. - (SVG) Add viewBox support to svg element. (KLease)
  425. *** Package src.org.apache.fop.tools:
  426. - (TestConverter.java) fixes a problem relating to rendering options for xml
  427. renderer (KLiddle)
  428. test/Testing:
  429. - testing system, for use with the w3c defined testsuite.dtd including our
  430. tests (KLiddle)
  431. - added some simple test files with blocks (KLiddle)
  432. - also a script to create pdf from test suites (KLiddle)
  433. ==============================================================================
  434. Done since 0.17 release
  435. - added: improved Fop task for Ant, added basedir attribute [Will Holcomb]
  436. - added: Driver can be reset now [Art Welch]
  437. - added: CID Font support to svg text [Claud Yu]
  438. - added: renders svg to the awt viewer using batik [Keiron Liddle]
  439. - added: start on the PDFGraphics2D for rendering the batik svg to pdf [Keiron Liddle]
  440. - added: a text renderer [Art Welch]
  441. - added: PCL renderer [Art Welch]
  442. - added: a bunch more properties on svg elements [Keiron Liddle]
  443. - added: subset fonts embedding [Tore Engvig]
  444. - added: Dutch hyphenation file [Reinout Verkerk]
  445. - added: Fop is now self-contained (all necessary jar files included) and
  446. a runnable jar (can be started with java -jar fop.jar) [Kelly Campbell]
  447. - added: support for border and padding shorthand properties [Karen Lease]
  448. - added: use of property manager, new properties handling [Karen Lease]
  449. - added: support for region-start, region-end [Arved Sandstrom]
  450. - added: to migrate FOP to use the svg facilities from Batik in a special cvs branch [Keiron Liddle]
  451. - added: enabling CID keyed truetype fonts; this gives support
  452. for other encodings besides WinAnsiEncoding (eg japanese, chinese, arabic,
  453. iso-whatever, etc). Also makes font inclusion easier [Tore Engvig]
  454. - added: new font configuration [Fotis Jannidis]
  455. - added: support for body-start and label-end in lists [Peter S. Housel]
  456. - added: support for non-rotated arcs in svg [Keiron Liddle]
  457. - added: break before and break after for table rows [Keiron Liddle]
  458. - added: error is reported if the number of columns the cells are using is
  459. different to the number of columns in the table [Keiron Liddle]
  460. - updated: better handling of svg properties using xsl conversion to svgproperties [Keiron Liddle]
  461. - updated: the FOP build to fix the problems of the output location for the
  462. property code generation. updated ant.jar to version 1.3,
  463. added all needed jar files [Kelly Campbell]
  464. - changed: cleaned up renderWordArea. removed unused code.
  465. optimized object creation a little. [Kelly Campbell]
  466. - changed: refactored FontState so it doesn't do excessive font lookups per character [Kelly Campbell]
  467. - changed: Driver to make embedding Fop easier [Kelly Campbell]
  468. - changed: apps package and commandline usage of Fop [Fotis Jannidis]
  469. - changed: adding a PrintRenderer for all print oriented renderers [Art Welch]
  470. - fixed: problems if calculated leader-length < 0 [Fotis Jannidis]
  471. - fixed: fixes problem with page break after last row of table body [Keiron Liddle]
  472. - fixed: fixed svg placement bug, now puts the image at the correct offset [Keiron Liddle]
  473. - fixed: broken support of jdk 1.1 [Art Welch]
  474. - fixed: xalan 1 support works again, was broken after changes in apps [Kelly Campbell]
  475. - fixed: properly adjusts the max height of table parts, when a footnote is added
  476. table will not overlap with the footnote [Keiron Liddle]
  477. - fixed: hexadecimal escape sequences in dutch hyphenation file converted
  478. to iso-latin-1 [Carlos Villegas]
  479. - fixed: the typos in the fonts example in the userconfig.xml
  480. and optimized conversions to String in TTFReader and use of StringBuffer [Alain Fagot]
  481. - fixed: added border style to relevant border so that borders show up [Keiron Liddle]
  482. - fixed: put text-anchor in the correct place [Keiron Liddle]
  483. - fixed: InstreamForeignObject checks for no more room in block area [Keiron Liddle]
  484. - fixed: false border rendering for PCL renderer [Art Welch]
  485. - fixed: added default producer to fix a bug where the PDF producer is set to null in the default
  486. commandline usage. [Kelly Campbell]
  487. - fixed: Made logging go to the same stream (out) for pages and the newline after a page
  488. sequence. The newline was previously going to the err stream. [Kelly Campbell]
  489. Done since 0.16 release
  490. - added: a branch for a Fop version which supports Japanese text
  491. (not yet part of the main branch) [Satoshi Ishigami]
  492. - added support for text-anchor in svg:text, viewBox in svg:svg [Aaron Optimizer Digulla]
  493. - added: MIF Renderer [G. Seshadri]
  494. - added: vertical-align to text [Keiron Liddle]
  495. - added: support for PDF outlines (aka bookmarks). See the example in
  496. docs/examples/fo/pdfoutline.fo [Kelly Campbell]
  497. - added: some text rendering optimizations for PDF [Kelly Campbell]
  498. - added: limited support for fo:wrapper [Kelly Campbell]
  499. - added: support in pdfrenderer for using TrueType fonts, and embedding of TrueType
  500. and Type1 fonts, and support for kerning [Tore Engvig]
  501. - added: further support for complete font handling in pdf renderer [Alain Fagot]
  502. - added: support for fo:footnote, fo:footnote-body [Keiron Liddle]
  503. - added: support for values of property textdecoration ('overline','linethrough') [Christian Geisert]
  504. - added: support for font-variant="small-caps" [Eric Schaeffer]
  505. - added/changed: organization of build tools / classes + support for xalan 2 [Kelly Campbell]
  506. - added: italian hyphenation file [Stephane Bline)]
  507. - added: uml diagrams to online docs [Stuart Zakon]
  508. - added: a new faq for fop at http://www.owal.co.uk:8090/ [Alex McLintock]
  509. - refactoring org.apache.fop.layout [Keiron Liddle]
  510. - changed: XObject to use the stream default filter list [Kelly Campbell]
  511. - changed: placed svg inline first, part in moving towards proper inline areas [Keiron Liddle]
  512. - fixed: a problem with spaces before and after a body in table
  513. also properly sets the width of the table to the sum of the columns [Keiron Liddle]
  514. - fixed: handling of orphans, keep problem [Keiron Liddle]
  515. - fixed: handling of column heights properly [Keiron Liddle]
  516. - fixed: bails out if no rows in table body [Keiron Liddle]
  517. - fixed: list-block spanning a page problem [Keiron Liddle]
  518. - fixed: an off by one error in the end of stream encoding part of ASCII85Filter
  519. as reported by Alex Cherepanov [Kelly Campbell]
  520. - fixed: Clarified error reported for order of static-content, flow within a
  521. page-sequence to meet section 6.4.5 of the spec [Kelly Campbell]
  522. - fixed: leader didn't fill rest of line in table of contents [Fotis Jannidis]
  523. - fixed: throws a more useful error if non-row inside table body [Keiron Liddle]
  524. - fixed: duplicate ID bug for tables that flow over a page [Keiron Liddle]
  525. - fixed: empty flow bug [Kai Strackbein]
  526. - fixed: broken support of jdk 1.1 [Peter Housel]
  527. Done since 0.15 release
  528. - added: support for background color property, column breaks [Arved Sandstrom]
  529. - added: support for xalan 2 in xslt task [Kelly Campbell]
  530. - added: support for the properties table-omit-header-at-break,
  531. table-omit-footer-at-break, number-columns-spanned (partly), orphans, widows (only for tables) [Keiron Liddle]
  532. - added: support for multi-column and column spanning (column-count, column-gap, span)[Arved Sandstrom]
  533. - added: compression for pdf files, changed output format to OutputStream [Kelly Campbell]
  534. - added: improved handling of compound properties [Karen Lease]
  535. - added: fo:character and property 'character' [Fotis Jannidis]
  536. (limitation: not included into hyphenation, no Common Margin and Padding support)
  537. - added: vertical alignment for table cell contents [Keiron Liddle]
  538. - added: Finnish hyphenation patterns [Jarno Elovirta]
  539. - added: hyphenation package [Carlos Villegas], integration into Fop [Fotis Jannidis]
  540. - added: interim configuration package [Fotis Jannidis]
  541. - added: FopImage class that uses JAI [Eric Schaeffer] and JAI compile target [Kelly Campbell]
  542. - added: support for rule-style [Fotis Jannidis]
  543. - added: support for fo:table-header, fo:table-footer, and for the following properties
  544. in tables: keep-with-next, keep-with-previous [Keiron Liddle]
  545. - updated: svg stuff for the latest java bindings [Keiron Liddle]
  546. - fixed: enhanced error messages for page layout (region names, master) [Norm Walsh]
  547. - fixed: infinite looping bug when TableCell or TableRow is larger than a page [Hani Elabed]
  548. - fixed: corrected the size of the "-" char [Keiron Liddle]
  549. - fixed: check for unnecessary whitespace at end of line [Marcus Crafter]
  550. - fixed: moves table completely to next page if first row doesn't fit into last page [Keiron Liddle]
  551. - fixed: problem where id's where being setup twice for
  552. table row going over the page [Kelly Campbell]
  553. - fixed colspanning so that the cell state keeps track of the
  554. width so far properly [Keiron Liddle]
  555. - fix to allow JDK 1.1 users to compile and use FOP [Mikko Honkala, Art Welch]
  556. - fix: removing duplicate character mappings [Dharamveer Salecha]
  557. - fix: NullPointerException in FopImageFactory [Kelly Campbell]
  558. - fixed: space after's where not being removed if table row was being removed [Keiron Liddle]
  559. - fixed problem with keep-with not storing the correct rows [Keiron Liddle]
  560. - fixed: extra space after was left behind for rows going over a page [Keiron Liddle]
  561. Done since 0.14 release
  562. - added region-name support, refactoring of region, PageSequence,
  563. PageMasterReference, flow/static [Kelly Campbell, Arved Sandstrom]
  564. - added CommandLine/Driver -d option to output stack traces [Kelly Campbell, Arved Sandstrom]
  565. - added: a new package for image support and analysis [Pankaj Narula]
  566. - added better svg support (linear gradients, radial gradients, css style selectors,
  567. css colour names, patterns, path curves (except arcs), text tspan and tref, text whitespace
  568. handling, text outline and fill, switch, images (including external svg images)
  569. references in external svg documents, svg elements (below top element), symbol element) [Keiron Liddle]
  570. - added large test suite for svg [Keiron Liddle]
  571. - added support for property textdecoration (only value 'underline') [Christian Geisert]
  572. - added support for type 1 fonts [Jeremias Maerki,Alan Fagot]
  573. - added support for compile target jdk 1.1 only [Art Welch]
  574. - added support for partial borders in block, block-container,
  575. table-row, table-column and table-cell [Corinna Hischke]
  576. - redesign of properties handling, support for computed, compound and shorthand properties,
  577. supporting docs [Karen Lease]
  578. - redesign of font handling for AWTRenderer [Dorothea Wiarda]
  579. - added: support for leader-alignment, leader-pattern-width, leader-pattern (dots,space) [Fotis Jannidis]
  580. - fixed: unnecessary dependence on jdk 1.2 features [Christian Geisert]
  581. - fixed: unicode problem in UserMessage [Ross Golder]
  582. - fixed: broken buildFOTree [Marcus Holmberg]
  583. - fixed: problems with borders and padding in tables [Corinna Hischke]
  584. - fixed: XMLRenderer, unbalanced " in the produced output [Dorothea Wiarda]
  585. - fixed: renamed: inline-sequence -> inline, simple-link -> basic-link,
  586. white-space-treatment -> white-space-collapse [Fotis Jannidis]
  587. - fixed: images were rendered only half size (Mikko Honkala)
  588. - fixed: pdf file in XalanCommandFile explicitly closed [Dharamveer Salecha]
  589. - fixed: lists containing list do not keep their indentation correctly
  590. over a page boundary [Dorothea Wiarda]
  591. Done since 0.13 release
  592. - pagination updated to 03/27/2000 XSL WD [Arved Sandstrom]
  593. - added support for fo page-number-citation [Mike Crowe, Jordan Naftolin]
  594. - added support for 06/29/2000 SVG WD + W3C Java DOM bindings [Keiron Liddle]
  595. - added image support using Jimi [Eric Schaeffer]
  596. - added support for external and internal simple-links [Jordan Naftolin]
  597. - added support for the fonts Symbol and ZapfDingbats [Fotis Jannidis]
  598. - added a MessageHandler [Fotis Jannidis]
  599. - fixed table overflow bug [Jordan Naftolin]
  600. - finally fixed postscript printing of generated PDF [Domagoj Cosic]
  601. - removed XTCommandLine from build.xml
  602. - removed PDFOutputHandler from build.xml
  603. - added XalanCommandLine [Fotis Jannidis]
  604. - added: fo:instream-foreign-object [Keiron Liddle]
  605. - added: goto button in AWT viewer [Stanislav Gorkhover]
  606. - updated: AWT viewer now works again and supports - with some restrictions - the new SVG support [Stanislav Gorkhover]
  607. Done since 0.12.1 release
  608. - using Ant to build Fop instead of make [Giacomo Pati]
  609. - borders, padding and absolute positioning [Jon Smirl]
  610. 0.12.1 release
  611. to make the bug fix on XTCommandLine available to non developers
  612. basic support for padding-{top,left,bottom,right} on blocks.
  613. implemented simple-link (don't think it works, though)
  614. XTCommandLine now works again
  615. background color works on list-block
  616. list-blocks can now be in table-cell
  617. Done for 0.12.0 release:
  618. Make sure Makefiles work
  619. Switch to using Status object as return from layout()
  620. Incorporate Eric Schaeffer's fix to tables in static-content
  621. Incorporate Kelly Campell's fixes to GifJpegImage
  622. Incorporate Eric Schaeffer's background colour implementation
  623. (actually used different approach with background colour as trait)