bodewig 00/11/02 02:52:43
Modified: docs index.html
Log:
And correcting the documentation of includes versus <include> in the
main branch as well.
Revision Changes Path
1.142 +7 -2 jakarta-ant/docs/index.html
Index: index.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/index.html,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- index.html 2000/10/31 13:53:04 1.141
+++ index.html 2000/11/02 10:52:41 1.142
@@ -26,7 +26,7 @@
<li>Dave Walend (<a href="mailto:[EMAIL PROTECTED]">[EMAIL
PROTECTED]</a>)</li>
</ul>
-<p>Version 1.3 - 2000/10/31</p>
+<p>Version 1.3 - 2000/11/02</p>
<hr>
<h2>Table of Contents</h2>
@@ -782,6 +782,10 @@
can be <a href="#references">referred</a> to via
<code><patternset refid="non.test.sources"
/></code> by tasks that support this feature or by FileSets.</p>
+<p>Note that while the includes and excludes attributes accept
+multiple elements separated by commas or spaces, the nested
+<include> and <exclude> elements expect their name
+attribute to hold a single pattern.</p>
<h3><a name="fileset">FileSets</a></h3>
<p>FileSets are groups of files. These files can be found in a
directory tree starting in a base directory and are matched by
@@ -2755,7 +2759,8 @@
debug="on">
<src path="${src}" />
<src path="${src2}" />
- <include name="mypackage/p1/**,mypackage/p2/**" />
+ <include name="mypackage/p1/**" />
+ <include name="mypackage/p2/**" />
<exclude name="mypackage/p1/testpackage/**" />
</javac></pre>