From 3d79403c2d1d368ce1ccfd1c3bd369029a7c1701 Mon Sep 17 00:00:00 2001
From: Matthew Jason Benson
<xslt>
removes the file extension from the
source file and adds the extension specified via the extension
attribute.
-Since Ant 1.7
-You can use nested elements which extend resource to indicate the stylesheet. -See resources to see the concrete syntax you can use
+The nested style element can be used to specify your stylesheet in terms
+of Ant's resource types. With
+this element, the stylesheet should be specified as a nested resource or
+single-element collection. Alternatively, use the refid
to
+specify the resource or collection as a reference.
@@ -446,7 +449,9 @@ See resources to see the concrete syntUsing a nested resource to define the stylesheet
<xslt in="data.xml" out="${out.dir}/out.xml"> - <url url="${printParams.xsl.url}"/> + <style> + <url url="${printParams.xsl.url}"/> + </style> <param name="set" expression="value"/> </xslt>