jhm         2004/01/28 07:13:40

  Modified:    docs/manual/CoreTypes Tag: ANT_16_BRANCH selectors.html
  Log:
  Sync with HEAD. Bug 25801 + 2004 :-)
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.15.2.4  +7 -9      ant/docs/manual/CoreTypes/selectors.html
  
  Index: selectors.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTypes/selectors.html,v
  retrieving revision 1.15.2.3
  retrieving revision 1.15.2.4
  diff -u -r1.15.2.3 -r1.15.2.4
  --- selectors.html    25 Nov 2003 13:31:23 -0000      1.15.2.3
  +++ selectors.html    28 Jan 2004 15:13:39 -0000      1.15.2.4
  @@ -739,9 +739,9 @@
   
       <blockquote><pre>
       &lt;copy todir="dest">
  -        &lt;filelist dir="src">
  +        &lt;fileset dir="src">
               &lt;modified/>
  -        &lt;/filelist>
  +        &lt;/fileset>
       &lt;/copy
       </pre></blockquote>
       <p>This will copy all files from <i>src</i> to <i>dest</i> which content 
has changed.
  @@ -750,7 +750,7 @@
   
       <blockquote><pre>
       &lt;copy todir="dest">
  -        &lt;filelist dir="src">
  +        &lt;fileset dir="src">
               &lt;modified update="true"
                         seldirs="true"
                         cache="propertyfile"
  @@ -759,7 +759,7 @@
                   &lt;param name="cache.cachefile"     
value="cache.properties"/>
                   &lt;param name="algorithm.algorithm" value="MD5"/>
               &lt;/modified>
  -        &lt;/filelist>
  +        &lt;/fileset>
       &lt;/copy>
       </pre></blockquote>
     <p>This is the same example rewritten as CoreSelector with setting the all 
the values
  @@ -767,7 +767,7 @@
   
       <blockquote><pre>
       &lt;copy todir="dest">
  -        &lt;filelist dir="src">
  +        &lt;fileset dir="src">
               &lt;custom 
class="org.apache.tools.ant.types.selectors.modifiedselector.ModifiedSelector">
                   &lt;param name="update"     value="true"/>
                   &lt;param name="seldirs"    value="true"/>
  @@ -777,7 +777,7 @@
                   &lt;param name="cache.cachefile"     
value="cache.properties"/>
                   &lt;param name="algorithm.algorithm" value="MD5"/>
               &lt;/custom>
  -        &lt;/filelist>
  +        &lt;/fileset>
       &lt;/copy>
       </pre></blockquote>
     <p>And this is the same rewritten as CustomSelector.</p>
  @@ -1192,11 +1192,9 @@
       <a href="selectors-program.html">Programming Selectors in Ant</a>.</p>
   
       <hr>
  -    <p align="center">Copyright &copy; 2002-2003 Apache Software
  +    <p align="center">Copyright &copy; 2002-2004 Apache Software
       Foundation. All rights Reserved.</p>
   
     </body>
   
   </html>
  -
  -
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to