You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by jh...@apache.org on 2007/12/03 14:36:43 UTC

svn commit: r600530 - /ant/core/trunk/docs/manual/CoreTypes/dirset.html

Author: jhm
Date: Mon Dec  3 05:36:43 2007
New Revision: 600530

URL: http://svn.apache.org/viewvc?rev=600530&view=rev
Log:
Example as discussed on user@ant >>Select "marked" directories<<

Modified:
    ant/core/trunk/docs/manual/CoreTypes/dirset.html

Modified: ant/core/trunk/docs/manual/CoreTypes/dirset.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/CoreTypes/dirset.html?rev=600530&r1=600529&r2=600530&view=diff
==============================================================================
--- ant/core/trunk/docs/manual/CoreTypes/dirset.html (original)
+++ ant/core/trunk/docs/manual/CoreTypes/dirset.html Mon Dec  3 05:36:43 2007
@@ -92,6 +92,7 @@
 </table>
 
 <h4>Examples</h4>
+
 <blockquote><pre>
 &lt;dirset dir=&quot;${build.dir}&quot;&gt;
   &lt;include name=&quot;apps/**/classes&quot;/&gt;
@@ -101,6 +102,7 @@
 <p>Groups all directories named <code>classes</code> found under the
 <code>apps</code> subdirectory of <code>${build.dir}</code>, except those
 that have the text <code>Test</code> in their name.</p>
+
 <blockquote><pre>
 &lt;dirset dir=&quot;${build.dir}&quot;&gt;
   &lt;patternset id=&quot;non.test.classes&quot;&gt;
@@ -112,6 +114,7 @@
 <p>Groups the same directories as the above example, but also establishes
 a PatternSet that can be referenced in other
 <code>&lt;dirset&gt;</code> elements, rooted at a different directory.</p>
+
 <blockquote><pre>
 &lt;dirset dir=&quot;${debug_build.dir}&quot;&gt;
   &lt;patternset refid=&quot;non.test.classes&quot;/&gt;
@@ -120,6 +123,15 @@
 <p>Groups all directories in directory <code>${debug_build.dir}</code>,
 using the same patterns as the above example.</p>
 
+<blockquote><pre>
+&lt;dirset id=&quot;dirset&quot; dir=&quot;${workingdir}&quot;&gt;
+   &lt;present targetdir=&quot;${workingdir}&quot;&gt;
+        &lt;mapper type=&quot;glob&quot; from=&quot;*&quot; to=&quot;*/${markerfile}&quot; /&gt;
+   &lt;/present&gt;
+&lt;/dirset&gt;
+</pre></blockquote>
+<p>Selects all directories somewhere under <code>${workingdir}</code>
+which contain a <code>${markerfile}</code>.</p>
 
 
 </body>