This patch changes the documentation of the copy task to use the new
syntax for mappers rather than the old one (since I was confused, I
figure it is best to make it clearer for everyone else).
Index: docs/manual/CoreTasks/copy.html
===================================================================
RCS file: /home/cvspublic/ant/docs/manual/CoreTasks/copy.html,v
retrieving revision 1.25
diff -u -r1.25 copy.html
--- docs/manual/CoreTasks/copy.html 25 May 2004 12:12:39 -0000 1.25
+++ docs/manual/CoreTasks/copy.html 19 Nov 2004 01:36:58 -0000
@@ -199,7 +199,9 @@
<pre>
<copy todir="../backup/dir">
<fileset dir="src_dir"/>
- <mapper type="glob" from="*"
to="*.bak"/>
+ <mapper>
+ <globmapper from="*" to="*.bak"/>
+ </mapper>
</copy>
</pre>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]