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>
   &lt;copy todir=&quot;../backup/dir&quot;&gt;
     &lt;fileset dir=&quot;src_dir&quot;/&gt;
-    &lt;mapper type=&quot;glob&quot; from=&quot;*&quot; 
to=&quot;*.bak&quot;/&gt;
+    &lt;mapper&gt;
+        &lt;globmapper from=&quot;*&quot; to=&quot;*.bak&quot;/&gt;
+    &lt;/mapper&gt;
   &lt;/copy&gt;
 </pre>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to