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>&lt;patternset refid=&quot;non.test.sources&quot;
   /&gt;</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
  +&lt;include&gt; and &lt;exclude&gt; 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=&quot;on&quot;&gt;
       &lt;src path=&quot;${src}&quot; /&gt;
       &lt;src path=&quot;${src2}&quot; /&gt;
  -    &lt;include name=&quot;mypackage/p1/**,mypackage/p2/**&quot; /&gt;
  +    &lt;include name=&quot;mypackage/p1/**&quot; /&gt;
  +    &lt;include name=&quot;mypackage/p2/**&quot; /&gt;
       &lt;exclude name=&quot;mypackage/p1/testpackage/**&quot; /&gt;
     &lt;/javac&gt;</pre>
   
  
  
  

Reply via email to