antoine     2005/05/19 05:22:10

  Modified:    .        Tag: ANT_16_BRANCH build.xml ReleaseInstructions
                        WHATSNEW
               xdocs    Tag: ANT_16_BRANCH antnews.xml faq.xml index.xml
                        srcdownload.xml bindownload.xml
               docs     Tag: ANT_16_BRANCH antnews.html faq.html index.html
                        srcdownload.html bindownload.html
               docs/manual Tag: ANT_16_BRANCH cover.html
  Log:
  Preparation for Ant 1.6.4 release
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.392.2.44 +18 -4     ant/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ant/build.xml,v
  retrieving revision 1.392.2.43
  retrieving revision 1.392.2.44
  diff -u -r1.392.2.43 -r1.392.2.44
  --- build.xml 17 May 2005 05:16:16 -0000      1.392.2.43
  +++ build.xml 19 May 2005 12:22:09 -0000      1.392.2.44
  @@ -25,8 +25,8 @@
     -->
     <property name="Name" value="Apache Ant"/>
     <property name="name" value="ant"/>
  -  <property name="version" value="1.6.3"/>
  -  <property name="manifest-version" value="1.6.3"/>
  +  <property name="version" value="1.6.4"/>
  +  <property name="manifest-version" value="1.6.4"/>
     <property name="bootstrap.jar" value="ant-bootstrap.jar"/>
   
     <property name="ant.package" value="org/apache/tools/ant"/>
  @@ -1257,8 +1257,22 @@
     <target name="distribution" depends="main_distribution"
             description="--> creates the full Apache Ant distribution">
     </target>
  -
  -
  +  <!--
  +       ===================================================================
  +         Upload the distribution to cvs.apache.org for final releases
  +       ===================================================================
  +  -->
  +  <target name="upload" description="upload distribution">
  +    <fail unless="apache.user" message="set a property apache.user with your 
apache user"/>
  +    <fail unless="ssh.passphrase" message="set a property with your ssh 
passphrase"/>
  +    <fail unless="ssh.keyfile" message="set a property with your ssh 
keyfile"/>
  +    <fail unless="ssh.knownhosts" message="set a property with your ssh 
knownhosts"/>
  +    <scp todir="[EMAIL PROTECTED]:/www/www.apache.org/dist/ant" 
keyfile="${ssh.keyfile}" passphrase="${ssh.passphrase}" 
knownhosts="${ssh.knownhosts}">
  +      <fileset dir="${dist.base}">
  +        <include name="**/*"/>
  +      </fileset>
  +     </scp>
  +  </target>
     <!--
          ===================================================================
            Cleans up build and distribution directories
  
  
  
  1.17.2.8  +3 -1      ant/ReleaseInstructions
  
  Index: ReleaseInstructions
  ===================================================================
  RCS file: /home/cvs/ant/ReleaseInstructions,v
  retrieving revision 1.17.2.7
  retrieving revision 1.17.2.8
  diff -u -r1.17.2.7 -r1.17.2.8
  --- ReleaseInstructions       25 Apr 2005 08:03:39 -0000      1.17.2.7
  +++ ReleaseInstructions       19 May 2005 12:22:09 -0000      1.17.2.8
  @@ -58,6 +58,7 @@
   
           On the branch and on the main trunk (*):
   
  +            * WHATSNEW
               * xdocs/antnews.xml (Announcement)
               * xdocs/faq.xml (Ant's history details - not for betas)
               * xdocs/index.xml (Announcement, latest release details, link to
  @@ -164,7 +165,8 @@
       you'll have to do some house-keeping for the old release:
   
       * upload the new release files to
  -      /www/www.apache.org/dist/ant/[source|binary].
  +      /www/www.apache.org/dist/ant/[source|binaries].
  +      this can be done using the target upload of the build.xml
   
       * remove the symbolic links from /www/www.apache.org/dist/ant.
   
  
  
  
  1.503.2.228 +5 -2      ant/WHATSNEW
  
  Index: WHATSNEW
  ===================================================================
  RCS file: /home/cvs/ant/WHATSNEW,v
  retrieving revision 1.503.2.227
  retrieving revision 1.503.2.228
  diff -u -r1.503.2.227 -r1.503.2.228
  --- WHATSNEW  18 May 2005 16:52:05 -0000      1.503.2.227
  +++ WHATSNEW  19 May 2005 12:22:09 -0000      1.503.2.228
  @@ -1,5 +1,5 @@
  -Changes from Ant 1.6.3 to current Ant 1.6 CVS version
  -=====================================================
  +Changes from Ant 1.6.3 to Ant 1.6.4
  +===================================
   
   Changes that could break older environments:
   --------------------------------------------
  @@ -26,6 +26,9 @@
   
   * propertyset threw NPE with nested, mapped propertysets.
   
  +* <ftp> up to date calculations were wrong.
  +  Bugzilla report 34941.
  +
   Other changes:
   --------------
   
  
  
  
  No                   revision
  No                   revision
  1.48.2.12 +8 -9      ant/xdocs/antnews.xml
  
  Index: antnews.xml
  ===================================================================
  RCS file: /home/cvs/ant/xdocs/antnews.xml,v
  retrieving revision 1.48.2.11
  retrieving revision 1.48.2.12
  diff -u -r1.48.2.11 -r1.48.2.12
  --- antnews.xml       28 Apr 2005 13:12:30 -0000      1.48.2.11
  +++ antnews.xml       19 May 2005 12:22:09 -0000      1.48.2.12
  @@ -25,10 +25,17 @@
     </properties>
   
   <body>
  +  <section name="Ant 1.6.4">
  +    <h3>May 19, 2005 - Ant 1.6.4 Available</h3>
  +    <p>Apache Ant 1.6.4 is now available for <a
  +    href="http://ant.apache.org/bindownload.cgi";>download</a>.</p>
  +    <p>This is a bug fix release.</p>
  +  </section>
  +
     <section name="Ant 1.6.3">
       <h3>April 28, 2005 - Ant 1.6.3 Available</h3>
       <p>Apache Ant 1.6.3 is now available for <a
  -    href="http://ant.apache.org/bindownload.cgi";>download</a>.</p>
  +    href="http://archive.apache.org/dist/ant/";>download</a>.</p>
       <p>There is a large list of fixed bugs and enhancements.</p>
       <p>Some of the bugs affecting the embedded use of Ant are fixed.</p>
     </section>
  @@ -59,14 +66,6 @@
       
href="http://archive.apache.org/ant/antidote/";>http://archive.apache.org/ant/antidote/</a>.</p>
     </section>
   
  -  <section name="Ant 1.6.3beta1">
  -    <h3>March 31st, 2005 - Ant 1.6.3beta1 Available</h3>
  -    <p>Apache Ant 1.6.3beta1 is now available for <a
  -    href="http://cvs.apache.org/dist/ant/v1.6.3beta1";>download</a>.</p>
  -    <p>There is a large list of fixed bugs and enhancements.</p>
  -    <p>Some of the bugs affecting the embedded use of Ant are fixed.</p>
  -  </section>
  -
     <section name="Ant 1.6.2">
       <h3>July 16, 2004 - Ant 1.6.2 Available</h3>
       <p>Apache Ant 1.6.2 available for <a
  
  
  
  1.38.2.23 +4 -0      ant/xdocs/faq.xml
  
  Index: faq.xml
  ===================================================================
  RCS file: /home/cvs/ant/xdocs/faq.xml,v
  retrieving revision 1.38.2.22
  retrieving revision 1.38.2.23
  diff -u -r1.38.2.22 -r1.38.2.23
  --- faq.xml   10 May 2005 07:39:37 -0000      1.38.2.22
  +++ faq.xml   19 May 2005 12:22:09 -0000      1.38.2.23
  @@ -202,6 +202,10 @@
               <td>28 April 2005</td>
             </tr>
   
  +          <tr>
  +            <td>1.6.4</td>
  +            <td>19 May 2005</td>
  +          </tr>
           </table>
         </answer>
       </faq>
  
  
  
  1.52.2.15 +4 -4      ant/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/ant/xdocs/index.xml,v
  retrieving revision 1.52.2.14
  retrieving revision 1.52.2.15
  diff -u -r1.52.2.14 -r1.52.2.15
  --- index.xml 18 May 2005 09:34:44 -0000      1.52.2.14
  +++ index.xml 19 May 2005 12:22:09 -0000      1.52.2.15
  @@ -23,9 +23,9 @@
     </properties>
   
   <body>
  -  <section name="Ant 1.6.3">
  -    <h3>April 28, 2005 - Ant 1.6.3 Available</h3>
  -    <p>Apache Ant 1.6.3 is now available for <a
  +  <section name="Ant 1.6.4">
  +    <h3>May 19, 2005 - Ant 1.6.4 Available</h3>
  +    <p>Apache Ant 1.6.4 is now available for <a
       href="http://ant.apache.org/bindownload.cgi";>download</a>.</p>
       <p>There is a large list of fixed bugs and enhancements.</p>
       <p>Some of the bugs affecting the embedded use of Ant are fixed.</p>
  @@ -83,7 +83,7 @@
     <section name="Documentation">
   
   <p>
  -You can view the documentation for the current release (Apache Ant 1.6.3)
  +You can view the documentation for the current release (Apache Ant 1.6.4)
   <a href="manual/index.html">online</a>
   </p>
   
  
  
  
  1.15.2.8  +14 -14    ant/xdocs/srcdownload.xml
  
  Index: srcdownload.xml
  ===================================================================
  RCS file: /home/cvs/ant/xdocs/srcdownload.xml,v
  retrieving revision 1.15.2.7
  retrieving revision 1.15.2.8
  diff -u -r1.15.2.7 -r1.15.2.8
  --- srcdownload.xml   18 May 2005 09:34:44 -0000      1.15.2.7
  +++ srcdownload.xml   19 May 2005 12:22:09 -0000      1.15.2.8
  @@ -71,12 +71,12 @@
   
   <section name="Current Release of Ant">
   
  -<p>Currently, Apache Ant 1.6.3 is the best available version, see the
  +<p>Currently, Apache Ant 1.6.4 is the best available version, see the
   <a href="[preferred]/ant/README.html">release notes</a>.</p>
   
   <div class="warning">
   <div class="label">Note</div>
  -<div class="content">Ant 1.6.3 has been released on 28-April-2005 and
  +<div class="content">Ant 1.6.4 has been released on 19-May-2005 and
   may not be available on all mirrors for a few days.</div>
   </div>
   <br></br>
  @@ -88,19 +88,19 @@
   
   <ul>
   <li><code>.zip</code> archive: 
  -<a 
href="[preferred]/ant/source/apache-ant-1.6.3-src.zip">apache-ant-1.6.3-src.zip</a>
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.zip.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.zip.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/source/apache-ant-1.6.4-src.zip">apache-ant-1.6.4-src.zip</a>
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.zip.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.zip.md5";>MD5</a>]</li>
   
   <li><code>.tar.gz</code> archive: 
  -<a 
href="[preferred]/ant/source/apache-ant-1.6.3-src.tar.gz">apache-ant-1.6.3-src.tar.gz</a>
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.tar.gz.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.tar.gz.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/source/apache-ant-1.6.4-src.tar.gz">apache-ant-1.6.4-src.tar.gz</a>
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.tar.gz.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.tar.gz.md5";>MD5</a>]</li>
   
   <li><code>.tar.bz2</code> archive: 
  -<a 
href="[preferred]/ant/source/apache-ant-1.6.3-src.tar.bz2">apache-ant-1.6.3-src.tar.bz2</a>
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.tar.bz2.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.tar.bz2.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/source/apache-ant-1.6.4-src.tar.bz2">apache-ant-1.6.4-src.tar.bz2</a>
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.tar.bz2.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.tar.bz2.md5";>MD5</a>]</li>
   </ul>
   </section>
   
  @@ -143,17 +143,17 @@
   
   <p><code>
   % pgpk -a KEYS<br />
  -% pgpv apache-ant-1.6.3-src.tar.gz.asc<br />
  +% pgpv apache-ant-1.6.4-src.tar.gz.asc<br />
   </code>
   <em>or</em><br />
   <code>
   % pgp -ka KEYS<br />
  -% pgp apache-ant-1.6.3-src.tar.gz.asc<br />
  +% pgp apache-ant-1.6.4-src.tar.gz.asc<br />
   </code>
   <em>or</em><br />
   <code>
   % gpg --import KEYS<br />
  -% gpg --verify apache-ant-1.6.3-src.tar.gz.asc
  +% gpg --verify apache-ant-1.6.4-src.tar.gz.asc
   </code></p>
   
   <p>Alternatively, you can verify the MD5 signature on the files.  A
  
  
  
  1.17.2.8  +14 -14    ant/xdocs/bindownload.xml
  
  Index: bindownload.xml
  ===================================================================
  RCS file: /home/cvs/ant/xdocs/bindownload.xml,v
  retrieving revision 1.17.2.7
  retrieving revision 1.17.2.8
  diff -u -r1.17.2.7 -r1.17.2.8
  --- bindownload.xml   18 May 2005 09:34:44 -0000      1.17.2.7
  +++ bindownload.xml   19 May 2005 12:22:09 -0000      1.17.2.8
  @@ -75,12 +75,12 @@
   
   <section name="Current Release of Ant">
   
  -<p>Currently, Apache Ant 1.6.3 is the best available version, see the
  +<p>Currently, Apache Ant 1.6.4 is the best available version, see the
   <a href="[preferred]/ant/README.html">release notes</a>.</p>
   
   <div class="warning">
   <div class="label">Note</div>
  -<div class="content">Ant 1.6.3 has been released on 28-April-2005 and
  +<div class="content">Ant 1.6.4 has been released on 19-May-2005 and
   may not be available on all mirrors for a few days.</div>
   </div>
   <br></br>
  @@ -92,19 +92,19 @@
   
   <ul>
   <li><code>.zip</code> archive: 
  -<a 
href="[preferred]/ant/binaries/apache-ant-1.6.3-bin.zip">apache-ant-1.6.3-bin.zip</a>
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.zip.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.zip.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/binaries/apache-ant-1.6.4-bin.zip">apache-ant-1.6.4-bin.zip</a>
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.zip.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.zip.md5";>MD5</a>]</li>
   
   <li><code>.tar.gz</code> archive: 
  -<a 
href="[preferred]/ant/binaries/apache-ant-1.6.3-bin.tar.gz">apache-ant-1.6.3-bin.tar.gz</a>
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.tar.gz.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.tar.gz.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/binaries/apache-ant-1.6.4-bin.tar.gz">apache-ant-1.6.4-bin.tar.gz</a>
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.tar.gz.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.tar.gz.md5";>MD5</a>]</li>
   
   <li><code>.tar.bz2</code> archive: 
  -<a 
href="[preferred]/ant/binaries/apache-ant-1.6.3-bin.tar.bz2">apache-ant-1.6.3-bin.tar.bz2</a>
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.tar.bz2.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.tar.bz2.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/binaries/apache-ant-1.6.4-bin.tar.bz2">apache-ant-1.6.4-bin.tar.bz2</a>
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.tar.bz2.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.tar.bz2.md5";>MD5</a>]</li>
   </ul>
   </section>
   
  @@ -147,17 +147,17 @@
   
   <p><code>
   % pgpk -a KEYS<br />
  -% pgpv apache-ant-1.6.3-bin.tar.gz.asc<br />
  +% pgpv apache-ant-1.6.4-bin.tar.gz.asc<br />
   </code>
   <em>or</em><br />
   <code>
   % pgp -ka KEYS<br />
  -% pgp apache-ant-1.6.3-bin.tar.gz.asc<br />
  +% pgp apache-ant-1.6.4-bin.tar.gz.asc<br />
   </code>
   <em>or</em><br />
   <code>
   % gpg --import KEYS<br />
  -% gpg --verify apache-ant-1.6.3-bin.tar.gz.asc
  +% gpg --verify apache-ant-1.6.4-bin.tar.gz.asc
   </code></p>
   
   <p>Alternatively, you can verify the MD5 signature on the files.  A
  
  
  
  No                   revision
  No                   revision
  1.77.2.14 +8 -9      ant/docs/antnews.html
  
  Index: antnews.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/antnews.html,v
  retrieving revision 1.77.2.13
  retrieving revision 1.77.2.14
  diff -u -r1.77.2.13 -r1.77.2.14
  --- antnews.html      28 Apr 2005 13:12:31 -0000      1.77.2.13
  +++ antnews.html      19 May 2005 12:22:09 -0000      1.77.2.14
  @@ -177,11 +177,18 @@
     <div class="content">
       <h1 class="title">News</h1>
               <h3 class="section">
  +      <a name="Ant 1.6.4"></a>
  +      Ant 1.6.4
  +    </h3>
  +                        <h3>May 19, 2005 - Ant 1.6.4 Available</h3>
  +                                <p>Apache Ant 1.6.4 is now available for <a 
href="http://ant.apache.org/bindownload.cgi";>download</a>.</p>
  +                                <p>This is a bug fix release.</p>
  +                        <h3 class="section">
         <a name="Ant 1.6.3"></a>
         Ant 1.6.3
       </h3>
                           <h3>April 28, 2005 - Ant 1.6.3 Available</h3>
  -                                <p>Apache Ant 1.6.3 is now available for <a 
href="http://ant.apache.org/bindownload.cgi";>download</a>.</p>
  +                                <p>Apache Ant 1.6.3 is now available for <a 
href="http://archive.apache.org/dist/ant/";>download</a>.</p>
                                   <p>There is a large list of fixed bugs and 
enhancements.</p>
                                   <p>Some of the bugs affecting the embedded 
use of Ant are fixed.</p>
                           <h3 class="section">
  @@ -206,14 +213,6 @@
                                   <p>If you are interested in Antidote's 
sources to learn from or
       build on it, you can find snapshots at <a 
href="http://archive.apache.org/ant/antidote/";>http://archive.apache.org/ant/antidote/</a>.</p>
                           <h3 class="section">
  -      <a name="Ant 1.6.3beta1"></a>
  -      Ant 1.6.3beta1
  -    </h3>
  -                        <h3>March 31st, 2005 - Ant 1.6.3beta1 Available</h3>
  -                                <p>Apache Ant 1.6.3beta1 is now available 
for <a href="http://cvs.apache.org/dist/ant/v1.6.3beta1";>download</a>.</p>
  -                                <p>There is a large list of fixed bugs and 
enhancements.</p>
  -                                <p>Some of the bugs affecting the embedded 
use of Ant are fixed.</p>
  -                        <h3 class="section">
         <a name="Ant 1.6.2"></a>
         Ant 1.6.2
       </h3>
  
  
  
  1.77.2.25 +10 -0     ant/docs/faq.html
  
  Index: faq.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/faq.html,v
  retrieving revision 1.77.2.24
  retrieving revision 1.77.2.25
  diff -u -r1.77.2.24 -r1.77.2.25
  --- faq.html  10 May 2005 07:39:37 -0000      1.77.2.24
  +++ faq.html  19 May 2005 12:22:09 -0000      1.77.2.25
  @@ -634,6 +634,16 @@
             28 April 2005
         </td>
         </tr>
  +                  <tr>
  +                      <td colspan="1" rowspan="1"
  +      valign="top" align="left">
  +          1.6.4
  +      </td>
  +                          <td colspan="1" rowspan="1"
  +      valign="top" align="left">
  +          19 May 2005
  +      </td>
  +      </tr>
           </table>
                                   <p class="faq">
         <a name="no-gnu-tar"></a>
  
  
  
  1.287.2.16 +5 -13     ant/docs/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/index.html,v
  retrieving revision 1.287.2.15
  retrieving revision 1.287.2.16
  diff -u -r1.287.2.15 -r1.287.2.16
  --- index.html        29 Apr 2005 08:37:30 -0000      1.287.2.15
  +++ index.html        19 May 2005 12:22:10 -0000      1.287.2.16
  @@ -173,11 +173,11 @@
     <div class="content">
       <h1 class="title">Welcome</h1>
               <h3 class="section">
  -      <a name="Ant 1.6.3"></a>
  -      Ant 1.6.3
  +      <a name="Ant 1.6.4"></a>
  +      Ant 1.6.4
       </h3>
  -                        <h3>April 28, 2005 - Ant 1.6.3 Available</h3>
  -                                <p>Apache Ant 1.6.3 is now available for <a 
href="http://ant.apache.org/bindownload.cgi";>download</a>.</p>
  +                        <h3>May 19, 2005 - Ant 1.6.4 Available</h3>
  +                                <p>Apache Ant 1.6.4 is now available for <a 
href="http://ant.apache.org/bindownload.cgi";>download</a>.</p>
                                   <p>There is a large list of fixed bugs and 
enhancements.</p>
                                   <p>Some of the bugs affecting the embedded 
use of Ant are fixed.</p>
                           <h3 class="section">
  @@ -228,21 +228,13 @@
         Documentation
       </h3>
                           <p>
  -You can view the documentation for the current release (Apache Ant 1.6.3)
  +You can view the documentation for the current release (Apache Ant 1.6.4)
   <a href="manual/index.html">online</a>
   </p>
                                   <p>
   Comprehensive documentation is included in the source and binary 
distributions.
   </p>
                           <h3 class="section">
  -      <a name="Nightly Builds"></a>
  -      Nightly Builds
  -    </h3>
  -                        <p>
  -    If you wish to use the latest Ant features, you can try downloading a 
nightly
  -    build from <a 
href="http://brutus.apache.org/~nightlybuild/builds/ant/";>here</a>
  -    </p>
  -                        <h3 class="section">
         <a name="Get Involved"></a>
         Get Involved
       </h3>
  
  
  
  1.35.2.10 +16 -17    ant/docs/srcdownload.html
  
  Index: srcdownload.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/srcdownload.html,v
  retrieving revision 1.35.2.9
  retrieving revision 1.35.2.10
  diff -u -r1.35.2.9 -r1.35.2.10
  --- srcdownload.html  28 Apr 2005 13:12:32 -0000      1.35.2.9
  +++ srcdownload.html  19 May 2005 12:22:10 -0000      1.35.2.10
  @@ -214,11 +214,11 @@
         <a name="Current Release of Ant"></a>
         Current Release of Ant
       </h3>
  -                        <p>Currently, Apache Ant 1.6.3 is the best available 
version, see the
  +                        <p>Currently, Apache Ant 1.6.4 is the best available 
version, see the
   <a href="[preferred]/ant/README.html">release notes</a>.</p>
                                   <div class="warning">
   <div class="label">Note</div>
  -<div class="content">Ant 1.6.3 has been released on 28-April-2005 and
  +<div class="content">Ant 1.6.4 has been released on 19-May-2005 and
   may not be available on all mirrors for a few days.</div>
   </div>
                                   <br />
  @@ -229,27 +229,26 @@
   </div>
                                   <ul>
   <li><code>.zip</code> archive: 
  -<a 
href="[preferred]/ant/source/apache-ant-1.6.3-src.zip">apache-ant-1.6.3-src.zip</a>
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.zip.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.zip.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/source/apache-ant-1.6.4-src.zip">apache-ant-1.6.4-src.zip</a>
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.zip.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.zip.md5";>MD5</a>]</li>
   
   <li><code>.tar.gz</code> archive: 
  -<a 
href="[preferred]/ant/source/apache-ant-1.6.3-src.tar.gz">apache-ant-1.6.3-src.tar.gz</a>
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.tar.gz.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.tar.gz.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/source/apache-ant-1.6.4-src.tar.gz">apache-ant-1.6.4-src.tar.gz</a>
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.tar.gz.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.tar.gz.md5";>MD5</a>]</li>
   
   <li><code>.tar.bz2</code> archive: 
  -<a 
href="[preferred]/ant/source/apache-ant-1.6.3-src.tar.bz2">apache-ant-1.6.3-src.tar.bz2</a>
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.tar.bz2.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.3-src.tar.bz2.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/source/apache-ant-1.6.4-src.tar.bz2">apache-ant-1.6.4-src.tar.bz2</a>
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.tar.bz2.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/source/apache-ant-1.6.4-src.tar.bz2.md5";>MD5</a>]</li>
   </ul>
                           <h3 class="section">
         <a name="Nightly Builds"></a>
         Nightly Builds
       </h3>
  -                        <p>If you wish to use the latest Ant features, you 
can try downloading a
  -<a href="http://brutus.apache.org/~nightlybuild/builds/ant/";>nightly 
build</a>.
  -</p>
  +                        <p>Are currently not available, we hope to restore 
that service soon.</p>
  +                                <p>If you want to build Ant from sources, 
you can use a <a href="http://cvs.apache.org/snapshots/ant/";>CVS 
snapshot</a>.</p>
                           <h3 class="section">
         <a name="Old Ant Releases"></a>
         Old Ant Releases
  @@ -272,17 +271,17 @@
   using</p>
                                   <p><code>
   % pgpk -a KEYS<br />
  -% pgpv apache-ant-1.6.3-src.tar.gz.asc<br />
  +% pgpv apache-ant-1.6.4-src.tar.gz.asc<br />
   </code>
   <em>or</em><br />
   <code>
   % pgp -ka KEYS<br />
  -% pgp apache-ant-1.6.3-src.tar.gz.asc<br />
  +% pgp apache-ant-1.6.4-src.tar.gz.asc<br />
   </code>
   <em>or</em><br />
   <code>
   % gpg --import KEYS<br />
  -% gpg --verify apache-ant-1.6.3-src.tar.gz.asc
  +% gpg --verify apache-ant-1.6.4-src.tar.gz.asc
   </code></p>
                                   <p>Alternatively, you can verify the MD5 
signature on the files.  A
   unix program called <code>md5</code> or <code>md5sum</code> is
  
  
  
  1.36.2.10 +16 -17    ant/docs/bindownload.html
  
  Index: bindownload.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/bindownload.html,v
  retrieving revision 1.36.2.9
  retrieving revision 1.36.2.10
  diff -u -r1.36.2.9 -r1.36.2.10
  --- bindownload.html  28 Apr 2005 13:12:32 -0000      1.36.2.9
  +++ bindownload.html  19 May 2005 12:22:10 -0000      1.36.2.10
  @@ -216,11 +216,11 @@
         <a name="Current Release of Ant"></a>
         Current Release of Ant
       </h3>
  -                        <p>Currently, Apache Ant 1.6.3 is the best available 
version, see the
  +                        <p>Currently, Apache Ant 1.6.4 is the best available 
version, see the
   <a href="[preferred]/ant/README.html">release notes</a>.</p>
                                   <div class="warning">
   <div class="label">Note</div>
  -<div class="content">Ant 1.6.3 has been released on 28-April-2005 and
  +<div class="content">Ant 1.6.4 has been released on 19-May-2005 and
   may not be available on all mirrors for a few days.</div>
   </div>
                                   <br />
  @@ -231,27 +231,26 @@
   </div>
                                   <ul>
   <li><code>.zip</code> archive: 
  -<a 
href="[preferred]/ant/binaries/apache-ant-1.6.3-bin.zip">apache-ant-1.6.3-bin.zip</a>
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.zip.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.zip.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/binaries/apache-ant-1.6.4-bin.zip">apache-ant-1.6.4-bin.zip</a>
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.zip.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.zip.md5";>MD5</a>]</li>
   
   <li><code>.tar.gz</code> archive: 
  -<a 
href="[preferred]/ant/binaries/apache-ant-1.6.3-bin.tar.gz">apache-ant-1.6.3-bin.tar.gz</a>
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.tar.gz.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.tar.gz.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/binaries/apache-ant-1.6.4-bin.tar.gz">apache-ant-1.6.4-bin.tar.gz</a>
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.tar.gz.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.tar.gz.md5";>MD5</a>]</li>
   
   <li><code>.tar.bz2</code> archive: 
  -<a 
href="[preferred]/ant/binaries/apache-ant-1.6.3-bin.tar.bz2">apache-ant-1.6.3-bin.tar.bz2</a>
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.tar.bz2.asc";>PGP</a>]
  -[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.3-bin.tar.bz2.md5";>MD5</a>]</li>
  +<a 
href="[preferred]/ant/binaries/apache-ant-1.6.4-bin.tar.bz2">apache-ant-1.6.4-bin.tar.bz2</a>
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.tar.bz2.asc";>PGP</a>]
  +[<a 
href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.4-bin.tar.bz2.md5";>MD5</a>]</li>
   </ul>
                           <h3 class="section">
         <a name="Nightly Builds"></a>
         Nightly Builds
       </h3>
  -                        <p>If you wish to use the latest Ant features, you 
can try downloading a
  -<a href="http://brutus.apache.org/~nightlybuild/builds/ant/";>nightly 
build</a>.
  -</p>
  +                        <p>Are currently not available, we hope to restore 
that service soon.</p>
  +                                <p>If you want to build Ant from sources, 
you can use a <a href="http://cvs.apache.org/snapshots/ant/";>CVS 
snapshot</a>.</p>
                           <h3 class="section">
         <a name="Old Ant Releases"></a>
         Old Ant Releases
  @@ -274,17 +273,17 @@
   using</p>
                                   <p><code>
   % pgpk -a KEYS<br />
  -% pgpv apache-ant-1.6.3-bin.tar.gz.asc<br />
  +% pgpv apache-ant-1.6.4-bin.tar.gz.asc<br />
   </code>
   <em>or</em><br />
   <code>
   % pgp -ka KEYS<br />
  -% pgp apache-ant-1.6.3-bin.tar.gz.asc<br />
  +% pgp apache-ant-1.6.4-bin.tar.gz.asc<br />
   </code>
   <em>or</em><br />
   <code>
   % gpg --import KEYS<br />
  -% gpg --verify apache-ant-1.6.3-bin.tar.gz.asc
  +% gpg --verify apache-ant-1.6.4-bin.tar.gz.asc
   </code></p>
                                   <p>Alternatively, you can verify the MD5 
signature on the files.  A
   unix program called <code>md5</code> or <code>md5sum</code> is
  
  
  
  No                   revision
  No                   revision
  1.6.2.11  +3 -3      ant/docs/manual/cover.html
  
  Index: cover.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/cover.html,v
  retrieving revision 1.6.2.10
  retrieving revision 1.6.2.11
  diff -u -r1.6.2.10 -r1.6.2.11
  --- cover.html        28 Apr 2005 13:12:30 -0000      1.6.2.10
  +++ cover.html        19 May 2005 12:22:10 -0000      1.6.2.11
  @@ -2,15 +2,15 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Apache Ant 1.6.3 User Manual</title>
  +<title>Apache Ant 1.6.4 User Manual</title>
   <link rel="stylesheet" type="text/css" href="stylesheets/antmanual.css">
   </head>
   
   <body bgcolor="#FFFFFF">
   <div align="center"> 
     <h1><img src="../images/ant_logo_large.gif" width="190" height="120"></h1>
  -  <h1>Apache Ant 1.6.3 Manual</h1>
  -  <p align="left">This is the manual for version 1.6.3 of
  +  <h1>Apache Ant 1.6.4 Manual</h1>
  +  <p align="left">This is the manual for version 1.6.4 of
     <a href="http://ant.apache.org/index.html";>Apache Ant</a>. 
       If your version 
       of Ant (as verified with <tt>ant -version</tt>) is older or newer than 
this 
  
  
  

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

Reply via email to