bodewig     01/03/29 02:29:47

  Modified:    docs/manual dirtasks.html
               src/main/org/apache/tools/ant DirectoryScanner.java
  Log:
  Add pattern for CVS backup files to default excludes
  
  Revision  Changes    Path
  1.4       +3 -0      jakarta-ant/docs/manual/dirtasks.html
  
  Index: dirtasks.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/dirtasks.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- dirtasks.html     2001/03/09 08:54:34     1.3
  +++ dirtasks.html     2001/03/29 10:29:46     1.4
  @@ -152,10 +152,13 @@
   <pre>
        **/*~
        **/#*#
  +     **/.#*
        **/%*%
        **/CVS
        **/CVS/**
        **/.cvsignore
  +     **/SCCS
  +     **/SCCS/**
   </pre>
   <p>If you do not want these default excludes applied, you may disable them 
with the 
   <code>defaultexcludes=&quot;no&quot;</code> attribute.</p>
  
  
  
  1.12      +1 -0      
jakarta-ant/src/main/org/apache/tools/ant/DirectoryScanner.java
  
  Index: DirectoryScanner.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/DirectoryScanner.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- DirectoryScanner.java     2001/03/15 08:32:12     1.11
  +++ DirectoryScanner.java     2001/03/29 10:29:46     1.12
  @@ -143,6 +143,7 @@
       protected final static String[] DEFAULTEXCLUDES = {
           "**/*~",
           "**/#*#",
  +        "**/.#*",
           "**/%*%",
           "**/CVS",
           "**/CVS/**",
  
  
  

Reply via email to