diff options
author | Kelly Campbell <kellyc@apache.org> | 2001-02-06 07:34:48 +0000 |
---|---|---|
committer | Kelly Campbell <kellyc@apache.org> | 2001-02-06 07:34:48 +0000 |
commit | 4e96b8b7a7647e183a5a916a1c42deddbd91c6af (patch) | |
tree | 0cdbe16d0b2ebe56d997d912d8672a7cbf2477b6 /build.xml | |
parent | 1a3636171f599e31d9964fbcf6e32cfc3e6fbbf3 (diff) | |
download | xmlgraphics-fop-4e96b8b7a7647e183a5a916a1c42deddbd91c6af.tar.gz xmlgraphics-fop-4e96b8b7a7647e183a5a916a1c42deddbd91c6af.zip |
Added support for PDF outlines (aka bookmarks). See the example in
docs/examples/fo/pdfoutline.fo for an example.
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194025 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 30 |
1 files changed, 24 insertions, 6 deletions
@@ -168,6 +168,8 @@ Sometimes ant gives out this warnings, but the build is finished without any pro <property name="src.properties.xsl" value="${src.codegen}/properties.xsl"/> <property name="foproperties.xml" value="${build.codegen}/foproperties.xml"/> <property name="svgproperties.xml" value="${build.codegen}/svgproperties.xml"/> + <property name="extproperties.xml" value="${build.codegen}/extproperties.xml"/> + <property name="properties.xsl" value="${build.codegen}/properties.xsl"/> <property name="propmap.xsl" value="${build.codegen}/propmap.xsl"/> <property name="enumgen.xsl" value="${build.codegen}/enumgen.xsl"/> @@ -337,24 +339,40 @@ Sometimes ant gives out this warnings, but the build is finished without any pro <!-- generate the java files from xml resources --> <echo message="Generating the java files from xml resources"/> + <xslt infile="${foproperties.xml}" xsltfile="${properties.xsl}" dependent="${propinc.xsl}" outfile="${build.src}/${replacestring}/fo/properties/fo_${ignore_this}" smart="yes"/> - <xslt infile="${svgproperties.xml}" xsltfile="${properties.xsl}" - dependent="${propinc.xsl}" - outfile="${build.src}/${replacestring}/fo/properties/svg_${ignore_this}" smart="yes"/> <xslt infile="${foproperties.xml}" xsltfile="${propmap.xsl}" dependent="${propinc.xsl}" outfile="${build.src}/${replacestring}/fo/properties/FOPropertyMapping.java" smart="yes"/> - <xslt infile="${svgproperties.xml}" xsltfile="${propmap.xsl}" - dependent="${propinc.xsl}" - outfile="${build.src}/${replacestring}/fo/properties/SVGPropertyMapping.java" smart="yes"/> <xslt infile="${foproperties.xml}" xsltfile="${enumgen.xsl}" dependent="${propinc.xsl}" outfile="${build.src}/${replacestring}/fo/properties/foenums_${ignore_this}" smart="yes"/> + + + <xslt infile="${svgproperties.xml}" xsltfile="${properties.xsl}" + dependent="${propinc.xsl}" + outfile="${build.src}/${replacestring}/fo/properties/svg_${ignore_this}" smart="yes"/> + <xslt infile="${svgproperties.xml}" xsltfile="${propmap.xsl}" + dependent="${propinc.xsl}" + outfile="${build.src}/${replacestring}/fo/properties/SVGPropertyMapping.java" smart="yes"/> <xslt infile="${svgproperties.xml}" xsltfile="${enumgen.xsl}" dependent="${propinc.xsl}" outfile="${build.src}/${replacestring}/fo/properties/svgenums_${ignore_this}" smart="yes"/> + + <xslt infile="${extproperties.xml}" xsltfile="${properties.xsl}" + dependent="${propinc.xsl}" + outfile="${build.src}/${replacestring}/fo/properties/ext_${ignore_this}" smart="yes"/> + <xslt infile="${extproperties.xml}" xsltfile="${propmap.xsl}" + dependent="${propinc.xsl}" + outfile="${build.src}/${replacestring}/fo/properties/ExtensionPropertyMapping.java" smart="yes"/> + <xslt infile="${extproperties.xml}" xsltfile="${enumgen.xsl}" + dependent="${propinc.xsl}" + outfile="${build.src}/${replacestring}/fo/properties/extenums_${ignore_this}" smart="yes"/> + + + <xslt infile="${charlist.xml}" xsltfile="${charlist.xsl}" outfile="${build.src}/${replacestring}/render/pdf/CodePointMapping.java" smart="yes"/> <xslt infile="${Courier.xml}" xsltfile="${fontfile.xsl}" mergefile="${charlist.xml}" |