jhm 2004/01/28 07:13:40
Modified: docs/manual/CoreTypes Tag: ANT_16_BRANCH selectors.html
Log:
Sync with HEAD. Bug 25801 + 2004 :-)
Revision Changes Path
No revision
No revision
1.15.2.4 +7 -9 ant/docs/manual/CoreTypes/selectors.html
Index: selectors.html
===================================================================
RCS file: /home/cvs/ant/docs/manual/CoreTypes/selectors.html,v
retrieving revision 1.15.2.3
retrieving revision 1.15.2.4
diff -u -r1.15.2.3 -r1.15.2.4
--- selectors.html 25 Nov 2003 13:31:23 -0000 1.15.2.3
+++ selectors.html 28 Jan 2004 15:13:39 -0000 1.15.2.4
@@ -739,9 +739,9 @@
<blockquote><pre>
<copy todir="dest">
- <filelist dir="src">
+ <fileset dir="src">
<modified/>
- </filelist>
+ </fileset>
</copy
</pre></blockquote>
<p>This will copy all files from <i>src</i> to <i>dest</i> which content
has changed.
@@ -750,7 +750,7 @@
<blockquote><pre>
<copy todir="dest">
- <filelist dir="src">
+ <fileset dir="src">
<modified update="true"
seldirs="true"
cache="propertyfile"
@@ -759,7 +759,7 @@
<param name="cache.cachefile"
value="cache.properties"/>
<param name="algorithm.algorithm" value="MD5"/>
</modified>
- </filelist>
+ </fileset>
</copy>
</pre></blockquote>
<p>This is the same example rewritten as CoreSelector with setting the all
the values
@@ -767,7 +767,7 @@
<blockquote><pre>
<copy todir="dest">
- <filelist dir="src">
+ <fileset dir="src">
<custom
class="org.apache.tools.ant.types.selectors.modifiedselector.ModifiedSelector">
<param name="update" value="true"/>
<param name="seldirs" value="true"/>
@@ -777,7 +777,7 @@
<param name="cache.cachefile"
value="cache.properties"/>
<param name="algorithm.algorithm" value="MD5"/>
</custom>
- </filelist>
+ </fileset>
</copy>
</pre></blockquote>
<p>And this is the same rewritten as CustomSelector.</p>
@@ -1192,11 +1192,9 @@
<a href="selectors-program.html">Programming Selectors in Ant</a>.</p>
<hr>
- <p align="center">Copyright © 2002-2003 Apache Software
+ <p align="center">Copyright © 2002-2004 Apache Software
Foundation. All rights Reserved.</p>
</body>
</html>
-
-
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]