David Carver wrote:
Dave, one of the first things you might want to do is use the XSLT ant task that comes with ant:

http://ant.apache.org/manual/CoreTasks/style.html

<xslt in="doc.xml" out="build/doc/output.xml"
     style="style/apache.xsl">
 <factory name="org.apache.xalan.processor.TransformerFactoryImpl">
<attribute name="http://xml.apache.org/xalan/features/optimize"; value="true"/>
 </factory>
</xslt>


It also has sub elements for passing the parameters into the the XSL stylesheet.


I'm happy that ant is doing what I want and it's too darned convenient
not to use it.

Seems like its the first stage of website processing
that relates everything to . rather than to my 'wanted' output directory.





regards

--
Dave Pawson
XSLT XSL-FO FAQ.
http://www.dpawson.co.uk

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to