You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by an...@apache.org on 2006/12/13 03:51:07 UTC

svn commit: r486471 - in /ant/core/trunk: ./ docs/ docs/manual/ xdocs/ xdocs/stylesheets/

Author: antoine
Date: Tue Dec 12 18:51:05 2006
New Revision: 486471

URL: http://svn.apache.org/viewvc?view=rev&rev=486471
Log:
preparation for the 1.7.0 release

Added:
    ant/core/trunk/docs/nightlies.html
    ant/core/trunk/xdocs/nightlies.xml
Modified:
    ant/core/trunk/WHATSNEW
    ant/core/trunk/build.xml
    ant/core/trunk/docs/antnews.html
    ant/core/trunk/docs/bindownload.html
    ant/core/trunk/docs/bugs.html
    ant/core/trunk/docs/bylaws.html
    ant/core/trunk/docs/contributors.html
    ant/core/trunk/docs/external.html
    ant/core/trunk/docs/faq.html
    ant/core/trunk/docs/index.html
    ant/core/trunk/docs/legal.html
    ant/core/trunk/docs/license.html
    ant/core/trunk/docs/mail.html
    ant/core/trunk/docs/manual/cover.html
    ant/core/trunk/docs/manual/credits.html
    ant/core/trunk/docs/mission.html
    ant/core/trunk/docs/problems.html
    ant/core/trunk/docs/projects.html
    ant/core/trunk/docs/resources.html
    ant/core/trunk/docs/srcdownload.html
    ant/core/trunk/docs/svn.html
    ant/core/trunk/xdocs/antnews.xml
    ant/core/trunk/xdocs/bindownload.xml
    ant/core/trunk/xdocs/faq.xml
    ant/core/trunk/xdocs/index.xml
    ant/core/trunk/xdocs/srcdownload.xml
    ant/core/trunk/xdocs/stylesheets/project.xml

Modified: ant/core/trunk/WHATSNEW
URL: http://svn.apache.org/viewvc/ant/core/trunk/WHATSNEW?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/WHATSNEW (original)
+++ ant/core/trunk/WHATSNEW Tue Dec 12 18:51:05 2006
@@ -1,5 +1,5 @@
-Changes from Ant 1.7.0RC1 to current SVN version
-==================================================
+Changes from Ant 1.6.5 to Ant 1.7.0
+===================================
 
 Changes that could break older environments:
 -------------------------------------------
@@ -12,6 +12,104 @@
 * The -noproxy option which was in the previous 1.7 alpha and beta
   releases has been removed. It is the default behavior and not needed.
 
+* Removed launcher classes from nodeps jar.
+
+* <classconstants> filter reader uses ISO-8859-1 encoding to read
+  the java class file. Bugzilla report 33604.
+
+* Defer reference process. Bugzilla 36955, 34458, 37688.
+  This may break build files in which a reference was set in a target which was
+  never executed. Historically, Ant would set the reference early on, during parse
+  time, so the datatype would be defined. Now it requires the reference to have
+  been in a bit of the build file which was actually executed. If you get
+  an error about an undefined reference, locate the reference and move it somewhere
+  where it is used, or fix the depends attribute of the target in question to
+  depend on the target which defines the reference/datatype.
+
+* <script> and <scriptdef> now set the current thread context.
+
+* Unrestrict the dbvendor names in the websphere element of the ejbjar task.
+  Bugzilla Report 40475.
+
+* <env> nested element in <java>, <exec> and others is now case-insensitive
+  for windows OS. Bugzilla Report 28874.
+
+* Removed support for xalan1 completely. Users of Xalan1 for Ant builds will
+  have to stay at ant 1.6.5 or upgrade to xalan2.
+
+* Use org.apache.log4j.Logger instead of org.apache.log4j.Category.
+  Category has been deprecated for ~2 years and has been removed from
+  the log4j code.  Logger was introduced in log4j 1.2 so users of
+  log4j 1.1 and log4j 1.0 need to upgrade to a newer version of log4j.
+  Bugzilla Report 31951.
+
+* build.sysclasspath now also affects the bootclasspath handling of
+  spawned Java VMs.  If you set build.sysclasspath to anything other
+  than "ignore" (or leave it unset, since "ignore" is the default when
+  it comes to bootclasspath handling), then the bootclasspath of the
+  VM running Ant will be added to the bootclasspath you've specified.
+
+* The <java fork="false"> now as per default installs a security manager
+  using the default permissions. This is now independent of the
+  failonerror attribute.  Bugzilla report 33361.
+
+* <signjar> now notices when the jar and signedjar are equal, and switches
+  to the same dependency logic as when signedjar is omitted. This may break
+  something that depended upon signing in this situation. However, since
+  invoking the JDK jarsigner program with -signedjar set to the source jar
+  actually crashes the JVM on our (Java1.5) systems, we don't think any
+  build files which actually worked will be affected by the change.
+
+* <signjar> used to ignore a nested fileset when a jar was also provided as an
+  attribute, printing a warning message; now it signs files in the fileset.
+
+* An improved method of handling timestamp granularity differences between
+  client and server was added to the <ftp> task.  FTP servers typically
+  have HH:mm timestamps whereas local filesystems have HH:mm:ss timestamps.
+  Previously, this required tweaking with the timediffmillis attribute
+  which also was used to handle timezone differences.  Now, there is a new
+  timestampgranularity attribute.  The default value for get operations is 0
+  since the user has the more powerful preservelastmodified attribute to work
+  with.  Since this is not available on put operations the default value
+  adds a minute to the server timestamp in order to account for this,
+  Scripts which previously used timediffmillis to do this compensation may
+  need to be rewritten.  timediffmillis has now been deprecated.
+
+* On Java1.5+, Ant automatically sets the system property
+  java.net.useSystemProxies to true, which gives it automatic use of the local
+  IE (Windows) or Gnome2 (Unix/Linux) proxy settings. This may break any build
+  file that somehow relied on content outside the firewall being unreachable:
+  use the -noproxy command-line option to disable this new feature.
+  Note that the Java1.5 proxy configuration system still does not
+  appear to work reliably on Windows or Linux.
+
+* Support for the XSL:P XML parser has been removed.
+  Bugzilla Report 23455.
+
+* Visual Age for Java optional tasks removed.
+
+* Testlet (test) optional task removed.
+
+* Icontract optional task removed.
+
+* Metamata (maudit, mmetrics, and mparse tasks) removed.
+
+* Sitraka (jpcoverage, jpcovmerge, jpcovreport) tasks suppressed.
+
+* <fixcrlf> used \r (Mac) line endings on OS X, whose proper line separator
+  is \n (Unix).  Bugzilla report 39585.
+
+* <scp> now optionally supports the sftp protocol, you may need a
+  newer jsch.jar.  Bugzilla Report 39373.
+
+* Ant launcher program prints errors to stderr, and exits with a 2 exit code
+  value if, for any reason, it cannot actually start Ant proper. This will only
+  affect programs/scripts that called the launcher and which did not want to
+  receive an error if Ant itself would not start
+
+* All .NET tasks are now deprecated in favor of the new .NET Antlib:
+  http://ant.apache.org/antlibs/dotnet/index.html
+
 Fixed bugs:
 -----------
 * Directory deletion did not work properly.
@@ -48,43 +146,6 @@
   not e.g. pick up files that didn't exist the first time through.
   Bugzilla 41151.
 
-Other changes:
---------------
-
-* Warn user when a reference in the form "${refid}" cannot be resolved as this
-  is a sign they probably meant "refid" (misuse of property expansion syntax).
-
-* Add dtd to javadoc for junit.
-  Bugzilla 40754.
-
-* Add quiet attribute to loadfile/resource.
-  Bugzilla 38249.
-
-* Make Locator#fromURI also append the drive letter when running under Windows 
-  with JDK 1.3 or 1.2.
-
-* Do not uppercase the drive letters systematically in FileUtils#normalize.
-
-* Java 5 enumerations may now be used as values in XML attributes in place of
-  EnumeratedAttribute. Bugzilla 41058.
-
-* Create a pom file for ant-testutil and add ant-testutil.jar to the ant
-  distribution. Bugzilla 40980.
-
-* Roll back automatic proxy enabling on Java 1.5. It broke things like
-  Oracle JDBC drivers, and Ant itself on IBM's JVM on AIX, and didnt
-  seem to work to well the rest of the time.
-  To enable the feature, use the -autoproxy command line option. 
-
-Changes from Ant 1.7.0Beta3 to Ant 1.7.0RC1
-===========================================
-
-Changes that could break older environments:
--------------------------------------------
-
-Fixed bugs:
------------
-
 * OOM caused by IH holding on to classes and thus their classloaders.
   Bugzilla 28283 and 33061.
 
@@ -99,58 +160,6 @@
 
 * JUnitTestRunner had a NPE when unable to create parser, the exception
   containing the error did not get reported. Bugzilla 36733.
-  
-Other changes:
---------------
-
-* Upgraded XML API and parser to Xerces 2.8.1
-
-* A code review of some threaded logic has tightened up the synchronization
-  of Watchdog, ExecuteWatchdog and ExecuteJava, which could reduce the occurence
-  of race conditions here, especially on Java1.5+.
-
-* Allow broken reference build files. The defer reference processing would
-  break too many files - so allow them with a warning.
-
-* Removed dependency on sun.misc.UUEncoder for UUMailer.
-
-* Added regex attribute to the echoproperties task.
-  Bugzilla 40019.
-
-* <war> task now allows you to omit the web.xml file. as this is optional
-  in the servlet 2.5 and Java EE 5 APIs. set needxmlfile="false" to
-  avoid a missing web.xml file from halting the build.  
-
-* Diagnostics catches and logs security exceptions when accessing system properties.
-
-* <javadoc> useexternalfile now applies to all command line arguments
-  of javadoc. Bugzilla report 40852.
-
-* javadoc/tag@description is now set to the name if description is
-  not specified. Bugzill report 32927.
-
-Changes from Ant 1.7.0Beta2 to Ant 1.7.0Beta3
-=============================================
-
-Changes that could break older environments:
--------------------------------------------
-
-* Removed launcher classes from nodeps jar.
-
-* <classconstants> filter reader uses ISO-8859-1 encoding to read
-  the java class file. Bugzilla report 33604.
-
-* Defer reference process. Bugzilla 36955, 34458, 37688.
-  This may break build files in which a reference was set in a target which was
-  never executed. Historically, Ant would set the reference early on, during parse
-  time, so the datatype would be defined. Now it requires the reference to have
-  been in a bit of the build file which was actually executed. If you get
-  an error about an undefined reference, locate the reference and move it somewhere
-  where it is used, or fix the depends attribute of the target in question to
-  depend on the target which defines the reference/datatype.
-
-Fixed bugs:
------------
 
 * <checksum> with file and todir option failed. Bugzilla report 37386.
 
@@ -197,44 +206,6 @@
   Since <path> is historically heavily used this was undesirable, and since it
   is also avoidable, the change to <path>'s taxonomy was reverted.
 
-Other changes:
---------------
-
-* Some performance improvements, including Bugzilla report 25778.
-
-* Add <matches> condition. Bugzilla report 28883.
-
-* Extending JAR-Task for SPI. Bugzilla report 31520.
-
-* Added <tokens> resource collection for convenient creation of string
-  resources from other resources' content. Inspired by Bugzilla 40504.
-
-* Added <compare> resource selector to select resources based on the
-  results of their comparison to other resources.
-
-* Added outputtoformatters attribute to <junit> to allow suppression
-  of noisey tests. Bugzilla report 12817.
-
-* Log level of message 'Overriding previous definition of reference to'
-  set to Verbose. Bugzilla report 17240.
-
-Changes from Ant 1.7.0Beta1 to Ant 1.7.0Beta2
-=============================================
-
-Changes that could break older environments:
--------------------------------------------
-
-* <script> and <scriptdef> now set the current thread context.
-
-* Unrestrict the dbvendor names in the websphere element of the ejbjar task.
-  Bugzilla Report 40475.
-
-* <env> nested element in <java>, <exec> and others is now case-insensitive
-  for windows OS. Bugzilla Report 28874.
-
-Fixed bugs:
------------
-
 * <zip filesonly="true"> included empty directories.  Bugzilla report 40258.
 
 * Invalid hash code of Target causes XmlLogger to fail.
@@ -262,122 +233,6 @@
 * <available> searched parent directories for files.
   Bugzilla report 37148.
 
-Other changes:
---------------
-
-* Added setbeans attribute to <script> to allow <script>'s to be
-  run without referencing all references.
-  Bugzilla report 37688.
-
-* Added classpath attribute and nested element to <script> to allow
-  the language jars to be specified in the build script.
-  Bugzilla report 29676.
-
-* Trim the driver attribute on the <sql> task. Bugzilla report 21228.
-
-* Allow (jar) files as well as directories to be given to jdepend.
-  Bugzilla report 28865.
-
-* Convert SplashTask to use NOT sun internal classes.
-  Bugzilla report 35619.
-
-* Made PatternSet#hasPatterns public to allow custom filesets access.
-  Bugzilla report 36772.
-
-* Added searchparents attribute to <available>. Bugzilla report 39549.
-
-* Tasks that don't extend Ant's Task class will now get the build file
-  location reflected into a method of the signature void setLocation(Location)
-  - if such a method exists.
-
-* Remove needless synchronization in DirectoryScanner.
-  Bugzilla report 40237.
-
-Changes from Ant 1.6.5 to Ant 1.7.0Beta1
-========================================
-
-Changes that could break older environments:
--------------------------------------------
-
-* Removed support for xalan1 completely. Users of Xalan1 for Ant builds will
-  have to stay at ant 1.6.5 or upgrade to xalan2.
-
-* Use org.apache.log4j.Logger instead of org.apache.log4j.Category.
-  Category has been deprecated for ~2 years and has been removed from
-  the log4j code.  Logger was introduced in log4j 1.2 so users of
-  log4j 1.1 and log4j 1.0 need to upgrade to a newer version of log4j.
-  Bugzilla Report 31951.
-
-* build.sysclasspath now also affects the bootclasspath handling of
-  spawned Java VMs.  If you set build.sysclasspath to anything other
-  than "ignore" (or leave it unset, since "ignore" is the default when
-  it comes to bootclasspath handling), then the bootclasspath of the
-  VM running Ant will be added to the bootclasspath you've specified.
-
-* The <java fork="false"> now as per default installs a security manager
-  using the default permissions. This is now independent of the
-  failonerror attribute.  Bugzilla report 33361.
-
-* <signjar> now notices when the jar and signedjar are equal, and switches
-  to the same dependency logic as when signedjar is omitted. This may break
-  something that depended upon signing in this situation. However, since
-  invoking the JDK jarsigner program with -signedjar set to the source jar
-  actually crashes the JVM on our (Java1.5) systems, we don't think any
-  build files which actually worked will be affected by the change.
-
-* <signjar> used to ignore a nested fileset when a jar was also provided as an
-  attribute, printing a warning message; now it signs files in the fileset.
-
-* An improved method of handling timestamp granularity differences between
-  client and server was added to the <ftp> task.  FTP servers typically
-  have HH:mm timestamps whereas local filesystems have HH:mm:ss timestamps.
-  Previously, this required tweaking with the timediffmillis attribute
-  which also was used to handle timezone differences.  Now, there is a new
-  timestampgranularity attribute.  The default value for get operations is 0
-  since the user has the more powerful preservelastmodified attribute to work
-  with.  Since this is not available on put operations the default value
-  adds a minute to the server timestamp in order to account for this,
-  Scripts which previously used timediffmillis to do this compensation may
-  need to be rewritten.  timediffmillis has now been deprecated.
-
-* On Java1.5+, Ant automatically sets the system property
-  java.net.useSystemProxies to true, which gives it automatic use of the local
-  IE (Windows) or Gnome2 (Unix/Linux) proxy settings. This may break any build
-  file that somehow relied on content outside the firewall being unreachable:
-  use the -noproxy command-line option to disable this new feature.
-  Note that the Java1.5 proxy configuration system still does not
-  appear to work reliably on Windows or Linux.
-
-* Support for the XSL:P XML parser has been removed.
-  Bugzilla Report 23455.
-
-* Visual Age for Java optional tasks removed.
-
-* Testlet (test) optional task removed.
-
-* Icontract optional task removed.
-
-* Metamata (maudit, mmetrics, and mparse tasks) removed.
-
-* Sitraka (jpcoverage, jpcovmerge, jpcovreport) tasks suppressed.
-
-* <fixcrlf> used \r (Mac) line endings on OS X, whose proper line separator
-  is \n (Unix).  Bugzilla report 39585.
-
-* <scp> now optionally supports the sftp protocol, you may need a
-  newer jsch.jar.  Bugzilla Report 39373.
-
-* Ant launcher program prints errors to stderr, and exits with a 2 exit code
-  value if, for any reason, it cannot actually start Ant proper. This will only
-  affect programs/scripts that called the launcher and which did not want to
-  receive an error if Ant itself would not start
-
-* All .NET tasks are now deprecated in favor of the new .NET Antlib:
-  http://ant.apache.org/antlibs/dotnet/index.html
-
-Fixed bugs:
------------
-
 * The build could be halted if a file path contained more ".." components than
   the actual depth of the preceding path. Now such paths are left
   alone (meaning they will likely be treated as nonexistent
@@ -558,6 +413,103 @@
 
 Other changes:
 --------------
+
+* Warn user when a reference in the form "${refid}" cannot be resolved as this
+  is a sign they probably meant "refid" (misuse of property expansion syntax).
+
+* Add dtd to javadoc for junit.
+  Bugzilla 40754.
+
+* Add quiet attribute to loadfile/resource.
+  Bugzilla 38249.
+
+* Make Locator#fromURI also append the drive letter when running under Windows 
+  with JDK 1.3 or 1.2.
+
+* Do not uppercase the drive letters systematically in FileUtils#normalize.
+
+* Java 5 enumerations may now be used as values in XML attributes in place of
+  EnumeratedAttribute. Bugzilla 41058.
+
+* Create a pom file for ant-testutil and add ant-testutil.jar to the ant
+  distribution. Bugzilla 40980.
+
+* Roll back automatic proxy enabling on Java 1.5. It broke things like
+  Oracle JDBC drivers, and Ant itself on IBM's JVM on AIX, and didnt
+  seem to work to well the rest of the time.
+  To enable the feature, use the -autoproxy command line option. 
+
+* Upgraded XML API and parser to Xerces 2.8.1
+
+* A code review of some threaded logic has tightened up the synchronization
+  of Watchdog, ExecuteWatchdog and ExecuteJava, which could reduce the occurence
+  of race conditions here, especially on Java1.5+.
+
+* Allow broken reference build files. The defer reference processing would
+  break too many files - so allow them with a warning.
+
+* Removed dependency on sun.misc.UUEncoder for UUMailer.
+
+* Added regex attribute to the echoproperties task.
+  Bugzilla 40019.
+
+* <war> task now allows you to omit the web.xml file. as this is optional
+  in the servlet 2.5 and Java EE 5 APIs. set needxmlfile="false" to
+  avoid a missing web.xml file from halting the build.  
+
+* Diagnostics catches and logs security exceptions when accessing system properties.
+
+* <javadoc> useexternalfile now applies to all command line arguments
+  of javadoc. Bugzilla report 40852.
+
+* javadoc/tag@description is now set to the name if description is
+  not specified. Bugzill report 32927.
+
+* Some performance improvements, including Bugzilla report 25778.
+
+* Add <matches> condition. Bugzilla report 28883.
+
+* Extending JAR-Task for SPI. Bugzilla report 31520.
+
+* Added <tokens> resource collection for convenient creation of string
+  resources from other resources' content. Inspired by Bugzilla 40504.
+
+* Added <compare> resource selector to select resources based on the
+  results of their comparison to other resources.
+
+* Added outputtoformatters attribute to <junit> to allow suppression
+  of noisey tests. Bugzilla report 12817.
+
+* Log level of message 'Overriding previous definition of reference to'
+  set to Verbose. Bugzilla report 17240.
+
+* Added setbeans attribute to <script> to allow <script>'s to be
+  run without referencing all references.
+  Bugzilla report 37688.
+
+* Added classpath attribute and nested element to <script> to allow
+  the language jars to be specified in the build script.
+  Bugzilla report 29676.
+
+* Trim the driver attribute on the <sql> task. Bugzilla report 21228.
+
+* Allow (jar) files as well as directories to be given to jdepend.
+  Bugzilla report 28865.
+
+* Convert SplashTask to use NOT sun internal classes.
+  Bugzilla report 35619.
+
+* Made PatternSet#hasPatterns public to allow custom filesets access.
+  Bugzilla report 36772.
+
+* Added searchparents attribute to <available>. Bugzilla report 39549.
+
+* Tasks that don't extend Ant's Task class will now get the build file
+  location reflected into a method of the signature void setLocation(Location)
+  - if such a method exists.
+
+* Remove needless synchronization in DirectoryScanner.
+  Bugzilla report 40237.
 
 * Improved recursion detection for lines with multiple matches of same token
   on a single line.  Bugzilla report 38456.

Modified: ant/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/build.xml?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/build.xml (original)
+++ ant/core/trunk/build.xml Tue Dec 12 18:51:05 2006
@@ -34,7 +34,7 @@
   <property name="name" value="ant"/>
   <!-- this is the groupId of ant in the Maven repository -->
   <property name="groupid" value="org.apache.ant"/>
-  <property name="project.version" value="1.7.0RC1"/>
+  <property name="project.version" value="1.7.0"/>
   <!-- pom.version is used when doing a distribution and must match with what is checked in under src/etc/poms -->
   <property name="pom.version" value="1.7.0-SNAPSHOT"/>
   <property name="manifest-version" value="1.7.0"/>

Modified: ant/core/trunk/docs/antnews.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/antnews.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/antnews.html (original)
+++ ant/core/trunk/docs/antnews.html Tue Dec 12 18:51:05 2006
@@ -141,6 +141,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>
@@ -174,12 +177,11 @@
   <div class="content">
     <h1 class="title">News</h1>
             <h3 class="section">
-      <a name="Ant 1.7.0RC1"></a>
-      Ant 1.7.0RC1
+      <a name="Ant 1.7.0"></a>
+      Ant 1.7.0
     </h3>
-                        <h3>November 12, 2006 - Ant 1.7.0RC1 Available</h3>
-                                <p>Apache Ant 1.7.0RC1 is now available for <a href="http://ant.apache.org/bindownload.cgi">download</a>.</p>
-                                <p>This the first release candidate of the new major release 1.7 .</p>
+                        <h3>December 19, 2006 - Ant 1.7.0 Available</h3>
+                                <p>Apache Ant 1.7.0 is now available for <a href="http://ant.apache.org/bindownload.cgi">download</a>.</p>
                                 <p> Ant 1.7 introduces a resource framework. Some of the core ant 
     tasks such as &lt;copy/&gt; are now able to process not only file 
     system resources but also zip entries, tar entries, paths, ... 
@@ -193,8 +195,7 @@
     be released shortly. 
     </p>
                                 <p>Ant 1.7 fixes also a large number of bugs.</p>
-                                <p>Ant 1.7 has no support for Java6 features, but first tests on Java6 
-    did not fail.</p>
+                                <p>Ant 1.7 has some initial support for Java6 features.</p>
                         <h3 class="section">
       <a name=".NET Ant Library 1.0Beta1"></a>
       .NET Ant Library 1.0Beta1

Modified: ant/core/trunk/docs/bindownload.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/bindownload.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/bindownload.html (original)
+++ ant/core/trunk/docs/bindownload.html Tue Dec 12 18:51:05 2006
@@ -133,6 +133,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>
@@ -188,12 +191,6 @@
 the <a href="http://www.apache.org/dist/ant/">master distribution
 directory</a> or, preferably, its <a href="[preferred]/ant/">mirror</a>.</p>
                         <h3 class="section">
-      <a name="Downloading Ant 1.7.0RC1"></a>
-      Downloading Ant 1.7.0RC1
-    </h3>
-                        <p>Betas and release candidates are not mirrored, you can find our latest
-release at <a href="http://cvs.apache.org/dist/ant/">http://cvs.apache.org/dist/ant/</a>.</p>
-                        <h3 class="section">
       <a name="Mirror"></a>
       Mirror
     </h3>
@@ -219,11 +216,11 @@
       <a name="Current Release of Ant"></a>
       Current Release of Ant
     </h3>
-                        <p>Currently, Apache Ant 1.6.5 is the best available version, see the
+                        <p>Currently, Apache Ant 1.7.0 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.5 has been released on 02-Jun-2005 and
+<div class="content">Ant 1.7.0 has been released on 19-Dec-2006 and
 may not be available on all mirrors for a few days.</div>
 </div>
                                 <br />
@@ -234,30 +231,24 @@
 </div>
                                 <ul>
 <li><code>.zip</code> archive:
-<a href="[preferred]/ant/binaries/apache-ant-1.6.5-bin.zip">apache-ant-1.6.5-bin.zip</a>
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.zip.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.zip.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.zip.md5">MD5</a>]</li>
+<a href="[preferred]/ant/binaries/apache-ant-1.7.0-bin.zip">apache-ant-1.7.0-bin.zip</a>
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.zip.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.zip.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.zip.md5">MD5</a>]</li>
 
 <li><code>.tar.gz</code> archive:
-<a href="[preferred]/ant/binaries/apache-ant-1.6.5-bin.tar.gz">apache-ant-1.6.5-bin.tar.gz</a>
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.gz.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.gz.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.gz.md5">MD5</a>]</li>
+<a href="[preferred]/ant/binaries/apache-ant-1.7.0-bin.tar.gz">apache-ant-1.7.0-bin.tar.gz</a>
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.gz.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.gz.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.gz.md5">MD5</a>]</li>
 
 <li><code>.tar.bz2</code> archive:
-<a href="[preferred]/ant/binaries/apache-ant-1.6.5-bin.tar.bz2">apache-ant-1.6.5-bin.tar.bz2</a>
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.bz2.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.bz2.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.bz2.md5">MD5</a>]</li>
+<a href="[preferred]/ant/binaries/apache-ant-1.7.0-bin.tar.bz2">apache-ant-1.7.0-bin.tar.bz2</a>
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.bz2.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.bz2.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.bz2.md5">MD5</a>]</li>
 </ul>
                         <h3 class="section">
-      <a name="Nightly Builds"></a>
-      Nightly Builds
-    </h3>
-                        <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://svn.apache.org/snapshots/ant/">Subversion snapshot</a>.</p>
-                        <h3 class="section">
       <a name="Old Ant Releases"></a>
       Old Ant Releases
     </h3>
@@ -280,17 +271,17 @@
 using</p>
                                 <p><code>
 % pgpk -a KEYS<br />
-% pgpv apache-ant-1.6.5-bin.tar.gz.asc<br />
+% pgpv apache-ant-1.7.0-bin.tar.gz.asc<br />
 </code>
 <em>or</em><br />
 <code>
 % pgp -ka KEYS<br />
-% pgp apache-ant-1.6.5-bin.tar.gz.asc<br />
+% pgp apache-ant-1.7.0-bin.tar.gz.asc<br />
 </code>
 <em>or</em><br />
 <code>
 % gpg --import KEYS<br />
-% gpg --verify apache-ant-1.6.5-bin.tar.gz.asc
+% gpg --verify apache-ant-1.7.0-bin.tar.gz.asc
 </code></p>
                                 <p>Alternatively, you can verify the checksums on the files.  Unix
 programs called <code>md5</code>/<code>sha1</code> or

Modified: ant/core/trunk/docs/bugs.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/bugs.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/bugs.html (original)
+++ ant/core/trunk/docs/bugs.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Modified: ant/core/trunk/docs/bylaws.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/bylaws.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/bylaws.html (original)
+++ ant/core/trunk/docs/bylaws.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Modified: ant/core/trunk/docs/contributors.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/contributors.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/contributors.html (original)
+++ ant/core/trunk/docs/contributors.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Modified: ant/core/trunk/docs/external.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/external.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/external.html (original)
+++ ant/core/trunk/docs/external.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Modified: ant/core/trunk/docs/faq.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/faq.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/faq.html (original)
+++ ant/core/trunk/docs/faq.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>
@@ -649,6 +652,16 @@
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
           2 June 2005
+      </td>
+      </tr>
+                  <tr>
+                      <td colspan="1" rowspan="1"
+      valign="top" align="left">
+          1.7.0
+      </td>
+                          <td colspan="1" rowspan="1"
+      valign="top" align="left">
+          19 December 2006
       </td>
       </tr>
           </table>

Modified: ant/core/trunk/docs/index.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/index.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/index.html (original)
+++ ant/core/trunk/docs/index.html Tue Dec 12 18:51:05 2006
@@ -137,6 +137,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>
@@ -170,12 +173,11 @@
   <div class="content">
     <h1 class="title">Welcome</h1>
             <h3 class="section">
-      <a name="Ant 1.7.0RC1"></a>
-      Ant 1.7.0RC1
+      <a name="Ant 1.7.0"></a>
+      Ant 1.7.0
     </h3>
-                        <h3>November 12, 2006 - Ant 1.7.0RC1 Available</h3>
-                                <p>Apache Ant 1.7.0RC1 is now available for <a href="http://ant.apache.org/bindownload.cgi">download</a>.</p>
-                                <p>The manual of the release candidate is available <a href="manual-rc">here</a>. </p>
+                        <h3>December 19, 2006 - Ant 1.7.0 Available</h3>
+                                <p>Apache Ant 1.7.0 is now available for <a href="http://ant.apache.org/bindownload.cgi">download</a>.</p>
                                 <p>Ant 1.7 introduces a resource framework. Some of the core ant 
     tasks such as &lt;copy/&gt; are now able to process not only file 
     system resources but also zip entries, tar entries, paths, ... 
@@ -189,8 +191,7 @@
     be released shortly. 
     </p>
                                 <p>Ant 1.7 fixes also a large number of bugs.</p>
-                                <p>Ant 1.7 has no support for Java6 features, but first tests on Java6 
-    did not fail.</p>
+                                <p>Ant 1.7 has some initial support for Java6 features.</p>
                         <h3 class="section">
       <a name=".NET Ant Library 1.0"></a>
       .NET Ant Library 1.0
@@ -210,13 +211,6 @@
                                 <p>Apache AntUnit 1.0Beta1 is now available for <a href="http://ant.apache.org/antlibs/bindownload.cgi">download</a>.</p>
                                 <p>This Ant Library contains tasks to test Ant tasks using Ant
     instead of JUnit.  For more information see the <a href="antlibs/antunit/">AntUnit home page</a>.</p>
-                        <h3 class="section">
-      <a name="Ant 1.6.5"></a>
-      Ant 1.6.5
-    </h3>
-                        <h3>June 2, 2005 - Ant 1.6.5 Available</h3>
-                                <p>Apache Ant 1.6.5 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="Apache Ant"></a>
       Apache Ant

Modified: ant/core/trunk/docs/legal.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/legal.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/legal.html (original)
+++ ant/core/trunk/docs/legal.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Modified: ant/core/trunk/docs/license.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/license.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/license.html (original)
+++ ant/core/trunk/docs/license.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Modified: ant/core/trunk/docs/mail.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/mail.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/mail.html (original)
+++ ant/core/trunk/docs/mail.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Modified: ant/core/trunk/docs/manual/cover.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/cover.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/manual/cover.html (original)
+++ ant/core/trunk/docs/manual/cover.html Tue Dec 12 18:51:05 2006
@@ -19,14 +19,14 @@
 <head>
 <meta http-equiv="Content-Language" content="en-us">
 <link rel="stylesheet" type="text/css" href="stylesheets/style.css">
-<title>Apache Ant 1.7.0RC1 User Manual</title>
+<title>Apache Ant 1.7.0 User Manual</title>
 </head>
 
 <body bgcolor="#FFFFFF">
 <div align="center"> 
   <h1><img src="../images/ant_logo_large.gif" width="190" height="120"></h1>
-  <h1>Apache Ant 1.7.0RC1 Manual</h1>
-  <p align="left">This is the manual for version 1.7.0RC1 of 
+  <h1>Apache Ant 1.7.0 Manual</h1>
+  <p align="left">This is the manual for version 1.7.0 of 
   <a target="_top" 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 

Modified: ant/core/trunk/docs/manual/credits.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/credits.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/manual/credits.html (original)
+++ ant/core/trunk/docs/manual/credits.html Tue Dec 12 18:51:05 2006
@@ -61,7 +61,7 @@
 </ul>
 
 <center>
-<p>Version: 1.7.0RC1</p>
+<p>Version: 1.7.0</p>
 </center>
 
 

Modified: ant/core/trunk/docs/mission.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/mission.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/mission.html (original)
+++ ant/core/trunk/docs/mission.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Added: ant/core/trunk/docs/nightlies.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/nightlies.html?view=auto&rev=486471
==============================================================================
--- ant/core/trunk/docs/nightlies.html (added)
+++ ant/core/trunk/docs/nightlies.html Tue Dec 12 18:51:05 2006
@@ -0,0 +1,201 @@
+
+
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+        <html lang="en">
+    <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
+    <head>
+      <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+        <title>Apache Ant - Nightly Builds</title>
+        <link type="text/css" href="./page.css" rel="stylesheet">
+        </head>
+
+    <body>
+      <p class="navpath">
+        <script src="./breadcrumbs.js" language="JavaScript" type="text/javascript"></script>
+      </p>
+
+      <div class="logobar">
+        <table width="100%" border="0" cellspacing="0" cellpadding="0">
+          <tr>
+            <td align="left"><img border="0" alt="Apache Ant site" src="./images/group-logo.gif"></td>
+            <td align="center" width="100%"><img alt="Apache Ant logo" border="0" src="./images/project-logo.gif"></td>
+            <td align="right">
+              <form target="_blank" onsubmit="q.value = query.value + ' site:ant.apache.org'" action="http://www.google.com/search" method="get">
+                <table summary="search" border="0" cellspacing="0" cellpadding="0" bgcolor="#4C6C8F">
+                  <tr>
+                    <td colspan="3"><img height="10" width="1" alt="" src="./images/spacer.gif"></td>
+                  </tr>
+                  <tr>
+                    <td><img height="1" width="1" alt="" src="./images/spacer.gif"></td>
+                    <td nowrap="nowrap" class="searchcaption">
+                      <input name="q" type="hidden">
+                      <input size="15" id="query" type="text">
+                      <img height="1" width="5" alt="" src="./images/spacer.gif">
+                      <input name="Search" value="Search" type="submit">
+                      <br>
+                      the Apache Ant site
+                    </td>
+                    <td><img height="1" width="1" alt="" src="./images/spacer.gif"></td>
+                  </tr>
+                  <tr>
+                    <td><img alt="" border="0" height="10" width="9" src="./images/search-left.gif"></td>
+                    <td><img height="1" width="1" alt="" src="./images/spacer.gif"></td>
+                    <td><img alt="" border="0" height="10" width="9" src="./images/search-right.gif"></td>
+                  </tr>
+                </table>
+              </form>
+            </td>
+          </tr>
+        </table>
+      </div>
+
+                  <div class="tab">
+              <table summary="tab bar" border="0" cellpadding="0" cellspacing="0">
+                <tr>
+                                  <td width="8"><img alt="" height="5" width="8" src="./images/spacer.gif"></td><td valign="bottom">
+                      <table summary="selected tab" style="height: 1.5em" border="0" cellpadding="0" cellspacing="0">
+                        <tr>
+                        <td valign="top" width="5" bgcolor="#4C6C8F"><img height="5" width="5" alt="" src="./images/tabSel-left.gif"></td><td valign="middle" bgcolor="#4C6C8F"><font color="#ffffff" size="2" face="Arial, Helvetica, Sans-serif"><b>Home</b></font></td><td valign="top" width="5" bgcolor="#4C6C8F"><img height="5" width="5" alt="" src="./images/tabSel-right.gif"></td>
+                        </tr>
+                      </table>
+                    </td>
+                                    <td width="5"><img alt="" height="8" width="8" src="./images/spacer.gif"></td><td valign="bottom">
+                      <table summary="non selected tab" style="height: 1.4em" border="0" cellpadding="0" cellspacing="0">
+                        <tr>
+                          <td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="./images/tab-left.gif"></td><td valign="middle" bgcolor="#B2C4E0"><a href="./projects/index.html"><font size="2" face="Arial, Helvetica, Sans-serif">Projects</font></a></td><td valign="top" width="5" bgcolor="#B2C4E0"><img height="5" width="5" alt="" src="./images/tab-right.gif"></td>
+                        </tr>
+                      </table>
+                    </td>
+                            </tr>
+              </table>
+            </div>
+
+      <div class="bluebar"></div>
+                    
+  <div class="menucontainer">
+
+    <div class="menu">
+      <ul>
+              <li class="menuheader">Apache Ant
+          <ul>
+                            <li>
+                                    <a href="./index.html">Welcome</a>
+                                </li>
+                            <li>
+                                    <a href="./license.html">License</a>
+                                </li>
+                            <li>
+                                    <a href="./antnews.html">News</a>
+                                </li>
+                      </ul>
+        </li>
+              <li class="menuheader">Documentation
+          <ul>
+                            <li>
+                                    <a href="./manual/index.html">Manual</a>
+                                </li>
+                            <li>
+                                    <a href="./projects.html">Related Projects</a>
+                                </li>
+                            <li>
+                                    <a href="./external.html">External Tools and Tasks</a>
+                                </li>
+                            <li>
+                                    <a href="./resources.html">Resources</a>
+                                </li>
+                            <li>
+                                    <a href="./faq.html">Frequently Asked Questions</a>
+                                </li>
+                            <li>
+                                    <a href="http://wiki.apache.org/ant/FrontPage">Wiki</a>
+                                </li>
+                            <li>
+                                    <a href="./problems.html">Having Problems?</a>
+                                </li>
+                      </ul>
+        </li>
+              <li class="menuheader">Download
+          <ul>
+                            <li>
+                                    <a href="http://ant.apache.org/bindownload.cgi">Binary Distributions</a>
+                                </li>
+                            <li>
+                                    <a href="http://ant.apache.org/srcdownload.cgi">Source Distributions</a>
+                                </li>
+                      </ul>
+        </li>
+              <li class="menuheader">Contributing
+          <ul>
+                            <li>
+                                    <a href="./mail.html">Mailing Lists</a>
+                                </li>
+                            <li>
+                                    <a href="./svn.html">Subversion Repositories</a>
+                                </li>
+                            <li>
+                              <span class="sel">Nightly Builds</span>
+                              </li>
+                            <li>
+                                    <a href="./bugs.html">Bug Database</a>
+                                </li>
+                            <li>
+                                    <a href="http://www.apache.org/foundation/contributing.html">Donations</a>
+                                </li>
+                      </ul>
+        </li>
+              <li class="menuheader">Project Management
+          <ul>
+                            <li>
+                                    <a href="./contributors.html">Contributors</a>
+                                </li>
+                            <li>
+                                    <a href="./mission.html">Apache Ant Mission</a>
+                                </li>
+                            <li>
+                                    <a href="./bylaws.html">Project Bylaws</a>
+                                </li>
+                            <li>
+                                    <a href="./legal.html">Legal</a>
+                                </li>
+                      </ul>
+        </li>
+            </ul>
+    </div>
+    <img style="float: left" height="10" width="10" border="0" alt="" src="./images/menu-left.gif">
+    <img style="float: right" height="10" width="10" border="0" alt="" src="./images/menu-right.gif">
+  </div>
+      <div class="lightbluebar">&nbsp;</div>
+  <div class="main">
+  <div class="content">
+    <h1 class="title">Nightly Builds</h1>
+            <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://people.apache.org/builds/ant/nightly/">nightly build</a>.
+</p>
+                                <p>If you want to build Ant from sources, you can use a <a href="http://svn.apache.org/snapshots/ant/">Subversion snapshot</a>.</p>
+                
+    </div>
+  </div>
+
+        <p class="copyright">
+        <script type="text/javascript" language="JavaScript"><!--
+                document.write(" - "+"Last Published: " + document.lastModified);
+              //  -->
+        </script>
+      </p>
+    </body>
+  </html>
+
+
+
+
+
+
+
+
+
+
+

Modified: ant/core/trunk/docs/problems.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/problems.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/problems.html (original)
+++ ant/core/trunk/docs/problems.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Modified: ant/core/trunk/docs/projects.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/projects.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/projects.html (original)
+++ ant/core/trunk/docs/projects.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Modified: ant/core/trunk/docs/resources.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/resources.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/resources.html (original)
+++ ant/core/trunk/docs/resources.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Modified: ant/core/trunk/docs/srcdownload.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/srcdownload.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/srcdownload.html (original)
+++ ant/core/trunk/docs/srcdownload.html Tue Dec 12 18:51:05 2006
@@ -133,6 +133,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>
@@ -186,12 +189,6 @@
 the <a href="http://www.apache.org/dist/ant/">master distribution
 directory</a> or, preferably, its <a href="[preferred]/ant/">mirror</a>.</p>
                         <h3 class="section">
-      <a name="Downloading Ant 1.7.0RC1"></a>
-      Downloading Ant 1.7.0RC1
-    </h3>
-                        <p>Betas and release candidates are not mirrored, you can find our latest 
-release at <a href="http://cvs.apache.org/dist/ant/">http://cvs.apache.org/dist/ant/</a>.</p>
-                        <h3 class="section">
       <a name="Mirror"></a>
       Mirror
     </h3>
@@ -217,11 +214,11 @@
       <a name="Current Release of Ant"></a>
       Current Release of Ant
     </h3>
-                        <p>Currently, Apache Ant 1.6.5 is the best available version, see the
+                        <p>Currently, Apache Ant 1.7.0 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.5 has been released on 02-Jun-2005 and
+<div class="content">Ant 1.7.0 has been released on 19-Dec-2006 and
 may not be available on all mirrors for a few days.</div>
 </div>
                                 <br />
@@ -232,30 +229,24 @@
 </div>
                                 <ul>
 <li><code>.zip</code> archive:
-<a href="[preferred]/ant/source/apache-ant-1.6.5-src.zip">apache-ant-1.6.5-src.zip</a>
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.zip.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.zip.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.zip.md5">MD5</a>]</li>
+<a href="[preferred]/ant/source/apache-ant-1.7.0-src.zip">apache-ant-1.7.0-src.zip</a>
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.zip.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.zip.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.zip.md5">MD5</a>]</li>
 
 <li><code>.tar.gz</code> archive:
-<a href="[preferred]/ant/source/apache-ant-1.6.5-src.tar.gz">apache-ant-1.6.5-src.tar.gz</a>
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.gz.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.gz.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.gz.md5">MD5</a>]</li>
+<a href="[preferred]/ant/source/apache-ant-1.7.0-src.tar.gz">apache-ant-1.7.0-src.tar.gz</a>
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.gz.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.gz.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.gz.md5">MD5</a>]</li>
 
 <li><code>.tar.bz2</code> archive:
-<a href="[preferred]/ant/source/apache-ant-1.6.5-src.tar.bz2">apache-ant-1.6.5-src.tar.bz2</a>
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.bz2.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.bz2.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.bz2.md5">MD5</a>]</li>
+<a href="[preferred]/ant/source/apache-ant-1.7.0-src.tar.bz2">apache-ant-1.7.0-src.tar.bz2</a>
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.bz2.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.bz2.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.bz2.md5">MD5</a>]</li>
 </ul>
                         <h3 class="section">
-      <a name="Nightly Builds"></a>
-      Nightly Builds
-    </h3>
-                        <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://svn.apache.org/snapshots/ant/">SVN snapshot</a>.</p>
-                        <h3 class="section">
       <a name="Old Ant Releases"></a>
       Old Ant Releases
     </h3>
@@ -278,17 +269,17 @@
 using</p>
                                 <p><code>
 % pgpk -a KEYS<br />
-% pgpv apache-ant-1.6.5-src.tar.gz.asc<br />
+% pgpv apache-ant-1.7.0-src.tar.gz.asc<br />
 </code>
 <em>or</em><br />
 <code>
 % pgp -ka KEYS<br />
-% pgp apache-ant-1.6.5-src.tar.gz.asc<br />
+% pgp apache-ant-1.7.0-src.tar.gz.asc<br />
 </code>
 <em>or</em><br />
 <code>
 % gpg --import KEYS<br />
-% gpg --verify apache-ant-1.6.5-src.tar.gz.asc
+% gpg --verify apache-ant-1.7.0-src.tar.gz.asc
 </code></p>
                                 <p>Alternatively, you can verify the checksums on the files.  Unix
 programs called <code>md5</code>/<code>sha1</code> or

Modified: ant/core/trunk/docs/svn.html
URL: http://svn.apache.org/viewvc/ant/core/trunk/docs/svn.html?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/docs/svn.html (original)
+++ ant/core/trunk/docs/svn.html Tue Dec 12 18:51:05 2006
@@ -135,6 +135,9 @@
                                     <a href="./svn.html">Subversion Repositories</a>
                                 </li>
                             <li>
+                                    <a href="./nightlies.html">Nightly Builds</a>
+                                </li>
+                            <li>
                                     <a href="./bugs.html">Bug Database</a>
                                 </li>
                             <li>

Modified: ant/core/trunk/xdocs/antnews.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/xdocs/antnews.xml?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/xdocs/antnews.xml (original)
+++ ant/core/trunk/xdocs/antnews.xml Tue Dec 12 18:51:05 2006
@@ -26,11 +26,10 @@
   </properties>
 
 <body>
-  <section name="Ant 1.7.0RC1">
-    <h3>November 12, 2006 - Ant 1.7.0RC1 Available</h3>
-    <p>Apache Ant 1.7.0RC1 is now available for <a
+  <section name="Ant 1.7.0">
+    <h3>December 19, 2006 - Ant 1.7.0 Available</h3>
+    <p>Apache Ant 1.7.0 is now available for <a
     href="http://ant.apache.org/bindownload.cgi">download</a>.</p>
-    <p>This the first release candidate of the new major release 1.7 .</p>
 
     <p> Ant 1.7 introduces a resource framework. Some of the core ant 
     tasks such as &lt;copy/&gt; are now able to process not only file 
@@ -48,8 +47,7 @@
 
     <p>Ant 1.7 fixes also a large number of bugs.</p>
 
-    <p>Ant 1.7 has no support for Java6 features, but first tests on Java6 
-    did not fail.</p>
+    <p>Ant 1.7 has some initial support for Java6 features.</p>
   </section>
 
   <section name=".NET Ant Library 1.0Beta1">

Modified: ant/core/trunk/xdocs/bindownload.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/xdocs/bindownload.xml?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/xdocs/bindownload.xml (original)
+++ ant/core/trunk/xdocs/bindownload.xml Tue Dec 12 18:51:05 2006
@@ -50,14 +50,6 @@
 
 </section>
 
-<section name="Downloading Ant 1.7.0RC1">
-
-<p>Betas and release candidates are not mirrored, you can find our latest
-release at <a
-href="http://cvs.apache.org/dist/ant/">http://cvs.apache.org/dist/ant/</a>.</p>
-
-</section>
-
 <section name="Mirror">
 
 <p>You are currently using <b>[preferred]</b>.  If you encounter a
@@ -83,12 +75,12 @@
 
 <section name="Current Release of Ant">
 
-<p>Currently, Apache Ant 1.6.5 is the best available version, see the
+<p>Currently, Apache Ant 1.7.0 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.5 has been released on 02-Jun-2005 and
+<div class="content">Ant 1.7.0 has been released on 19-Dec-2006 and
 may not be available on all mirrors for a few days.</div>
 </div>
 <br></br>
@@ -100,37 +92,25 @@
 
 <ul>
 <li><code>.zip</code> archive:
-<a href="[preferred]/ant/binaries/apache-ant-1.6.5-bin.zip">apache-ant-1.6.5-bin.zip</a>
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.zip.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.zip.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.zip.md5">MD5</a>]</li>
+<a href="[preferred]/ant/binaries/apache-ant-1.7.0-bin.zip">apache-ant-1.7.0-bin.zip</a>
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.zip.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.zip.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.zip.md5">MD5</a>]</li>
 
 <li><code>.tar.gz</code> archive:
-<a href="[preferred]/ant/binaries/apache-ant-1.6.5-bin.tar.gz">apache-ant-1.6.5-bin.tar.gz</a>
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.gz.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.gz.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.gz.md5">MD5</a>]</li>
+<a href="[preferred]/ant/binaries/apache-ant-1.7.0-bin.tar.gz">apache-ant-1.7.0-bin.tar.gz</a>
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.gz.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.gz.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.gz.md5">MD5</a>]</li>
 
 <li><code>.tar.bz2</code> archive:
-<a href="[preferred]/ant/binaries/apache-ant-1.6.5-bin.tar.bz2">apache-ant-1.6.5-bin.tar.bz2</a>
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.bz2.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.bz2.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.6.5-bin.tar.bz2.md5">MD5</a>]</li>
+<a href="[preferred]/ant/binaries/apache-ant-1.7.0-bin.tar.bz2">apache-ant-1.7.0-bin.tar.bz2</a>
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.bz2.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.bz2.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/binaries/apache-ant-1.7.0-bin.tar.bz2.md5">MD5</a>]</li>
 </ul>
 </section>
 
-<section name="Nightly Builds">
-
-<p>Are currently not available, we hope to restore that service soon.</p>
-
-<!--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>If you want to build Ant from sources, you can use a <a
-href="http://svn.apache.org/snapshots/ant/">Subversion snapshot</a>.</p>
-
-</section>
 
 <section name="Old Ant Releases">
 
@@ -159,17 +139,17 @@
 
 <p><code>
 % pgpk -a KEYS<br />
-% pgpv apache-ant-1.6.5-bin.tar.gz.asc<br />
+% pgpv apache-ant-1.7.0-bin.tar.gz.asc<br />
 </code>
 <em>or</em><br />
 <code>
 % pgp -ka KEYS<br />
-% pgp apache-ant-1.6.5-bin.tar.gz.asc<br />
+% pgp apache-ant-1.7.0-bin.tar.gz.asc<br />
 </code>
 <em>or</em><br />
 <code>
 % gpg --import KEYS<br />
-% gpg --verify apache-ant-1.6.5-bin.tar.gz.asc
+% gpg --verify apache-ant-1.7.0-bin.tar.gz.asc
 </code></p>
 
 <p>Alternatively, you can verify the checksums on the files.  Unix

Modified: ant/core/trunk/xdocs/faq.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/xdocs/faq.xml?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/xdocs/faq.xml (original)
+++ ant/core/trunk/xdocs/faq.xml Tue Dec 12 18:51:05 2006
@@ -212,6 +212,11 @@
             <td>1.6.5</td>
             <td>2 June 2005</td>
           </tr>
+
+          <tr>
+            <td>1.7.0</td>
+            <td>19 December 2006</td>
+          </tr>
         </table>
       </answer>
     </faq>

Modified: ant/core/trunk/xdocs/index.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/xdocs/index.xml?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/xdocs/index.xml (original)
+++ ant/core/trunk/xdocs/index.xml Tue Dec 12 18:51:05 2006
@@ -24,13 +24,11 @@
   </properties>
 
 <body>
-   <section name="Ant 1.7.0RC1">
-    <h3>November 12, 2006 - Ant 1.7.0RC1 Available</h3>
-    <p>Apache Ant 1.7.0RC1 is now available for <a
+   <section name="Ant 1.7.0">
+    <h3>December 19, 2006 - Ant 1.7.0 Available</h3>
+    <p>Apache Ant 1.7.0 is now available for <a
     href="http://ant.apache.org/bindownload.cgi">download</a>.</p>
 
-    <p>The manual of the release candidate is available <a href="manual-rc">here</a>. </p>
-
     <p>Ant 1.7 introduces a resource framework. Some of the core ant 
     tasks such as &lt;copy/&gt; are now able to process not only file 
     system resources but also zip entries, tar entries, paths, ... 
@@ -47,8 +45,7 @@
 
     <p>Ant 1.7 fixes also a large number of bugs.</p>
 
-    <p>Ant 1.7 has no support for Java6 features, but first tests on Java6 
-    did not fail.</p>
+    <p>Ant 1.7 has some initial support for Java6 features.</p>
   </section>
 
   <section name=".NET Ant Library 1.0">
@@ -73,14 +70,6 @@
     instead of JUnit.  For more information see the <a
     href="antlibs/antunit/">AntUnit home page</a>.</p>
   </section>
-
-  <section name="Ant 1.6.5">
-    <h3>June 2, 2005 - Ant 1.6.5 Available</h3>
-    <p>Apache Ant 1.6.5 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="Apache Ant">
 

Added: ant/core/trunk/xdocs/nightlies.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/xdocs/nightlies.xml?view=auto&rev=486471
==============================================================================
--- ant/core/trunk/xdocs/nightlies.xml (added)
+++ ant/core/trunk/xdocs/nightlies.xml Tue Dec 12 18:51:05 2006
@@ -0,0 +1,40 @@
+<?xml version="1.0"?>
+<!--
+     Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+<document>
+
+  <properties>
+    <title>Nightly Builds</title>
+    <base/>
+  </properties>
+
+<body>
+
+<section name="Nightly Builds">
+
+<p>If you wish to use the latest Ant features, you can try downloading a
+<a href="http://people.apache.org/builds/ant/nightly/">nightly build</a>.
+</p>
+
+<p>If you want to build Ant from sources, you can use a <a
+href="http://svn.apache.org/snapshots/ant/">Subversion snapshot</a>.</p>
+
+</section>
+
+</body>
+
+</document>

Modified: ant/core/trunk/xdocs/srcdownload.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/xdocs/srcdownload.xml?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/xdocs/srcdownload.xml (original)
+++ ant/core/trunk/xdocs/srcdownload.xml Tue Dec 12 18:51:05 2006
@@ -47,14 +47,6 @@
 
 </section>
 
-<section name="Downloading Ant 1.7.0RC1">
-
-<p>Betas and release candidates are not mirrored, you can find our latest 
-release at <a
-href="http://cvs.apache.org/dist/ant/">http://cvs.apache.org/dist/ant/</a>.</p>
-
-</section>
-
 <section name="Mirror">
 
 <p>You are currently using <b>[preferred]</b>.  If you encounter a
@@ -80,12 +72,12 @@
 
 <section name="Current Release of Ant">
 
-<p>Currently, Apache Ant 1.6.5 is the best available version, see the
+<p>Currently, Apache Ant 1.7.0 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.5 has been released on 02-Jun-2005 and
+<div class="content">Ant 1.7.0 has been released on 19-Dec-2006 and
 may not be available on all mirrors for a few days.</div>
 </div>
 <br></br>
@@ -97,37 +89,25 @@
 
 <ul>
 <li><code>.zip</code> archive:
-<a href="[preferred]/ant/source/apache-ant-1.6.5-src.zip">apache-ant-1.6.5-src.zip</a>
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.zip.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.zip.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.zip.md5">MD5</a>]</li>
+<a href="[preferred]/ant/source/apache-ant-1.7.0-src.zip">apache-ant-1.7.0-src.zip</a>
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.zip.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.zip.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.zip.md5">MD5</a>]</li>
 
 <li><code>.tar.gz</code> archive:
-<a href="[preferred]/ant/source/apache-ant-1.6.5-src.tar.gz">apache-ant-1.6.5-src.tar.gz</a>
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.gz.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.gz.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.gz.md5">MD5</a>]</li>
+<a href="[preferred]/ant/source/apache-ant-1.7.0-src.tar.gz">apache-ant-1.7.0-src.tar.gz</a>
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.gz.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.gz.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.gz.md5">MD5</a>]</li>
 
 <li><code>.tar.bz2</code> archive:
-<a href="[preferred]/ant/source/apache-ant-1.6.5-src.tar.bz2">apache-ant-1.6.5-src.tar.bz2</a>
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.bz2.asc">PGP</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.bz2.sha1">SHA1</a>]
-[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.6.5-src.tar.bz2.md5">MD5</a>]</li>
+<a href="[preferred]/ant/source/apache-ant-1.7.0-src.tar.bz2">apache-ant-1.7.0-src.tar.bz2</a>
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.bz2.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.bz2.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/source/apache-ant-1.7.0-src.tar.bz2.md5">MD5</a>]</li>
 </ul>
 </section>
 
-<section name="Nightly Builds">
-
-<p>Are currently not available, we hope to restore that service soon.</p>
-
-<!--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>If you want to build Ant from sources, you can use a <a
-href="http://svn.apache.org/snapshots/ant/">SVN snapshot</a>.</p>
-
-</section>
 
 <section name="Old Ant Releases">
 
@@ -156,17 +136,17 @@
 
 <p><code>
 % pgpk -a KEYS<br />
-% pgpv apache-ant-1.6.5-src.tar.gz.asc<br />
+% pgpv apache-ant-1.7.0-src.tar.gz.asc<br />
 </code>
 <em>or</em><br />
 <code>
 % pgp -ka KEYS<br />
-% pgp apache-ant-1.6.5-src.tar.gz.asc<br />
+% pgp apache-ant-1.7.0-src.tar.gz.asc<br />
 </code>
 <em>or</em><br />
 <code>
 % gpg --import KEYS<br />
-% gpg --verify apache-ant-1.6.5-src.tar.gz.asc
+% gpg --verify apache-ant-1.7.0-src.tar.gz.asc
 </code></p>
 
 <p>Alternatively, you can verify the checksums on the files.  Unix

Modified: ant/core/trunk/xdocs/stylesheets/project.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/xdocs/stylesheets/project.xml?view=diff&rev=486471&r1=486470&r2=486471
==============================================================================
--- ant/core/trunk/xdocs/stylesheets/project.xml (original)
+++ ant/core/trunk/xdocs/stylesheets/project.xml Tue Dec 12 18:51:05 2006
@@ -53,6 +53,7 @@
             <menu name="Contributing">
                 <item name="Mailing Lists"         href="/mail.html"/>
                 <item name="Subversion Repositories"      href="/svn.html"/>
+                <item name="Nightly Builds"      href="/nightlies.html"/>
                 <item name="Bug Database"          href="/bugs.html"/>
                 <item name="Donations"             href="http://www.apache.org/foundation/contributing.html"/>
             </menu>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org