diff --git a/docs/manual/using.html b/docs/manual/using.html index d6e120e14..5dac6ca69 100644 --- a/docs/manual/using.html +++ b/docs/manual/using.html @@ -611,19 +611,73 @@ replicate the same snippet of XML over and over again--using a </target> </project> -
All tasks that use nested elements for
-PatternSets,
-FileSets,
-ZipFileSets or
-path-like structures accept references to these structures
-as shown in the examples. Using refid
on a task will ordinarily
-have the same effect (referencing a task already declared), but the user
-should be aware that the interpretation of this attribute is dependent on the
-implementation of the element upon which it is specified. Some tasks (the
-property task is a handy example)
+
All tasks that use nested elements for
+PatternSets,
+FileSets,
+ZipFileSets or
+path-like structures accept references to these structures
+as shown in the examples. Using refid
on a task will ordinarily
+have the same effect (referencing a task already declared), but the user
+should be aware that the interpretation of this attribute is dependent on the
+implementation of the element upon which it is specified. Some tasks (the
+property task is a handy example)
deliberately assign a different meaning to refid
.
-lib
${user.home}/.ant/lib
${ant.home}/lib
<taskdef name="taskname"
+ classname="ImplementationClass"/>
+ <taskdef name="for" classname="net.sf.antcontrib.logic.For" />
+ <for ... />
+ <taskdef>
+ <taskdef resource="net/sf/antcontrib/antcontrib.properties" />
+ <for ... />
+ <taskdef>
+ <taskdef resource="net/sf/antcontrib/antlib.xml" />
+ <for ... />
+ antlib:
protocoll handler
+ <project xmlns:ac="antlib:net.sf.antconrib"/>
+ <ac:for ... />
+