bodewig     2003/06/24 08:28:23

  Modified:    docs/manual/CoreTasks checksum.html
               src/main/org/apache/tools/ant/taskdefs Checksum.java
  Log:
  2003 and some 'since' information
  
  Revision  Changes    Path
  1.8       +2 -0      ant/docs/manual/CoreTasks/checksum.html
  
  Index: checksum.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/checksum.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- checksum.html     24 Jun 2003 15:06:03 -0000      1.7
  +++ checksum.html     24 Jun 2003 15:28:22 -0000      1.8
  @@ -31,6 +31,7 @@
       <td valign="top">The root directory where checksums should be 
written.</td>
       <td valign="top" align="center">No. If not specified, checksum files
         will be written to the same directory as the files themselves.
  +      <em>since Ant 1.6</em>
       </td>
     </tr>
     <tr>
  @@ -79,6 +80,7 @@
         the files within the filesets they are defined in will be used to
         compute this checksum. (The file separators in the paths will be
         converted to '/' before computation to ensure platform portability).
  +      <em>since Ant 1.6</em>
       </td>
       <td valign="top" align="center">No</td>
     </tr>
  
  
  
  1.31      +5 -1      ant/src/main/org/apache/tools/ant/taskdefs/Checksum.java
  
  Index: Checksum.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Checksum.java,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- Checksum.java     24 Jun 2003 15:06:11 -0000      1.30
  +++ Checksum.java     24 Jun 2003 15:28:23 -0000      1.31
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -176,6 +176,8 @@
       /**
        * Sets the root directory where checksum files will be
        * written/read
  +     *
  +     * @since Ant 1.6
        */
       public void setTodir(File todir) {
           this.todir = todir;
  @@ -215,6 +217,8 @@
       /**
        * Sets the property to hold the generated total checksum
        * for all files.
  +     *
  +     * @since Ant 1.6
        */
       public void setTotalproperty(String totalproperty) {
           this.totalproperty = totalproperty;
  
  
  

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

Reply via email to