OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [docbook-apps] ant and db5, xinclude and fo output


On Thu, Apr 10 2008 11:36:06 +0100, davep@dpawson.co.uk wrote:
> My latest foray into ant:
...
> <target name="fo" depends="init, clean.pdf">
> <echo>Generate the fo output</echo>
> <java classname="${xslt.processor.class}"
>       fork="yes"
>       dir="${in.dir}"
>       failonerror="true">
>   <classpath refid="xslt.processor.classpath" />
>   <jvmarg
> line="-Dorg.apache.xerces.xni.parser.XMLParserConfiguration=org.apache.xerces.parsers.XIncludeParserConfiguration"/>
>   <jvmarg
> line="-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl"/>
>   <jvmarg
> line="-Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl"/>
>     <arg line="-o ${out.fo.dir}/${main.fo.outfile}"/>
>   <arg line="-l"/>
>   <arg line="-x org.apache.xml.resolver.tools.ResolvingXMLReader"/>
>   <arg line="-y org.apache.xml.resolver.tools.ResolvingXMLReader"/>
>   <arg line="-r org.apache.xml.resolver.tools.CatalogResolver "/>
>   <arg line="${in.dir}/${main.infile} ${main.fo.stylesheet} " />
> </java>
> </target>
>

The Ant manual [1] recommends <arg value="..."/> rather than <arg
line="..."/>.  Doing so needs more elements, but it's safer to use.

Why are you using the <java> task rather than the <xslt> task?  IMO,
using the <xslt> task makes using XML catalogs with Ant much easier.

You could also make a macro for the transformation so you wouldn't need
to repeat everything just to change three filenames.

...
> It might be nicer to use xmllint to expand the includes and validate,
> but I haven't figured out  how to get ant to do that.

<exec> [2].

Regards,


Tony Graham                         Tony.Graham@MenteithConsulting.com
Director                                  W3C XSL FO SG Invited Expert
Menteith Consulting Ltd
XML, XSL and XSLT consulting, programming and training
Registered Office: 13 Kelly's Bay Beach, Skerries, Co. Dublin, Ireland
Registered in Ireland - No. 428599   http://www.menteithconsulting.com
  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --
xmlroff XSL Formatter                               http://xmlroff.org
xslide Emacs mode                  http://www.menteith.com/wiki/xslide
Unicode: A Primer                               urn:isbn:0-7645-4625-2

[1] http://ant.apache.org/manual/using.html#arg
[2] http://ant.apache.org/manual/CoreTasks/exec.html
    I don't know why it's showing as "beta" since it was in earlier
    versions of Ant than the Ant 1.7 currently documented at this URL.


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]