You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ma...@apache.org on 2010/12/23 23:14:28 UTC

svn commit: r1052393 - /ant/core/trunk/docs/manual/Types/mapper.html

Author: maartenc
Date: Thu Dec 23 22:14:28 2010
New Revision: 1052393

URL: http://svn.apache.org/viewvc?rev=1052393&view=rev
Log:
Fixed error in globmapper example: the correct attribute is 'handledirsep' instead of 'ignoredirchar'.

Modified:
    ant/core/trunk/docs/manual/Types/mapper.html

Modified: ant/core/trunk/docs/manual/Types/mapper.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/Types/mapper.html?rev=1052393&r1=1052392&r2=1052393&view=diff
==============================================================================
--- ant/core/trunk/docs/manual/Types/mapper.html (original)
+++ ant/core/trunk/docs/manual/Types/mapper.html Thu Dec 23 22:14:28 2010
@@ -335,7 +335,7 @@ that don't match the <code>from</code> p
       &lt;pathconvert property="x" targetos="unix"&gt;
         &lt;path path="d/e/f/j.java"/&gt;
         &lt;mapper&gt;
-          &lt;globmapper from="${basedir}\d/e\*" to="*" ignoredirchar="yes"/&gt;
+          &lt;globmapper from="${basedir}\d/e\*" to="*" handledirsep="yes"/&gt;
         &lt;/mapper&gt;
       &lt;/pathconvert&gt;
       &lt;echo&gt;x is ${x}&lt;/echo&gt;