| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:apache_fop="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/apache_fop/apache_fop.xsd"
- basedir="../../."
- default="default"
- name="apache_fop">
- <include as="PRODUCT" file="build.apache_fop.PRODUCT.xml"/>
- <include as="SYSTEM" file="build.apache_fop.SYSTEM.xml"/>
- <include as="INSTALL" file="build.apache_fop.INSTALL.xml"/>
- <include as="${local.p5ant.WPS_Functions.PRODUCT.module.input}"
- file="build.apache_fop.${local.p5ant.WPS_Functions.PRODUCT.module.input}.xml"
- optional="yes"/>
- <include as="WPS_Functions" file="../build.WPS_Functions.PRODUCT.xml"/>
- <include file="../system_ui_info_speech/build.system_ui_info_speech.PRODUCT.xml"/>
- <extension-point name="default.default" depends="default"/>
- <extension-point name="default" depends="PRODUCT.PRODUCT,INSTALL.INSTALL"/>
- <target name="xsl-test"
- description="test usage of default xslt template for module">
- <xslt basedir="${apache_fop.basedir}"
- destdir="${apache_fop.temp}"
- force="true"
- in="${apache_fop.INSTALL.install_example}"
- out="${apache_fop.temp}/INSTALL.install_example.xsl-test.xml"
- style="${apache_fop.xsl}">
- <factory name="net.sf.saxon.TransformerFactoryImpl">
- <attribute name="http://saxon.sf.net/feature/xinclude-aware" value="true"/>
- <attribute name="http://saxon.sf.net/feature/initialMode"
- value="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/apache_fop/apache_fop.xsd}INSTALL.install_example.xsl-test.xml"/>
- <attribute name="http://saxon.sf.net/feature/dtd-validation-recoverable"
- value="true"/>
- </factory>
- <param name="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/apache_fop/apache_fop.xsd}basedir"
- expression="${apache_fop.basedir}"/>
- <param name="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/apache_fop/apache_fop.xsd}repository"
- expression="${apache_fop.repository}"/>
- <param name="{http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/apache_fop/apache_fop.xsd}temp"
- expression="${apache_fop.temp}"/>
- <classpath location="/opt/local/share/java/saxon9he.jar"/>
- <xmlcatalog refid="dita-ot.dtd.catalog"/>
- </xslt>
- </target>
-
- <taskdef resource="net/sf/antcontrib/antlib.xml"/>
-
- <echo>#42 $apache_fop.current.home = ${apache_fop.current.home}</echo>
- <!--<taskdef name="fop"
- classname="org.apache.fop.tools.anttasks.Fop">
- <classpath>
- <fileset dir="${apache_fop.current.home}/lib">
- <include name="*.jar"/>
- </fileset>
- <fileset dir="${apache_fop.current.home}/build">
- <include name="fop.jar"/>
- <include name="fop-hyph.jar" />
- </fileset>
- </classpath>
- </taskdef>-->
-
-
- <!--<target name="generate-pdf" description="Generates a single PDF file">
- <fop format="application/pdf"
- fofile="c:\working\foDirectory\foDocument.fo"
- outfile="c:\working\pdfDirectory\pdfDocument.pdf" />
- </target>-->
-
-
- <!--<target name="generate-multiple-ps"
- description="Generates multiple PostScript files">
- <fop format="application/postscript"
- outdir="${build.dir}" messagelevel="debug">
- <fileset dir="${fo.examples.dir}">
- <include name="*.fo"/>
- </fileset>
- </fop>
- </target>-->
-
- </project>
|