You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2003/01/22 14:27:14 UTC

cvs commit: jakarta-ant/src/main/org/apache/tools/ant/util SourceFileScanner.java SourceSelector.java

bodewig     2003/01/22 05:27:14

  Modified:    src/main/org/apache/tools/ant DirectoryScanner.java
               src/main/org/apache/tools/ant/taskdefs Zip.java
               src/main/org/apache/tools/ant/types Resource.java
                        ResourceFactory.java ZipScanner.java
               src/main/org/apache/tools/ant/util SourceFileScanner.java
                        SourceSelector.java
  Log:
  Give proper credit
  
  Revision  Changes    Path
  1.35      +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.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- DirectoryScanner.java	22 Jan 2003 12:36:41 -0000	1.34
  +++ DirectoryScanner.java	22 Jan 2003 13:27:13 -0000	1.35
  @@ -149,6 +149,7 @@
    * <a href="mailto:ajkuiper@wxs.nl">ajkuiper@wxs.nl</a>
    * @author Magesh Umasankar
    * @author <a href="mailto:bruce@callenish.com">Bruce Atherton</a>
  + * @author <a href="mailto:levylambert@tiscali-dsl.de">Antoine Levy-Lambert</a>
    */
   public class DirectoryScanner implements ResourceScanner, SelectorScanner {
   
  
  
  
  1.88      +1 -0      jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Zip.java
  
  Index: Zip.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Zip.java,v
  retrieving revision 1.87
  retrieving revision 1.88
  diff -u -r1.87 -r1.88
  --- Zip.java	22 Jan 2003 12:36:41 -0000	1.87
  +++ Zip.java	22 Jan 2003 13:27:13 -0000	1.88
  @@ -95,6 +95,7 @@
    * @author James Davidson <a href="mailto:duncan@x180.com">duncan@x180.com</a>
    * @author Jon S. Stevens <a href="mailto:jon@clearink.com">jon@clearink.com</a>
    * @author <a href="mailto:stefan.bodewig@epost.de">Stefan Bodewig</a>
  + * @author <a href="mailto:levylambert@tiscali-dsl.de">Antoine Levy-Lambert</a>
    *
    * @since Ant 1.1
    *
  
  
  
  1.2       +1 -0      jakarta-ant/src/main/org/apache/tools/ant/types/Resource.java
  
  Index: Resource.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/types/Resource.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Resource.java	22 Jan 2003 12:36:41 -0000	1.1
  +++ Resource.java	22 Jan 2003 13:27:13 -0000	1.2
  @@ -60,6 +60,7 @@
    * and date/time information about a file, a zip entry or some similar
    * resource (URL, archive in a version control repository, ...)
    *
  + * @author <a href="mailto:levylambert@tiscali-dsl.de">Antoine Levy-Lambert</a>
    * @since Ant 1.5.2
    */
   public class Resource implements Cloneable {
  
  
  
  1.2       +1 -0      jakarta-ant/src/main/org/apache/tools/ant/types/ResourceFactory.java
  
  Index: ResourceFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/types/ResourceFactory.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ResourceFactory.java	22 Jan 2003 12:36:41 -0000	1.1
  +++ ResourceFactory.java	22 Jan 2003 13:27:13 -0000	1.2
  @@ -57,6 +57,7 @@
    * this interface should be implemented by classes (Scanners) needing
    * to deliver information about resources.
    *
  + * @author <a href="mailto:levylambert@tiscali-dsl.de">Antoine Levy-Lambert</a>
    * @since Ant 1.5.2
    */
   public interface ResourceFactory {
  
  
  
  1.8       +1 -0      jakarta-ant/src/main/org/apache/tools/ant/types/ZipScanner.java
  
  Index: ZipScanner.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/types/ZipScanner.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ZipScanner.java	22 Jan 2003 12:36:41 -0000	1.7
  +++ ZipScanner.java	22 Jan 2003 13:27:13 -0000	1.8
  @@ -74,6 +74,7 @@
    * the matching Zip entries.
    *
    * @author Don Ferguson <a href="mailto:don@bea.com">don@bea.com</a>
  + * @author <a href="mailto:levylambert@tiscali-dsl.de">Antoine Levy-Lambert</a>
    */
   public class ZipScanner extends DirectoryScanner {
   
  
  
  
  1.16      +1 -0      jakarta-ant/src/main/org/apache/tools/ant/util/SourceFileScanner.java
  
  Index: SourceFileScanner.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/util/SourceFileScanner.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- SourceFileScanner.java	22 Jan 2003 12:36:41 -0000	1.15
  +++ SourceFileScanner.java	22 Jan 2003 13:27:13 -0000	1.16
  @@ -71,6 +71,7 @@
    * are newer than their corresponding target files.</p>
    *
    * @author <a href="mailto:stefan.bodewig@epost.de">Stefan Bodewig</a>
  + * @author <a href="mailto:levylambert@tiscali-dsl.de">Antoine Levy-Lambert</a>
    */
   public class SourceFileScanner implements ResourceFactory {
   
  
  
  
  1.2       +2 -1      jakarta-ant/src/main/org/apache/tools/ant/util/SourceSelector.java
  
  Index: SourceSelector.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/util/SourceSelector.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SourceSelector.java	22 Jan 2003 12:36:41 -0000	1.1
  +++ SourceSelector.java	22 Jan 2003 13:27:13 -0000	1.2
  @@ -62,8 +62,9 @@
   import java.util.Vector;
   
   /**
  - * this class provides utilily methods to process resources
  + * this class provides utility methods to process resources
    *
  + * @author <a href="mailto:levylambert@tiscali-dsl.de">Antoine Levy-Lambert</a>
    * @since Ant 1.5.2
    */
   public class SourceSelector {
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>