aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
Commit message (Collapse)AuthorAgeFilesLines
* PR:Glen Mazza2004-03-311-1/+6
| | | | | | | | | | | | Obtained from: Submitted by: Reviewed by: Conversion of Avalon to Commons-Logger. (Will still need to update the examples, which I will take care of next; Jeremias will be modifying the PDF libraries for more efficient use of the CL loggers.) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197474 13f79535-47bb-0310-9956-ffa450edef68
* 1.) Removed xsl file for property generation (no longer used, due toGlen Mazza2004-03-211-3/+0
| | | | | | | | | | | Finn's work.) Removed build.xml entry. 2.) Disconnected the FOUserAgent from the SVGUserAgent. This will make the SVGUserAgent more portable although at the cost of a more complex constructor. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197467 13f79535-47bb-0310-9956-ffa450edef68
* Applied Apache License Version 2.0 by following the instructions at ↵Jeremias Maerki2004-02-271-5/+20
| | | | | | http://www.apache.org/dev/apply-license.html. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197393 13f79535-47bb-0310-9956-ffa450edef68
* Don't copy codegen files.Joerg Pietschmann2004-02-071-25/+27
| | | | | | | | Pass graphics configuration adapter source to javadoc. Random xdoc directory reference fixes (still incomplete). git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197338 13f79535-47bb-0310-9956-ffa450edef68
* Fix packaging of all-in-one transcoder JAR (due to changes in Commons IO).Jeremias Maerki2004-02-061-2/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197335 13f79535-47bb-0310-9956-ffa450edef68
* Fixed a bug where I got a NoClassDefFoundError when I'm using a ↵Jeremias Maerki2004-01-231-0/+1
| | | | | | build-local.properties where I set optional.lib.dir to an absolute Windows path. These absolute paths weren't removed somehow resulting in NoClassDefFound errors due to a illegal Class-Path entry in fop.jar's manifest. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197247 13f79535-47bb-0310-9956-ffa450edef68
* Applied Thomas DeWeese's latest patch for the PDF transcoder.Glen Mazza2004-01-221-1/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197244 13f79535-47bb-0310-9956-ffa450edef68
* Abandon codegenerated property makers and use bean-like makers instead.Finn Bock2004-01-221-19/+1
| | | | | | | | | | | | | | | - ShorthandParsers are made stateless. - Makers for compound properties inherts from new CompoundPropertyMaker class and overrides makeNewProperty. - FOPropertyMapping is no longer generated but is handcoded. - get() and findProperty() methods are moved from PropertyList to the property makers. PR: 25873 git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197241 13f79535-47bb-0310-9956-ffa450edef68
* Match the version string is apps.Version.Finn Bock2004-01-211-1/+1
| | | | | | | PR: 25691 git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197240 13f79535-47bb-0310-9956-ffa450edef68
* FOPropertyMapping.java no longer autogenerated, moved from fop.fo.propertiesGlen Mazza2004-01-201-4/+2
| | | | | | | to fo package in preparation for new property maker implementation. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197221 13f79535-47bb-0310-9956-ffa450edef68
* Moved the interfaces into the Constants class on a trial basis (we may stillGlen Mazza2004-01-171-2/+5
| | | | | | | | | | | | choose to remove them in favor of strictly using Constants.) Two interfaces (span and position) were removed because of conflicts with other class names. The interface generation was moved into Constants.xsl, which is run manually via the XsltToJava ant task and its output is then checked in. As a result, no more autogeneration of these interfaces at build time will be done. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197213 13f79535-47bb-0310-9956-ffa450edef68
* Initial Check-in of PropertySets.java and .xsl. (Similar to Alt-Design'sGlen Mazza2003-12-221-0/+2
| | | | | | | | PropertySets, however uses integer arrays to identify those properties relevant for an FO.) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197050 13f79535-47bb-0310-9956-ffa450edef68
* PR:Glen Mazza2003-12-221-2/+1
| | | | | | | | | | | | | | Obtained from: Submitted by: Reviewed by: 1.) renamed enumgen.xsl to longer but hopefully clearer prop-val-enum-interfaces.xsl 2.) Moved Constants.java from fo.properties to fo package, to reduce the need for layout and renderers to import directly from the properties package. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197048 13f79535-47bb-0310-9956-ffa450edef68
* Property Makers now being activated via int constants. (Maker classes ↵Glen Mazza2003-12-201-2/+1
| | | | | | themselves, as well as code referencing the properties, still need conversion to int's. Also, HashMaps for String and Integer in FOPropertyMapping and FObj temporarily being retained for troubleshooting purposes.) Contribution mainly from Finn Bock (Bug #25480). git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197043 13f79535-47bb-0310-9956-ffa450edef68
* 1. Removed the properties.Constants class from automatic generation, andGlen Mazza2003-12-151-5/+13
| | | | | | | | | | | | | | | | | | | added Finn Bock's work on Property and Element Constants (currently unused within application.) The CVS version is now the official one. (The new constants are not currently being used within the application; more work is needed.) 2. Build.xml has a new helper XSLTtoJAVA task separate from any of the build processes to generate the Constants class above (although its output is expected to fall behind what will be maintained in the CVS version.) 3. Some xml and xsl file renaming to make clearer the purposes of those files. 4. Removed a debug statement from PropertyList.java (forgot to remove from yesterday's work). git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197038 13f79535-47bb-0310-9956-ffa450edef68
* Adjust transcoder packaging to changes in FOP.Jeremias Maerki2003-11-071-2/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196991 13f79535-47bb-0310-9956-ffa450edef68
* RTF structural renderer moved from root to render.rtf, joining all the other ↵Glen Mazza2003-11-041-3/+3
| | | | | | | | | | renderers RTF Library moved from root to render.rtf.rtflib, but kept separate from renderer itself. See: http://marc.theaimsgroup.com/?l=fop-dev&m=106753338719406&w=2 git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196981 13f79535-47bb-0310-9956-ffa450edef68
* Moved mif package (including structural renderer MIFHandler.java) toGlen Mazza2003-11-011-1/+1
| | | | | | | render.mif. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196978 13f79535-47bb-0310-9956-ffa450edef68
* 1.) Moved AWT Viewer classes from org.fop.viewer to org.fop.render.awt.viewerGlen Mazza2003-09-211-4/+4
| | | | | | | | 2.) Updated AWT and PDF renderers to draw region borders more accurately. 3.) Rounding errors for determining region sizes in AWT Renderer fixed. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196934 13f79535-47bb-0310-9956-ffa450edef68
* Place RTFLib into its own group for purposes of javadoc generation. Add ↵William Victor Mote2003-07-071-13/+17
| | | | | | package.html files for the RTFLib packages. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196630 13f79535-47bb-0310-9956-ffa450edef68
* Add possibility to specify an "optional-lib" directory outside of FOP's tree ↵Jeremias Maerki2003-07-041-28/+183
| | | | | | | | | | | | (for checkstyle, Jimi, JAI etc.) More base-dir references Optional JUnit support (only runs when present) Show ant version Start of an all-in-one transcoder package git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196605 13f79535-47bb-0310-9956-ffa450edef68
* Made source more friendly for Eclipse (and IDEs in general) Joerg Pietschmann2003-06-291-18/+17
| | | | | | | | | | | by using conditionally different files instead of source copy with filtering. Add either src/java-1.3 or src/java1.4 to your build path, depending on your JDK. Ant build should automatically choose the correct file - if the right files are comitted in the current mess, that is. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196539 13f79535-47bb-0310-9956-ffa450edef68
* Base all relevant properties on ${basedir}.Peter Bernard West2003-06-291-16/+15
| | | | | | | Remove jimi libraries from dist.bin.lib fileset. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196537 13f79535-47bb-0310-9956-ffa450edef68
* Remove jfor libs and references.William Victor Mote2003-06-261-1/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196533 13f79535-47bb-0310-9956-ffa450edef68
* Get rtflib (jfor) files to compile.William Victor Mote2003-06-261-10/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196532 13f79535-47bb-0310-9956-ffa450edef68
* rtflib package is not compilable yetBertrand Delacretaz2003-06-201-0/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196518 13f79535-47bb-0310-9956-ffa450edef68
* Enhancements for javadocs.William Victor Mote2003-04-271-2/+46
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196354 13f79535-47bb-0310-9956-ffa450edef68
* move overview.html to fop's root src directory.William Victor Mote2003-04-241-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196336 13f79535-47bb-0310-9956-ffa450edef68
* Conditional compilation of jimi, jai, and jce was not working properly. Each ↵William Victor Mote2003-03-201-39/+42
| | | | | | | | | | | | | had separate compile jobs, but was also included in the main source compilation, which resulted in compile errors. This change removes the separate compile jobs, and excludes them from the main compilation bases on the previously existing conditional tests. Also added a message showing the results of these tests as they are performed (eg. "Jimi Support NOT Present"). git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196123 13f79535-47bb-0310-9956-ffa450edef68
* Updated for optional PDF encryption support (depending on availability of JCE)Jeremias Maerki2003-03-131-1/+17
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196090 13f79535-47bb-0310-9956-ffa450edef68
* Remove buildtools.xml as it's no longer needed.Jeremias Maerki2003-03-121-1/+4
| | | | | | | Adjust build.xml accordingly. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196073 13f79535-47bb-0310-9956-ffa450edef68
* fixed typos in docsChristian Geisert2003-03-111-1/+1
| | | | | | | fixed omission from Images -> images renaming git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196067 13f79535-47bb-0310-9956-ffa450edef68
* Adjust to new source location (src/org --> src/java/org)Jeremias Maerki2003-03-111-11/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196063 13f79535-47bb-0310-9956-ffa450edef68
* Added target for building the servlet.Jeremias Maerki2003-02-021-6/+19
| | | | | | | Default target is now "all" which, besides the jar, also builds the WAR and the PDF transcoder. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195921 13f79535-47bb-0310-9956-ffa450edef68
* include font classes for pdf transcoderKeiron Liddle2003-01-151-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195865 13f79535-47bb-0310-9956-ffa450edef68
* Adjust to new directory for hyphenationJeremias Maerki2003-01-151-3/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195864 13f79535-47bb-0310-9956-ffa450edef68
* Update for 2003Jeremias Maerki2003-01-081-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195831 13f79535-47bb-0310-9956-ffa450edef68
* Base 14 fonts are now generated to org.apache.fop.fonts.base14Jeremias Maerki2003-01-081-38/+27
| | | | | | | CodePointMapping is now generated to org.apache.fop.fonts git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195825 13f79535-47bb-0310-9956-ffa450edef68
* Added Ant target for validating xdocs.Joerg Pietschmann2003-01-051-0/+62
| | | | | | | | Some FAQ enhancments. Minor edits to output.xml. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195816 13f79535-47bb-0310-9956-ffa450edef68
* white-space and line-ending fixesWilliam Victor Mote2002-11-301-126/+126
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195685 13f79535-47bb-0310-9956-ffa450edef68
* Adjusted to new JARsJeremias Maerki2002-11-221-12/+21
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195617 13f79535-47bb-0310-9956-ffa450edef68
* first shot at RTFHandler using jfor RTF libraryBertrand Delacretaz2002-11-011-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195397 13f79535-47bb-0310-9956-ffa450edef68
* build.properties and build-local.properties allow local override of build ↵Bertrand Delacretaz2002-10-311-1/+7
| | | | | | settings git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195395 13f79535-47bb-0310-9956-ffa450edef68
* removed unneeded valuesKeiron Liddle2002-10-281-35/+16
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195367 13f79535-47bb-0310-9956-ffa450edef68
* Streamlined build process without copying around whole directory trees.Jeremias Maerki2002-09-171-405/+331
| | | | | | | | Uses filters to manage JDK 1.3 and 1.4 differences. Beautified build.xml (2 space indents) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195210 13f79535-47bb-0310-9956-ffa450edef68
* Fixed FOP anttaskChristian Geisert2002-09-151-0/+17
| | | | | | | Added task for example PDF generation git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195191 13f79535-47bb-0310-9956-ffa450edef68
* Added an optional target to generate a Checkstyle report.Jeremias Maerki2002-09-051-0/+25
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195153 13f79535-47bb-0310-9956-ffa450edef68
* removed old configurationKeiron Liddle2002-09-041-6/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195149 13f79535-47bb-0310-9956-ffa450edef68
* fixed problem with font metrics generation and jdk1.4Christian Geisert2002-09-021-0/+98
| | | | | | | (the problem is a old xalan version which comes with the jdk) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195138 13f79535-47bb-0310-9956-ffa450edef68
* <action dev="JM" type="update" context="build">Jeremias Maerki2002-08-071-102/+86
| | | | | | | | | Improve build process for more flexibility when external jars change. Changed to use -projecthelp option from Ant 1.5 instead of "usage" target. </action> git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195067 13f79535-47bb-0310-9956-ffa450edef68