Hi,
in Ant 1.7, it will be possible to use a resource as a stylesheet.
<xslt in="data.xml" out="${out.dir}/out.xml">
<style>
<url url="${printParams.xsl.url}"/>
</style>
<param name="set" expression="value"/>
</xslt>
Regards,
Antoine
On Dec 10, 2006, at 11:56 AM, Dominique Devienne wrote:
is it possible to use in 'style' attribute of xslt task style
definition
like
http://docbook.sourceforge.net/release/xsl/current/xhtml/
docbook.xsl or
one must specify only local files?
Local files only. But you can cache the URL above as a local file
using <get>. --DD