aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | FAQ entry for anti-aliasing artifacts in Adobe Acrobat.Jeremias Maerki2011-01-243-0/+97
| | | | | | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1062710 13f79535-47bb-0310-9956-ffa450edef68
| * | | | Make HashMaps type safe + remove corresponding redundant casts and ↵Andreas L. Delmelle2011-01-221-14/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unnecessary (un)boxing git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1062241 13f79535-47bb-0310-9956-ffa450edef68
| * | | | Minor fixups: extract addAttributeToList() + no reason to first check the ↵Andreas L. Delmelle2011-01-221-26/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | attributeValue to ignore namespace declarations git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1062236 13f79535-47bb-0310-9956-ffa450edef68
| * | | | Bugzilla 50626: Fix potential performance issue when adding nodes. Thanks to ↵Andreas L. Delmelle2011-01-221-10/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mkoegler.AT.auto.tuwien.ac.at. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1062225 13f79535-47bb-0310-9956-ffa450edef68
* | | | | Merged /xmlgraphics/fop/trunk:r1053043-1061681Simon Pepping2011-01-2158-640/+524
|\| | | | | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_ComplexScripts@1061759 13f79535-47bb-0310-9956-ffa450edef68
| * | | | Avoid deconstructing and reconstructing the base URI of theSimon Pepping2011-01-201-8/+2
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | configuration; the location string is obtained from a sax.Locator with system ID, line number and optionally column number (avalon.framework.configuration.SAXConfigurationHandler.getLocationString), and can be used as a URI string directly. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1061362 13f79535-47bb-0310-9956-ffa450edef68
| * | | Bugfix: Extracting the base directory through Configuration.getLocation() ↵Jeremias Maerki2011-01-171-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | didn't work for Windows, since Windows paths can contain drive letters that are separated by colons. This lead to FOP scanning the whole drive for fonts starting from the drive root in the auto-detect case. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059945 13f79535-47bb-0310-9956-ffa450edef68
| * | | Remove unused classAndreas L. Delmelle2011-01-161-94/+0
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059427 13f79535-47bb-0310-9956-ffa450edef68
| * | | Enable id on fo:root pt 3 - Signal processed id at end of documentAndreas L. Delmelle2011-01-151-0/+1
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059389 13f79535-47bb-0310-9956-ffa450edef68
| * | | Enable id property on fo:root.Andreas L. Delmelle2011-01-151-0/+1
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059387 13f79535-47bb-0310-9956-ffa450edef68
| * | | Associate id of fo:root with every new page.Andreas L. Delmelle2011-01-151-0/+1
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059386 13f79535-47bb-0310-9956-ffa450edef68
| * | | Previous commit would have caused compile error, unless others included as well.Andreas L. Delmelle2011-01-151-31/+31
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059215 13f79535-47bb-0310-9956-ffa450edef68
| * | | Might as well make those primitive ints...Andreas L. Delmelle2011-01-151-31/+31
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059212 13f79535-47bb-0310-9956-ffa450edef68
| * | | Eliminate unnecessary boxingAndreas L. Delmelle2011-01-142-165/+94
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059210 13f79535-47bb-0310-9956-ffa450edef68
| * | | Eliminate a small waste: no reason to store the char as a String, and then ↵Andreas L. Delmelle2011-01-141-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | constuct a new one in getSpace() git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059201 13f79535-47bb-0310-9956-ffa450edef68
| * | | Minor fixupsAndreas L. Delmelle2011-01-141-3/+1
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059197 13f79535-47bb-0310-9956-ffa450edef68
| * | | Minor nit: eliminate stray hungarian...Andreas L. Delmelle2011-01-141-3/+3
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059195 13f79535-47bb-0310-9956-ffa450edef68
| * | | Fix deprecation warnings; add some type safetySimon Pepping2011-01-1412-62/+73
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1058988 13f79535-47bb-0310-9956-ffa450edef68
| * | | Relative URIs in the configuration file are evaluated relative to the base ↵Simon Pepping2011-01-144-6/+78
| | | | | | | | | | | | | | | | | | | | | | | | URI of the configuration file git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1058945 13f79535-47bb-0310-9956-ffa450edef68
| * | | Restored compatibility with third-party extensions.Jeremias Maerki2011-01-121-3/+3
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1058295 13f79535-47bb-0310-9956-ffa450edef68
| * | | CheckStyle fixup...Andreas L. Delmelle2011-01-114-3/+7
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1057931 13f79535-47bb-0310-9956-ffa450edef68
| * | | Bugzilla 49848: Correct behavior of keep-together.within-line in case of ↵Andreas L. Delmelle2011-01-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | nested inlines git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1056945 13f79535-47bb-0310-9956-ffa450edef68
| * | | Switch to type-safe collections (+ related cleanup of redundant casts, ↵Andreas L. Delmelle2011-01-097-44/+36
| | | | | | | | | | | | | | | | | | | | | | | | for-loops...) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1056926 13f79535-47bb-0310-9956-ffa450edef68
| * | | Fix minor bug in validateChildNode() + make regions Map type-safeAndreas L. Delmelle2011-01-091-10/+7
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1056924 13f79535-47bb-0310-9956-ffa450edef68
| * | | Simplify Region.getViewportRectangle(): no reason to pass the ↵Andreas L. Delmelle2011-01-097-24/+21
| | | | | | | | | | | | | | | | | | | | | | | | SinglePageMaster as a parameter, as Regions have access to it git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1056923 13f79535-47bb-0310-9956-ffa450edef68
| * | | Commit changes forgotten in r757256...Andreas L. Delmelle2011-01-091-20/+4
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1056861 13f79535-47bb-0310-9956-ffa450edef68
| * | | Some refactoringSimon Pepping2011-01-081-130/+136
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1056723 13f79535-47bb-0310-9956-ffa450edef68
| * | | Bugzilla 50471: Avoid ArrayIndexOutOfBoundsException for codepoints without ↵Andreas L. Delmelle2011-01-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | a linebreak class git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1056518 13f79535-47bb-0310-9956-ffa450edef68
| * | | Bugzilla 48380: Avoid ClassCastException when using fox:widow-content-limitAndreas L. Delmelle2011-01-071-47/+33
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1056513 13f79535-47bb-0310-9956-ffa450edef68
| * | | Add type-safe parameters to collections; replace XGC jar to benefit from new ↵Simon Pepping2011-01-0415-36/+38
| | | | | | | | | | | | | | | | | | | | | | | | type-safe methods git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1055034 13f79535-47bb-0310-9956-ffa450edef68
* | | | merged from trunkSimon Pepping2010-12-2712-153/+199
|\| | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_ComplexScripts@1053045 13f79535-47bb-0310-9956-ffa450edef68
| * | | Avoid unwrapping and rewrapping of Positions; use inspection instead. Remove ↵Simon Pepping2010-12-249-144/+187
| | | | | | | | | | | | | | | | | | | | | | | | unused method removeWordSpace git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1052561 13f79535-47bb-0310-9956-ffa450edef68
| * | | Keep a reference to a pageRef string, not to the page itself; suggested by ↵Simon Pepping2010-12-232-9/+10
| | | | | | | | | | | | | | | | | | | | | | | | Alexis Giotis git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1052214 13f79535-47bb-0310-9956-ffa450edef68
| * | | Fix bug 50510Simon Pepping2010-12-221-0/+2
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1051874 13f79535-47bb-0310-9956-ffa450edef68
* | | | Merge from trunkSimon Pepping2010-12-186-18/+53
|\| | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_ComplexScripts@1050618 13f79535-47bb-0310-9956-ffa450edef68
| * | | Auxiliary positions do not have an index value; fixing this in ↵Simon Pepping2010-12-171-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | InlineStackingLM.applyChanges, rewrapping positions; fixed bug 49870 git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1050342 13f79535-47bb-0310-9956-ffa450edef68
| * | | Bugzilla #49060: File Descriptor leak in AFP rendererVincent Hennebert2010-12-161-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch by Peter Hancock, applied with minor style modifications git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1050104 13f79535-47bb-0310-9956-ffa450edef68
| * | | Bugzilla #50089: Content after forced break in block-container is not renderedVincent Hennebert2010-12-141-1/+1
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1049228 13f79535-47bb-0310-9956-ffa450edef68
| * | | Avoid an NPE in InlineStackingLM.applyChanges for Knuth elements with a null ↵Simon Pepping2010-12-091-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | position; resolves bug 50276 git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1043871 13f79535-47bb-0310-9956-ffa450edef68
| * | | Bugzilla #42034:Jeremias Maerki2010-12-073-11/+34
| | | | | | | | | | | | | | | | | | | | | | | | Fixed adjustment of inline parent area for justified text containing a forward page reference. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1042934 13f79535-47bb-0310-9956-ffa450edef68
* | | | merged changes from trunkSimon Pepping2010-12-043-11/+18
|\| | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_ComplexScripts@1042159 13f79535-47bb-0310-9956-ffa450edef68
| * | | Add a cast from char to int before autoboxingSimon Pepping2010-12-041-2/+2
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1042150 13f79535-47bb-0310-9956-ffa450edef68
| * | | Allow for words consisting of only soft hyphens; fixes bug 49837Simon Pepping2010-12-042-11/+18
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1042115 13f79535-47bb-0310-9956-ffa450edef68
| * | | Replaced creation of new Integer with Java autoboxing featureVincent Hennebert2010-12-011-2/+2
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1040977 13f79535-47bb-0310-9956-ffa450edef68
* | | | Merged changes from trunkSimon Pepping2010-11-2843-569/+559
|\| | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_ComplexScripts@1039922 13f79535-47bb-0310-9956-ffa450edef68
| * | | Second part of patch 50245 by Mehdi HoushmandSimon Pepping2010-11-2610-86/+115
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1039502 13f79535-47bb-0310-9956-ffa450edef68
| * | | Partial application of patch 50245 by Mehdi HoushmandSimon Pepping2010-11-2636-340/+354
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1039350 13f79535-47bb-0310-9956-ffa450edef68
| * | | Bugzilla 38264: hyphenation in combination with preserved linefeeds and/or ↵Andreas L. Delmelle2010-11-252-40/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | white-space no longer causes duplication of content and missing hyphens git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1039188 13f79535-47bb-0310-9956-ffa450edef68
| * | | Minor fixups, cleanups; removal of some dead code and a misleading TODOAndreas L. Delmelle2010-11-251-108/+24
| | | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1039186 13f79535-47bb-0310-9956-ffa450edef68
* | | | Merged changes from Trunk up to rev. 1039179Vincent Hennebert2010-11-2552-209/+223
|\| | | | | | | | | | | | | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_ComplexScripts@1039185 13f79535-47bb-0310-9956-ffa450edef68