diff --git a/docs/manual/CoreTasks/style.html b/docs/manual/CoreTasks/style.html index 61514f6b3..cac170b20 100644 --- a/docs/manual/CoreTasks/style.html +++ b/docs/manual/CoreTasks/style.html @@ -105,8 +105,8 @@ element which is used to perform Entity and URI resolution.
attribute basedir for the task, ant will assume that the style attribute is relative to the basedir of the task. -<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>