bodewig 00/11/02 02:50:06
Modified: docs Tag: ANT_12_FIXES index.html
Log:
Clarify that includes attributes accepts multiple patterns while the
nested elements don't.
Revision Changes Path
No revision
No revision
1.136.2.2 +7 -2 jakarta-ant/docs/index.html
Index: index.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/index.html,v
retrieving revision 1.136.2.1
retrieving revision 1.136.2.2
diff -u -r1.136.2.1 -r1.136.2.2
--- index.html 2000/11/02 10:32:01 1.136.2.1
+++ index.html 2000/11/02 10:50:03 1.136.2.2
@@ -31,7 +31,7 @@
<li>Dave Walend (<a href="mailto:[EMAIL PROTECTED]">[EMAIL
PROTECTED]</a>)</li>
</ul>
-<p>Version 1.2 - 2000/10/27</p>
+<p>Version 1.2 - 2000/11/02</p>
<hr>
<h2>Table of Contents</h2>
@@ -787,6 +787,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>