You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by an...@apache.org on 2010/12/13 19:34:09 UTC

svn commit: r1045279 [2/12] - in /ant/core/branches/ANT_SITE: ./ docs/ docs/antlibs/ docs/antlibs/antunit/ docs/antlibs/compress/ docs/antlibs/dotnet/ docs/antlibs/props/ docs/antlibs/svn/ docs/manual/ docs/manual/CoreTasks/ docs/manual/CoreTypes/ docs...

Modified: ant/core/branches/ANT_SITE/doap_Ant.rdf
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/doap_Ant.rdf?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/doap_Ant.rdf (original)
+++ ant/core/branches/ANT_SITE/doap_Ant.rdf Mon Dec 13 18:34:00 2010
@@ -35,6 +35,13 @@
     <category rdf:resource="http://projects.apache.org/category/build-management" />
     <release>
       <Version>
+        <name>Apache Ant 1.8.1</name>
+        <created>2010-05-07</created>
+        <revision>1.8.1</revision>
+      </Version>
+    </release>
+    <release>
+      <Version>
         <name>Apache Ant 1.8.0</name>
         <created>2010-02-08</created>
         <revision>1.8.0</revision>

Modified: ant/core/branches/ANT_SITE/docs/ant_in_anger.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/ant_in_anger.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/ant_in_anger.html (original)
+++ ant/core/branches/ANT_SITE/docs/ant_in_anger.html Mon Dec 13 18:34:00 2010
@@ -16,12 +16,12 @@
 -->
 <head>
 <title>
-    Ant in Anger
+    Apache Ant in Anger
 </title>
 </head>
 
 <body bgcolor="#FFFFFF" text="#000000">
-<h1 align="center">Ant in Anger:
+<h1 align="center">Apache Ant&trade; in Anger:
 </h1>
 <h2 align="center">
         Using Apache Ant in a Production Development System
@@ -122,7 +122,7 @@ And of course, the ubiquitous <b>clean</
 
 With standard target names, it is easy to build encompassing Ant build
 files which just hand off the work to the classes below using the
-<a href="manual/CoreTasks/ant.html">ant</a>
+<a href="manual/Tasks/ant.html">ant</a>
 task. For example. the clean target could be handed down to the <tt>intf</tt> and
 <tt>impl</tt> subdirectories from a parent directory
 
@@ -147,9 +147,9 @@ entry points is therefore very useful, e
 </h3>
 
 If Ant does not do what you want, you can use the
-<a href="manual/CoreTasks/exec.html">exec</a> and
-<a href="manual/CoreTasks/java.html">java</a> tasks or
-<a href="manual/OptionalTasks/script.html">inline scripting</a> to extend it. In a
+<a href="manual/Tasks/exec.html">exec</a> and
+<a href="manual/Tasks/java.html">java</a> tasks or
+<a href="manual/Tasks/script.html">inline scripting</a> to extend it. In a
 project with many <tt>build.xml</tt> files, you soon find that having a single
 central place for implementing the functionality keeps maintenance
 overhead down. Implementing task extensions through Java code seems
@@ -180,7 +180,7 @@ Embrace Automated Testing
 
 <b>(alternatively "recriminate early, recriminate often")</b>
 <p>
-Ant lets you call <a href="manual/OptionalTasks/junit.html">JUnit</a>
+Ant lets you call <a href="manual/Tasks/junit.html">JUnit</a>
 tasks, which unit test the code your team has written. Automated testing
 may seem like extra work at first, but JUnit makes writing unit tests so
 easy that you have almost no reason not to. Invest the time in learning
@@ -203,7 +203,7 @@ given the choice.
 <p>
 System tests are harder to automate than unit tests, but if you can
 write java code to stress large portions of the system - even if the code
-can not run as JUnit tasks - then the <a href= "manual/CoreTasks/java.html">java</a>
+can not run as JUnit tasks - then the <a href= "manual/Tasks/java.html">java</a>
 task can be used to invoke them. It is best to specify that you want a
 new JVM for these tests, so that a significant crash does not break the
 full build. The Junit extensions such as 
@@ -263,8 +263,8 @@ The common barriers to cross-platform An
 tools (exec tasks) which are not portable, path issues, and hard coding
 in the location of things.
 
-<h3>Command Line apps: <a href="manual/CoreTasks/exec.html">Exec</a> /
- <a href= "manual/CoreTasks/apply.html">Apply</a></h3>
+<h3>Command Line apps: <a href="manual/Tasks/exec.html">Exec</a> /
+ <a href= "manual/Tasks/apply.html">Apply</a></h3>
 
 The trouble with external invocation is that not all functions are found
 cross platform, and those that are often have different names - DOS
@@ -307,7 +307,7 @@ attributes), or by including a fileset o
 definition.
 <p>
 There is also the <a
-href="manual/CoreTasks/pathconvert.html">PathConvert</a> task which
+href="manual/Tasks/pathconvert.html">PathConvert</a> task which
 can put a fully resolved path into a property. Why do that? Because then 
 you can use that path in other ways - such as pass it as a parameter to 
 some application you are calling, or use the replace task to patch it
@@ -326,14 +326,14 @@ find any <tt>.java</tt> files. The Java 
 not have a class 'ExampleThree' implemented in "examplethree.java".
 
 <p>
-Some tasks only work on one platform - <a href= "manual/CoreTasks/chmod.html">
+Some tasks only work on one platform - <a href= "manual/Tasks/chmod.html">
 Chmod</a> being a classic example. These tasks usually result in just a
 warning message on an unsupported platform - the rest of the target's
 tasks will still be called. Other tasks degrade their functionality on
 platforms or Java versions. In particular, any task which adjusts the
 timestamp of files can not do so properly on Java 1.1. Tasks which can
-do that - <a href="manual/CoreTasks/get.html">Get</a>, <a
-href="manual/CoreTasks/touch.html">Touch</a> and <A href="manual/CoreTasks/unzip.html">
+do that - <a href="manual/Tasks/get.html">Get</a>, <a
+href="manual/Tasks/touch.html">Touch</a> and <A href="manual/Tasks/unzip.html">
 Unjar/Unwar/Unzip</a> for example, degrade their functionality on
 Java1.1, usually resorting to the current timestamp instead.
 
@@ -348,7 +348,7 @@ on Windows, OS/2 and Unix and hence call
 perl code can be left to resolve its own platform issues. Don't forget to
 set the line endings of the file to the appropriate platform when you
 redistribute Perl code; <a
-href="manual/CoreTasks/fixcrlf.html">fixCRLF</a> 
+href="manual/Tasks/fixcrlf.html">fixCRLF</a> 
 can do that for you.
 
 <a name="team">
@@ -381,36 +381,36 @@ processes for deploying Java to remote s
 evolved in Ant. That is because we all have to do it these days, so
 many people have put in the effort to make the tasks easier.
 <p>
-Ant can <a href="manual/CoreTasks/jar.html">Jar</a>, <a href=
-"manual/CoreTasks/tar.html">Tar</a> or <a
-href="manual/CoreTasks/zip.html">Zip</a> files for deployment, while the
-<a href="manual/CoreTasks/war.html">War</a> task extends the jar task
+Ant can <a href="manual/Tasks/jar.html">Jar</a>, <a href=
+"manual/Tasks/tar.html">Tar</a> or <a
+href="manual/Tasks/zip.html">Zip</a> files for deployment, while the
+<a href="manual/Tasks/war.html">War</a> task extends the jar task
 for better servlet deployment. 
-<a href ="manual/OptionalTasks/jlink.html">Jlink</a> is a
+<a href ="manual/Tasks/jlink.html">Jlink</a> is a
 jar generation file which lets you merge multiple sub jars. This is
 ideal for a build process in which separate jars are generated by sub
 projects, yet the final output is a merged jar. <a href=
-"manual/OptionalTasks/cab.html">Cab</a> can be used on Win32 boxes to
+"manual/Tasks/cab.html">Cab</a> can be used on Win32 boxes to
 build a cab file which is useful if you still have to target IE deployment.
 
 <p>
 The <a href="index.html#ftp">ftp</a> task lets you move stuff up to a
 server. Beware of putting the ftp password in the build file - a property
 file with tight access control is slightly better. The <a href=
-"manual/CoreTasks/fixcrlf.html">FixCRLF</a> task is often a useful interim step if
+"manual/Tasks/fixcrlf.html">FixCRLF</a> task is often a useful interim step if
 you need to to adjust the line endings of files. A
 WebDav task has long been discussed, which would provide a more secure
 upload to web servers, but it is still in the todo list. Rumour has it
 that there is such a task in the jakarta-slide libraries. With MacOS X,
 Linux and Windows XP all supporting WebDAV file systems, you may even be able
-to use <a href="manual/CoreTasks/copy.html">copy</a> to deploy
+to use <a href="manual/Tasks/copy.html">copy</a> to deploy
 though a firewall. 
 
 <p>
-EJB deployment is aided by the <a href="manual/OptionalTasks/ejb.html">ejb</a> tasks,
+EJB deployment is aided by the <a href="manual/Tasks/ejb.html">ejb</a> tasks,
 while the 
 <a
-href="manual/OptionalTasks/serverdeploy.html">serverdeploy</a>
+href="manual/Tasks/serverdeploy.html">serverdeploy</a>
 suite can deploy to multiple servers. The popularity of Ant has
 encouraged vendors to produce their own deployment tasks which they
 redistribute with their servers. For example, the Tomcat4.1 installation
@@ -418,9 +418,9 @@ includes tasks to deploy, undeploy and r
 
 <p>
 Finally, there are of course the fallbacks of just copying files to a
-destination using <a href="manual/CoreTasks/copy.html">Copy</a> and <a href="index.html#copydir">Copydir</a> , or just sending them to a person or
-process using <a href="manual/CoreTasks/mail.html">Mail</a> or the attachment
-aware <a href= "manual/OptionalTasks/mimemail.html">MimeMail</a>.
+destination using <a href="manual/Tasks/copy.html">Copy</a> and <a href="index.html#copydir">Copydir</a> , or just sending them to a person or
+process using <a href="manual/Tasks/mail.html">Mail</a> or the attachment
+aware <a href= "manual/Tasks/mimemail.html">MimeMail</a>.
 In one project our team even used Ant to build CD images through a build followed
 by a long set of Copy tasks, which worked surprisingly well, certainly
 easier than when we mailed them to the free email service on
@@ -673,7 +673,7 @@ Tips and Tricks</h2>
     get
 </b><dd>
 
-The <a href="manual/CoreTasks/get.html">get</a> task can fetch any URL, so be used
+The <a href="manual/Tasks/get.html">get</a> task can fetch any URL, so be used
 to trigger remote server side code during the build process, from remote
 server restarts to sending SMS/pager messages to the developer
 cellphones.
@@ -683,7 +683,7 @@ i18n
 </b><dd>
 
 Internationalisation is always trouble. Ant helps here with the <a href=
-"manual/OptionalTasks/native2ascii.html">native2ascii</a> task which can escape out all non
+"manual/Tasks/native2ascii.html">native2ascii</a> task which can escape out all non
 ascii characters into unicode. You can use this to write java files
 which include strings (and indeed comments) in your own non-ASCII
 language and then use native2ascii to convert to ascii prior to feeding
@@ -758,7 +758,7 @@ XML entity expansion is handled during t
 <p>
 The <tt>&lt;import&gt;</tt> task does powerful things, such as let you override targets,
 and use ant properties to name the location of the file to import. Consult the
-<a href="manual/CoreTasks/import.html">documentation</a> for the specifics of
+<a href="manual/Tasks/import.html">documentation</a> for the specifics of
 these features.  
 
 <p>
@@ -791,7 +791,7 @@ Implement complex Ant builds through XSL
 </b><dd>
 
 XSLT can be used to dynamically generate build.xml files from a source
-xml file, with the <a href="manual/CoreTasks/style.html">xslt</a> task controlling
+xml file, with the <a href="manual/Tasks/style.html">xslt</a> task controlling
 the transform. This is the current recommended strategy for creating
 complex build files dynamically. However, its use is still apparently
 quite rare - which means you will be on the bleeding edge of technology.

Modified: ant/core/branches/ANT_SITE/docs/ant_task_guidelines.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/ant_task_guidelines.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/ant_task_guidelines.html (original)
+++ ant/core/branches/ANT_SITE/docs/ant_task_guidelines.html Mon Dec 13 18:34:00 2010
@@ -20,9 +20,9 @@ Apache Ant Task Design Guidelines
 </title>
 </head><body>
 
-<h1>Apache Ant Task Design Guidelines</h1>
+<h1>Apache Ant&trade; Task Design Guidelines</h1>
 
-This document covers how to write Ant tasks to a standard required to be
+This document covers how to write Apache Ant tasks to a standard required to be
 incorporated into the Ant distribution. You may find it useful when
 writing tasks for personal use as the issues it addresses are still
 there in such a case.
@@ -496,8 +496,7 @@ subject.
 <li>Patch files generated using svn diff -u
 <li>patch files include a patch to defaults.properties to register the
 tasks
-<li>patch files include a patch to coretasklist.html or
-optionaltasklist.html to link to the new task page
+<li>patch files include a patch to tasklist.html to link to the new task page
 <li>Message to dev contains [SUBMIT] and task name in subject
 <li>Message body contains a rationale for the task
 <li>Message attachments contain the required files -source, documentation,

Modified: ant/core/branches/ANT_SITE/docs/antlibs/antunit/index.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/antlibs/antunit/index.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/antlibs/antunit/index.html (original)
+++ ant/core/branches/ANT_SITE/docs/antlibs/antunit/index.html Mon Dec 13 18:34:00 2010
@@ -21,7 +21,7 @@
     <!-- 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 - AntUnit</title>
+        <title>Apache Ant - Apache AntUnit</title>
         <link type="text/css" href="../../page.css" rel="stylesheet">
         </head>
 
@@ -98,7 +98,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ant Libraries
+              <li class="menuheader">Apache Ant Libraries
           <ul>
                             <li>
                                     <a href="../../antlibs/index.html">Introduction</a>
@@ -120,7 +120,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ivy
+              <li class="menuheader">Apache Ivy
           <ul>
                             <li>
                                     <a href="../../projects/ivy.html">Introduction</a>
@@ -136,7 +136,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">IvyDE
+              <li class="menuheader">Apache IvyDE
           <ul>
                             <li>
                                     <a href="../../projects/ivyde.html">Introduction</a>
@@ -163,10 +163,16 @@
       <div class="lightbluebar">&nbsp;</div>
   <div class="main">
   <div class="content">
-    <h1 class="title">AntUnit</h1>
+    <h1 class="title">Apache AntUnit</h1>
             <h3 class="section">
-      <a name="AntUnit 1.1"></a>
-      AntUnit 1.1
+      <a name="Apache AntUnit&amp;#x2122;"></a>
+      Apache AntUnit&#x2122;
+    </h3>
+                        <p>Apache AntUnit is an Antlib that provides a test framework
+        for Apache Ant tasks and types.</p>
+                        <h3 class="section">
+      <a name="Apache AntUnit 1.1"></a>
+      Apache AntUnit 1.1
     </h3>
                         <h3>September 26, 2008 - Apache AntUnit 1.1 Released</h3>
                                 <p>Apache AntUnit 1.1 is now available for download as <a href="http://ant.apache.org/antlibs/bindownload.cgi">binary</a>
@@ -194,11 +200,11 @@
       <a name="Idea"></a>
       Idea
     </h3>
-                        <p>Initially all tests for Ant tasks were written as individual
+                        <p>Initially all tests for Apache Ant tasks were written as individual
       <a href="http://www.junit.org/">JUnit</a> test cases.  Pretty
       soon it was clear that most tests needed to perform common tasks
       like reading a build file, initializing a project instance with
-      it and executing a target.  At this point <a href="http://svn.apache.org/viewcvs.cgi/ant/core/trunk/src/testcases/org/apache/tools/ant/BuildFileTest.java">BuildFileTest</a>
+      it and executing a target.  At this point <a href="http://svn.apache.org/viewvc/ant/core/trunk/src/testcases/org/apache/tools/ant/BuildFileTest.java">BuildFileTest</a>
       was invented, a base class for almost all task test cases.</p>
                                 <p>BuildFileTest works fine and in fact has been picked up by <a href="http://ant-contrib.sf.net/">the Ant-Contrib Project</a>
       and others as well.</p>
@@ -380,6 +386,7 @@ Total time: 1 second
   </div>
 
         <p class="copyright">
+      Apache Ant, Apache Ivy, Ant, Ivy, Apache, the Apache feather logo, and the Apache Ant project logos are trademarks of The Apache Software Foundation.
         <script type="text/javascript" language="JavaScript"><!--
                 document.write(" - "+"Last Published: " + document.lastModified);
               //  -->

Modified: ant/core/branches/ANT_SITE/docs/antlibs/bindownload.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/antlibs/bindownload.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/antlibs/bindownload.html (original)
+++ ant/core/branches/ANT_SITE/docs/antlibs/bindownload.html Mon Dec 13 18:34:00 2010
@@ -98,7 +98,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ant Libraries
+              <li class="menuheader">Apache Ant Libraries
           <ul>
                             <li>
                                     <a href="../antlibs/index.html">Introduction</a>
@@ -120,7 +120,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ivy
+              <li class="menuheader">Apache Ivy
           <ul>
                             <li>
                                     <a href="../projects/ivy.html">Introduction</a>
@@ -136,7 +136,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">IvyDE
+              <li class="menuheader">Apache IvyDE
           <ul>
                             <li>
                                     <a href="../projects/ivyde.html">Introduction</a>
@@ -165,10 +165,10 @@
   <div class="content">
     <h1 class="title">Binary Distributions</h1>
             <h3 class="section">
-      <a name="Downloading Antlibs"></a>
-      Downloading Antlibs
+      <a name="Downloading Apache Antlibs"></a>
+      Downloading Apache Antlibs
     </h3>
-                        <p>Use the links below to download a binary distribution of Antlibs from
+                        <p>Use the links below to download a binary distribution of Apache Antlibs from
 one of our mirrors.  It is good practice to
 <a href="[location]#Verify Releases">verify the integrity</a>
 of the distribution files, especially if you are using one of our
@@ -265,8 +265,40 @@ mirrors for a few days.</div>
 [<a href="http://www.apache.org/dist/ant/antlibs/antunit/binaries/apache-ant-antunit-1.1-bin.tar.bz2.md5">MD5</a>]</li>
 </ul>
 </li>
+
+<li>Apache Compress Ant Library 1.0
+<ul>
+<li><code>.zip</code> archive:
+<a href="[preferred]/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.zip">apache-ant-compress-1.0-bin.zip</a>
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.zip.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.zip.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.zip.sha512">SHA512</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.zip.md5">MD5</a>]</li>
+
+<li><code>.tar.gz</code> archive:
+<a href="[preferred]/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.tar.gz">apache-ant-compress-1.0-bin.tar.gz</a>
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.tar.gz.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.tar.gz.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.tar.gz.sha512">SHA512</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.tar.gz.md5">MD5</a>]</li>
+
+<li><code>.tar.bz2</code> archive:
+<a href="[preferred]/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.tar.bz2">apache-ant-compress-1.0-bin.tar.bz2</a>
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.tar.bz2.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.tar.bz2.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.tar.bz2.sha512">SHA512</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/binaries/apache-ant-compress-1.0-bin.tar.bz2.md5">MD5</a>]</li>
+</ul>
+</li>
+
 </ul>
                         <h3 class="section">
+      <a name="Old Antlib Releases"></a>
+      Old Antlib Releases
+    </h3>
+                        <p>Older releases of Ant Libraries can be found <a href="http://archive.apache.org/dist/ant/antlibs/">here</a>.
+We highly recommend to not use those releases but upgrade to the <a href="[location]#Current Antlib Releases">latest</a> releases.</p>
+                        <h3 class="section">
       <a name="Verify Releases"></a>
       Verify Releases
     </h3>

Modified: ant/core/branches/ANT_SITE/docs/antlibs/charter.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/antlibs/charter.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/antlibs/charter.html (original)
+++ ant/core/branches/ANT_SITE/docs/antlibs/charter.html Mon Dec 13 18:34:00 2010
@@ -21,7 +21,7 @@
     <!-- 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 - Ant Libraries - Charter</title>
+        <title>Apache Ant - Apache Ant Libraries - Charter</title>
         <link type="text/css" href="../page.css" rel="stylesheet">
         </head>
 
@@ -98,7 +98,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ant Libraries
+              <li class="menuheader">Apache Ant Libraries
           <ul>
                             <li>
                                     <a href="../antlibs/index.html">Introduction</a>
@@ -120,7 +120,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ivy
+              <li class="menuheader">Apache Ivy
           <ul>
                             <li>
                                     <a href="../projects/ivy.html">Introduction</a>
@@ -136,7 +136,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">IvyDE
+              <li class="menuheader">Apache IvyDE
           <ul>
                             <li>
                                     <a href="../projects/ivyde.html">Introduction</a>
@@ -163,13 +163,13 @@
       <div class="lightbluebar">&nbsp;</div>
   <div class="main">
   <div class="content">
-    <h1 class="title">Ant Libraries - Charter</h1>
+    <h1 class="title">Apache Ant Libraries - Charter</h1>
             <h3 class="section">
       <a name="Charter"></a>
       Charter
     </h3>
                         <p>Below is the text of the proposal that has been accepted by
-      the Ant PMC.  Further amendments are expected.</p>
+      the Apache Ant PMC.  Further amendments are expected.</p>
                                 <pre class="code">
 Proposal to Create a Ant-Libraries Sub-Project in Apache Ant
 ============================================================

Modified: ant/core/branches/ANT_SITE/docs/antlibs/compress/index.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/antlibs/compress/index.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/antlibs/compress/index.html (original)
+++ ant/core/branches/ANT_SITE/docs/antlibs/compress/index.html Mon Dec 13 18:34:00 2010
@@ -21,7 +21,7 @@
     <!-- 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 - Compress Antlib</title>
+        <title>Apache Ant - Apache Compress Antlib</title>
         <link type="text/css" href="../../page.css" rel="stylesheet">
         </head>
 
@@ -98,7 +98,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ant Libraries
+              <li class="menuheader">Apache Ant Libraries
           <ul>
                             <li>
                                     <a href="../../antlibs/index.html">Introduction</a>
@@ -120,7 +120,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ivy
+              <li class="menuheader">Apache Ivy
           <ul>
                             <li>
                                     <a href="../../projects/ivy.html">Introduction</a>
@@ -136,7 +136,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">IvyDE
+              <li class="menuheader">Apache IvyDE
           <ul>
                             <li>
                                     <a href="../../projects/ivyde.html">Introduction</a>
@@ -163,18 +163,33 @@
       <div class="lightbluebar">&nbsp;</div>
   <div class="main">
   <div class="content">
-    <h1 class="title">Compress Antlib</h1>
+    <h1 class="title">Apache Compress Antlib</h1>
             <h3 class="section">
-      <a name="Compress Antlib"></a>
-      Compress Antlib
+      <a name="Apache Compress Antlib&amp;#x2122;"></a>
+      Apache Compress Antlib&#x2122;
     </h3>
                         <p>This Antlib contains tasks and resources that provide
         compression/uncompression and archival/unarchival capabilities
         based on <a href="http://commons.apache.org/compress/">Apache
-        Commons Compress</a>.  Using Apache Commons Compress 1.0 this
-        Antlib supports gzip and bzip2 compression and ar, cpio, tar
-        and zip archives.</p>
-                                <p>The current code base is based on the 1.0 release of Commons
+          Commons Compress</a>.  Using Apache Commons Compress 1.1
+        this.</p>
+                        <h3 class="section">
+      <a name="Compress Ant Library 1.0"></a>
+      Compress Ant Library 1.0
+    </h3>
+                        <h3>August 30, 2010 - Apache Compress Ant Library 1.0
+      Available</h3>
+                                <p>Apache Compress Ant Library 1.0 is now available for
+      download as <a href="http://ant.apache.org/antlibs/bindownload.cgi">binary</a>
+      or <a href="http://ant.apache.org/antlibs/srcdownload.cgi">source</a>
+      release.</p>
+                        <h3 class="section">
+      <a name="Introduction"></a>
+      Introduction
+    </h3>
+                        <p>Using Apache Commons Compress this Antlib supports gzip and
+        bzip2 compression and ar, cpio, tar and zip archives.</p>
+                                <p>The current code base is based on the 1.1 release of Commons
         Compress but it is expected that this Antlib follows Commons
         Compress' development and will add new compression or
         archiving formats as they are provided by the underlying
@@ -198,6 +213,7 @@
   </div>
 
         <p class="copyright">
+      Apache Ant, Apache Ivy, Ant, Ivy, Apache, the Apache feather logo, and the Apache Ant project logos are trademarks of The Apache Software Foundation.
         <script type="text/javascript" language="JavaScript"><!--
                 document.write(" - "+"Last Published: " + document.lastModified);
               //  -->

Modified: ant/core/branches/ANT_SITE/docs/antlibs/dotnet/index.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/antlibs/dotnet/index.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/antlibs/dotnet/index.html (original)
+++ ant/core/branches/ANT_SITE/docs/antlibs/dotnet/index.html Mon Dec 13 18:34:00 2010
@@ -21,7 +21,7 @@
     <!-- 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 - .NET Ant Library</title>
+        <title>Apache Ant - Apache .NET Ant Library</title>
         <link type="text/css" href="../../page.css" rel="stylesheet">
         </head>
 
@@ -98,7 +98,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ant Libraries
+              <li class="menuheader">Apache Ant Libraries
           <ul>
                             <li>
                                     <a href="../../antlibs/index.html">Introduction</a>
@@ -120,7 +120,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ivy
+              <li class="menuheader">Apache Ivy
           <ul>
                             <li>
                                     <a href="../../projects/ivy.html">Introduction</a>
@@ -136,7 +136,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">IvyDE
+              <li class="menuheader">Apache IvyDE
           <ul>
                             <li>
                                     <a href="../../projects/ivyde.html">Introduction</a>
@@ -163,10 +163,16 @@
       <div class="lightbluebar">&nbsp;</div>
   <div class="main">
   <div class="content">
-    <h1 class="title">.NET Ant Library</h1>
+    <h1 class="title">Apache .NET Ant Library</h1>
             <h3 class="section">
-      <a name=".NET Ant Library 1.0"></a>
-      .NET Ant Library 1.0
+      <a name="Apache .NET Ant Library&amp;#x2122;"></a>
+      Apache .NET Ant Library&#x2122;
+    </h3>
+                        <p>The Apache .NET Antlib provides tasks that support
+        development of .NET software with Apache Ant.</p>
+                        <h3 class="section">
+      <a name="Apache .NET Ant Library 1.0"></a>
+      Apache .NET Ant Library 1.0
     </h3>
                         <h3>November 6, 2006 - Apache .NET Ant Library 1.0
       Available</h3>
@@ -305,6 +311,7 @@ Total time: 0 seconds
   </div>
 
         <p class="copyright">
+      Apache Ant, Apache Ivy, Ant, Ivy, Apache, the Apache feather logo, and the Apache Ant project logos are trademarks of The Apache Software Foundation.
         <script type="text/javascript" language="JavaScript"><!--
                 document.write(" - "+"Last Published: " + document.lastModified);
               //  -->

Modified: ant/core/branches/ANT_SITE/docs/antlibs/index.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/antlibs/index.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/antlibs/index.html (original)
+++ ant/core/branches/ANT_SITE/docs/antlibs/index.html Mon Dec 13 18:34:00 2010
@@ -21,7 +21,7 @@
     <!-- 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 - The Ant Libraries Subproject</title>
+        <title>Apache Ant - The Apache Ant&#x2122; Libraries Subproject</title>
         <link type="text/css" href="../page.css" rel="stylesheet">
         </head>
 
@@ -98,7 +98,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ant Libraries
+              <li class="menuheader">Apache Ant Libraries
           <ul>
                             <li>
                                     <a href="../antlibs/index.html">Introduction</a>
@@ -120,7 +120,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ivy
+              <li class="menuheader">Apache Ivy
           <ul>
                             <li>
                                     <a href="../projects/ivy.html">Introduction</a>
@@ -136,7 +136,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">IvyDE
+              <li class="menuheader">Apache IvyDE
           <ul>
                             <li>
                                     <a href="../projects/ivyde.html">Introduction</a>
@@ -163,13 +163,13 @@
       <div class="lightbluebar">&nbsp;</div>
   <div class="main">
   <div class="content">
-    <h1 class="title">The Ant Libraries Subproject</h1>
+    <h1 class="title">The Apache Ant&#x2122; Libraries Subproject</h1>
             <h3 class="section">
-      <a name="The Ant Libraries Subproject"></a>
-      The Ant Libraries Subproject
+      <a name="The Apache Ant Libraries Subproject"></a>
+      The Apache Ant Libraries Subproject
     </h3>
-                        <h3>Ant Libraries - or Antlibs for short</h3>
-                                <p>With Ant 1.6.0 and the ant libraries concept creating
+                        <h3>Apache Ant Libraries - or Antlibs for short</h3>
+                                <p>With Apache Ant 1.6.0 and the ant libraries concept creating
       libraries of Ant tasks that are easy to get dropped into an
       existing Ant installation has become far easier.</p>
                                 <p>The Ant Libraries subproject was started as a place to
@@ -184,6 +184,7 @@
   </div>
 
         <p class="copyright">
+      Apache Ant, Apache Ivy, Ant, Ivy, Apache, the Apache feather logo, and the Apache Ant project logos are trademarks of The Apache Software Foundation.
         <script type="text/javascript" language="JavaScript"><!--
                 document.write(" - "+"Last Published: " + document.lastModified);
               //  -->

Modified: ant/core/branches/ANT_SITE/docs/antlibs/proper.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/antlibs/proper.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/antlibs/proper.html (original)
+++ ant/core/branches/ANT_SITE/docs/antlibs/proper.html Mon Dec 13 18:34:00 2010
@@ -21,7 +21,7 @@
     <!-- 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 - Ant Libraries</title>
+        <title>Apache Ant - Apache Ant&#x2122; Libraries</title>
         <link type="text/css" href="../page.css" rel="stylesheet">
         </head>
 
@@ -98,7 +98,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ant Libraries
+              <li class="menuheader">Apache Ant Libraries
           <ul>
                             <li>
                                     <a href="../antlibs/index.html">Introduction</a>
@@ -107,8 +107,8 @@
                                     <a href="../antlibs/charter.html">Charter</a>
                                 </li>
                             <li>
-                              <span class="sel">Ant Libraries</span>
-                              </li>
+                                    <a href="../antlibs/proper.html">Ant Libraries</a>
+                                </li>
                             <li>
                                     <a href="../antlibs/sandbox.html">Sandbox Ant Libraries</a>
                                 </li>
@@ -120,7 +120,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ivy
+              <li class="menuheader">Apache Ivy
           <ul>
                             <li>
                                     <a href="../projects/ivy.html">Introduction</a>
@@ -136,7 +136,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">IvyDE
+              <li class="menuheader">Apache IvyDE
           <ul>
                             <li>
                                     <a href="../projects/ivyde.html">Introduction</a>
@@ -163,17 +163,17 @@
       <div class="lightbluebar">&nbsp;</div>
   <div class="main">
   <div class="content">
-    <h1 class="title">Ant Libraries</h1>
+    <h1 class="title">Apache Ant&#x2122; Libraries</h1>
             <h3 class="section">
-      <a name="Ant Libraries"></a>
-      Ant Libraries
+      <a name="Apache Ant Libraries"></a>
+      Apache Ant Libraries
     </h3>
                         <a name="antunit" />
                                       <h4 class="subsection">
-        <a name="AntUnit - Unit Test Framework for Ant Tasks"></a>
-        AntUnit - Unit Test Framework for Ant Tasks
+        <a name="Apache AntUnit&amp;#x2122; - Unit Test Framework for Ant Tasks"></a>
+        Apache AntUnit&#x2122; - Unit Test Framework for Ant Tasks
       </h4>
-                        <p>AntUnit borrows ideas from JUnit 3.x and the &lt;junit&gt;
+                        <p>Apache AntUnit borrows ideas from JUnit 3.x and the &lt;junit&gt;
         task.  It provides a task that runs build files as unit tests
         as well as a number of assertion tasks to support the
         idea.</p>
@@ -205,7 +205,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="http://svn.apache.org/viewcvs.cgi/ant/antlibs/antunit/trunk/">http://svn.apache.org/viewcvs.cgi/ant/antlibs/antunit/trunk/</a>
+          <a href="http://svn.apache.org/viewvc/ant/antlibs/antunit/trunk/">http://svn.apache.org/viewvc/ant/antlibs/antunit/trunk/</a>
       </td>
       </tr>
                   <tr>
@@ -251,10 +251,10 @@
           </table>
                                                     <a name="compress" />
                                       <h4 class="subsection">
-        <a name="Compress"></a>
-        Compress
+        <a name="Apache Compress Antlib&amp;#x2122;"></a>
+        Apache Compress Antlib&#x2122;
       </h4>
-                        <p>The compress library offers tasks and types for additional
+                        <p>The Apache Compress Antlib offers tasks and types for additional
         archive formats like CPIO and AR supported
         by <a href="http://commons.apache.org/compress/">Apache
         Commons Compress</a>.</p>
@@ -276,7 +276,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="https://svn.apache.org/repos/asf/ant/antlibs/compress/">https://svn.apache.org/repos/asf/ant/antlibs/compress/</a>
+          <a href="https://svn.apache.org/repos/asf/ant/antlibs/compress/trunk/">https://svn.apache.org/repos/asf/ant/antlibs/compress/trunk/</a>
       </td>
       </tr>
                   <tr>
@@ -286,7 +286,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="http://svn.apache.org/viewcvs.cgi/ant/antlibs/compress/">http://svn.apache.org/viewcvs.cgi/ant/antlibs/compress/</a>
+          <a href="http://svn.apache.org/viewvc/ant/antlibs/compress/trunk/">http://svn.apache.org/viewvc/ant/antlibs/compress/trunk/</a>
       </td>
       </tr>
                   <tr>
@@ -326,7 +326,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          None
+          1.0 released on August 30, 2010
       </td>
       </tr>
           </table>
@@ -369,7 +369,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="http://svn.apache.org/viewcvs.cgi/ant/antlibs/dotnet/trunk/">http://svn.apache.org/viewcvs.cgi/ant/antlibs/dotnet/trunk/</a>
+          <a href="http://svn.apache.org/viewvc/ant/antlibs/dotnet/trunk/">http://svn.apache.org/viewvc/ant/antlibs/dotnet/trunk/</a>
       </td>
       </tr>
                   <tr>
@@ -448,7 +448,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="http://svn.apache.org/viewcvs.cgi/ant/antlibs/props/trunk/">http://svn.apache.org/viewcvs.cgi/ant/antlibs/props/trunk/</a>
+          <a href="http://svn.apache.org/viewvc/ant/antlibs/props/trunk/">http://svn.apache.org/viewvc/ant/antlibs/props/trunk/</a>
       </td>
       </tr>
                   <tr>
@@ -492,11 +492,82 @@
       </td>
       </tr>
           </table>
+                                                    <a name="vss" />
+                                      <h4 class="subsection">
+        <a name="VSS - Microsoft Visual SourceSafe Tasks"></a>
+        VSS - Microsoft Visual SourceSafe Tasks
+      </h4>
+                        <p>This antlib provides an interface to the Microsoft Visual SourceSafe SCM. The original tasks 
+        (org.apache.tools.ant.taskdefs.optional.vss) have been expanded upon in this antlib. 
+        Some fixes to issues in the original tasks have also been incorporated.</p>
+                                      <table class="ForrestTable" cellspacing="1" cellpadding="4">
+              <tr>
+                      <th colspan="1" rowspan="1"
+      valign="top" align="left">
+          SVN URL:
+      </th>
+                          <td colspan="1" rowspan="1"
+      valign="top" align="left">
+          <a href="http://svn.apache.org/repos/asf/ant/antlibs/vss/trunk/">http://svn.apache.org/repos/asf/ant/antlibs/vss/trunk/</a>
+      </td>
+      </tr>
+                  <tr>
+                      <th colspan="1" rowspan="1"
+      valign="top" align="left">
+          ViewSVN:
+      </th>
+                          <td colspan="1" rowspan="1"
+      valign="top" align="left">
+          <a href="http://svn.apache.org/viewvc/ant/antlibs/vss/trunk/">http://svn.apache.org/viewvc/ant/antlibs/vss/trunk/</a>
+      </td>
+      </tr>
+                  <tr>
+                      <th colspan="1" rowspan="1"
+      valign="top" align="left">
+          Ant compatibility:
+      </th>
+                          <td colspan="1" rowspan="1"
+      valign="top" align="left">
+          Ant 1.7.x
+      </td>
+      </tr>
+                  <tr>
+                      <th colspan="1" rowspan="1"
+      valign="top" align="left">
+          Added to sandbox:
+      </th>
+                          <td colspan="1" rowspan="1"
+      valign="top" align="left">
+          2006-04-26  
+      </td>
+      </tr>
+                  <tr>
+                      <th colspan="1" rowspan="1"
+      valign="top" align="left">
+          Promoted from sandbox:
+      </th>
+                          <td colspan="1" rowspan="1"
+      valign="top" align="left">
+          2010-09-02
+      </td>
+      </tr>
+                  <tr>
+                      <th colspan="1" rowspan="1"
+      valign="top" align="left">
+          Latest Release:
+      </th>
+                          <td colspan="1" rowspan="1"
+      valign="top" align="left">
+          None
+      </td>
+      </tr>
+          </table>
                                     
     </div>
   </div>
 
         <p class="copyright">
+      Apache Ant, Apache Ivy, Ant, Ivy, Apache, the Apache feather logo, and the Apache Ant project logos are trademarks of The Apache Software Foundation.
         <script type="text/javascript" language="JavaScript"><!--
                 document.write(" - "+"Last Published: " + document.lastModified);
               //  -->

Modified: ant/core/branches/ANT_SITE/docs/antlibs/props/index.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/antlibs/props/index.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/antlibs/props/index.html (original)
+++ ant/core/branches/ANT_SITE/docs/antlibs/props/index.html Mon Dec 13 18:34:00 2010
@@ -21,7 +21,7 @@
     <!-- 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 - Props Antlib</title>
+        <title>Apache Ant - Apache Props Antlib</title>
         <link type="text/css" href="../../page.css" rel="stylesheet">
         </head>
 
@@ -98,7 +98,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ant Libraries
+              <li class="menuheader">Apache Ant Libraries
           <ul>
                             <li>
                                     <a href="../../antlibs/index.html">Introduction</a>
@@ -120,7 +120,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ivy
+              <li class="menuheader">Apache Ivy
           <ul>
                             <li>
                                     <a href="../../projects/ivy.html">Introduction</a>
@@ -136,7 +136,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">IvyDE
+              <li class="menuheader">Apache IvyDE
           <ul>
                             <li>
                                     <a href="../../projects/ivyde.html">Introduction</a>
@@ -163,12 +163,12 @@
       <div class="lightbluebar">&nbsp;</div>
   <div class="main">
   <div class="content">
-    <h1 class="title">Props Antlib</h1>
+    <h1 class="title">Apache Props Antlib</h1>
             <h3 class="section">
-      <a name="Props Antlib"></a>
-      Props Antlib
+      <a name="Apache Props Antlib&amp;#x2122;"></a>
+      Apache Props Antlib&#x2122;
     </h3>
-                        <p>This is a library of supplementary handlers for Ant
+                        <p>This is a library of supplementary handlers for Apache Ant
         properties resolution.</p>
                                 <p>The types provided are instances of
         <code>org.apache.tools.ant.PropertyHelper.Delegate</code> and
@@ -256,6 +256,7 @@
   </div>
 
         <p class="copyright">
+      Apache Ant, Apache Ivy, Ant, Ivy, Apache, the Apache feather logo, and the Apache Ant project logos are trademarks of The Apache Software Foundation.
         <script type="text/javascript" language="JavaScript"><!--
                 document.write(" - "+"Last Published: " + document.lastModified);
               //  -->

Modified: ant/core/branches/ANT_SITE/docs/antlibs/sandbox.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/antlibs/sandbox.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/antlibs/sandbox.html (original)
+++ ant/core/branches/ANT_SITE/docs/antlibs/sandbox.html Mon Dec 13 18:34:00 2010
@@ -21,7 +21,7 @@
     <!-- 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 - Ant Libraries - The Sandbox</title>
+        <title>Apache Ant - Apache Ant&#x2122; Libraries - The Sandbox</title>
         <link type="text/css" href="../page.css" rel="stylesheet">
         </head>
 
@@ -98,7 +98,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ant Libraries
+              <li class="menuheader">Apache Ant Libraries
           <ul>
                             <li>
                                     <a href="../antlibs/index.html">Introduction</a>
@@ -120,7 +120,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ivy
+              <li class="menuheader">Apache Ivy
           <ul>
                             <li>
                                     <a href="../projects/ivy.html">Introduction</a>
@@ -136,7 +136,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">IvyDE
+              <li class="menuheader">Apache IvyDE
           <ul>
                             <li>
                                     <a href="../projects/ivyde.html">Introduction</a>
@@ -163,12 +163,12 @@
       <div class="lightbluebar">&nbsp;</div>
   <div class="main">
   <div class="content">
-    <h1 class="title">Ant Libraries - The Sandbox</h1>
+    <h1 class="title">Apache Ant&#x2122; Libraries - The Sandbox</h1>
             <h3 class="section">
-      <a name="Ant Libraries - The Sandbox"></a>
-      Ant Libraries - The Sandbox
+      <a name="Apache Ant Libraries - The Sandbox"></a>
+      Apache Ant Libraries - The Sandbox
     </h3>
-                        <p>The sandbox is the place where new Ant Libraries start their
+                        <p>The sandbox is the place where new Apache Ant Libraries start their
       life, it is a playground for Ant committers and other
       contributors who find committers to sponsor their ideas.</p>
                                 <p>The sandbox is no dumping ground.  If a Sandbox Ant Library
@@ -202,7 +202,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/dbpatch/">http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/dbpatch/</a>
+          <a href="http://svn.apache.org/viewvc/ant/sandbox/antlibs/dbpatch/">http://svn.apache.org/viewvc/ant/sandbox/antlibs/dbpatch/</a>
       </td>
       </tr>
                   <tr>
@@ -259,7 +259,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/debian/trunk/">http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/debian/trunk/</a>
+          <a href="http://svn.apache.org/viewvc/ant/sandbox/antlibs/debian/trunk/">http://svn.apache.org/viewvc/ant/sandbox/antlibs/debian/trunk/</a>
       </td>
       </tr>
                   <tr>
@@ -317,7 +317,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/fscache/trunk/">http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/fscache/trunk/</a>
+          <a href="http://svn.apache.org/viewvc/ant/sandbox/antlibs/fscache/trunk/">http://svn.apache.org/viewvc/ant/sandbox/antlibs/fscache/trunk/</a>
       </td>
       </tr>
                   <tr>
@@ -490,7 +490,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/manual4eclipse/trunk/">http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/manual4eclipse/trunk/</a>
+          <a href="http://svn.apache.org/viewvc/ant/sandbox/antlibs/manual4eclipse/trunk/">http://svn.apache.org/viewvc/ant/sandbox/antlibs/manual4eclipse/trunk/</a>
       </td>
       </tr>
                   <tr>
@@ -557,7 +557,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/minify/">http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/minify/</a>
+          <a href="http://svn.apache.org/viewvc/ant/sandbox/antlibs/minify/">http://svn.apache.org/viewvc/ant/sandbox/antlibs/minify/</a>
       </td>
       </tr>
                   <tr>
@@ -614,7 +614,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/starteam/">http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/starteam/</a>
+          <a href="http://svn.apache.org/viewvc/ant/sandbox/antlibs/starteam/">http://svn.apache.org/viewvc/ant/sandbox/antlibs/starteam/</a>
       </td>
       </tr>
                   <tr>
@@ -649,65 +649,6 @@
       </tr>
           </table>
                                                           <h4 class="subsection">
-        <a name="VSS - Microsoft Visual SourceSafe Tasks"></a>
-        VSS - Microsoft Visual SourceSafe Tasks
-      </h4>
-                        <p>This antlib provides an interface to the Microsoft Visual SourceSafe SCM. The original tasks 
-        (org.apache.tools.ant.taskdefs.optional.vss) have been expanded upon in this antlib. 
-        Some fixes to issues in the original tasks have also been incorporated.</p>
-                                      <table class="ForrestTable" cellspacing="1" cellpadding="4">
-              <tr>
-                      <th colspan="1" rowspan="1"
-      valign="top" align="left">
-          SVN URL:
-      </th>
-                          <td colspan="1" rowspan="1"
-      valign="top" align="left">
-          <a href="http://svn.apache.org/repos/asf/ant/sandbox/antlibs/vss/">http://svn.apache.org/repos/asf/ant/sandbox/antlibs/vss/</a>
-      </td>
-      </tr>
-                  <tr>
-                      <th colspan="1" rowspan="1"
-      valign="top" align="left">
-          ViewSVN:
-      </th>
-                          <td colspan="1" rowspan="1"
-      valign="top" align="left">
-          <a href="http://svn.apache.org/viewvc/ant/sandbox/antlibs/vss/">http://svn.apache.org/viewvc/ant/sandbox/antlibs/vss/</a>
-      </td>
-      </tr>
-                  <tr>
-                      <th colspan="1" rowspan="1"
-      valign="top" align="left">
-          Ant compatibility:
-      </th>
-                          <td colspan="1" rowspan="1"
-      valign="top" align="left">
-          Ant 1.7.x
-      </td>
-      </tr>
-                  <tr>
-                      <th colspan="1" rowspan="1"
-      valign="top" align="left">
-          Added to sandbox:
-      </th>
-                          <td colspan="1" rowspan="1"
-      valign="top" align="left">
-          2006-04-26  
-      </td>
-      </tr>
-                  <tr>
-                      <th colspan="1" rowspan="1"
-      valign="top" align="left">
-          Sponsoring Committers
-      </th>
-                          <td colspan="1" rowspan="1"
-      valign="top" align="left">
-            
-      </td>
-      </tr>
-          </table>
-                                                          <h4 class="subsection">
         <a name="WebLogic"></a>
         WebLogic
       </h4>
@@ -730,7 +671,7 @@
       </th>
                           <td colspan="1" rowspan="1"
       valign="top" align="left">
-          <a href="http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/weblogic/">http://svn.apache.org/viewcvs.cgi/ant/sandbox/antlibs/weblogic/</a>
+          <a href="http://svn.apache.org/viewvc/ant/sandbox/antlibs/weblogic/">http://svn.apache.org/viewvc/ant/sandbox/antlibs/weblogic/</a>
       </td>
       </tr>
                   <tr>
@@ -769,6 +710,7 @@
   </div>
 
         <p class="copyright">
+      Apache Ant, Apache Ivy, Ant, Ivy, Apache, the Apache feather logo, and the Apache Ant project logos are trademarks of The Apache Software Foundation.
         <script type="text/javascript" language="JavaScript"><!--
                 document.write(" - "+"Last Published: " + document.lastModified);
               //  -->

Modified: ant/core/branches/ANT_SITE/docs/antlibs/srcdownload.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/antlibs/srcdownload.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/antlibs/srcdownload.html (original)
+++ ant/core/branches/ANT_SITE/docs/antlibs/srcdownload.html Mon Dec 13 18:34:00 2010
@@ -98,7 +98,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ant Libraries
+              <li class="menuheader">Apache Ant Libraries
           <ul>
                             <li>
                                     <a href="../antlibs/index.html">Introduction</a>
@@ -120,7 +120,7 @@
                               </li>
                       </ul>
         </li>
-              <li class="menuheader">Ivy
+              <li class="menuheader">Apache Ivy
           <ul>
                             <li>
                                     <a href="../projects/ivy.html">Introduction</a>
@@ -136,7 +136,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">IvyDE
+              <li class="menuheader">Apache IvyDE
           <ul>
                             <li>
                                     <a href="../projects/ivyde.html">Introduction</a>
@@ -165,10 +165,10 @@
   <div class="content">
     <h1 class="title">Source Distributions</h1>
             <h3 class="section">
-      <a name="Downloading Antlibs"></a>
-      Downloading Antlibs
+      <a name="Downloading Apache Antlibs"></a>
+      Downloading Apache Antlibs
     </h3>
-                        <p>Use the links below to download a source distribution of Antlibs from
+                        <p>Use the links below to download a source distribution of Apache Antlibs from
 one of our mirrors.  It is good practice to
 <a href="[location]#Verify Releases">verify the integrity</a>
 of the distribution files, especially if you are using one of our
@@ -265,8 +265,39 @@ mirrors for a few days.</div>
 [<a href="http://www.apache.org/dist/ant/antlibs/antunit/source/apache-ant-antunit-1.1-src.tar.bz2.md5">MD5</a>]</li>
 </ul>
 </li>
+
+<li>Apache Compress Ant Library 1.0
+<ul>
+<li><code>.zip</code> archive:
+<a href="[preferred]/ant/antlibs/compress/source/apache-ant-compress-1.0-src.zip">apache-ant-compress-1.0-src.zip</a>
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.zip.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.zip.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.zip.sha512">SHA512</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.zip.md5">MD5</a>]</li>
+
+<li><code>.tar.gz</code> archive:
+<a href="[preferred]/ant/antlibs/compress/source/apache-ant-compress-1.0-src.tar.gz">apache-ant-compress-1.0-src.tar.gz</a>
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.tar.gz.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.tar.gz.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.tar.gz.sha512">SHA512</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.tar.gz.md5">MD5</a>]</li>
+
+<li><code>.tar.bz2</code> archive:
+<a href="[preferred]/ant/antlibs/compress/source/apache-ant-compress-1.0-src.tar.bz2">apache-ant-compress-1.0-src.tar.bz2</a>
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.tar.bz2.asc">PGP</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.tar.bz2.sha1">SHA1</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.tar.bz2.sha512">SHA512</a>]
+[<a href="http://www.apache.org/dist/ant/antlibs/compress/source/apache-ant-compress-1.0-src.tar.bz2.md5">MD5</a>]</li>
+</ul>
+</li>
 </ul>
                         <h3 class="section">
+      <a name="Old Antlib Releases"></a>
+      Old Antlib Releases
+    </h3>
+                        <p>Older releases of Ant Libraries can be found <a href="http://archive.apache.org/dist/ant/antlibs/">here</a>.
+We highly recommend to not use those releases but upgrade to the <a href="[location]#Current Antlib Releases">latest</a> releases.</p>
+                        <h3 class="section">
       <a name="Verify Releases"></a>
       Verify Releases
     </h3>

Modified: ant/core/branches/ANT_SITE/docs/antlibs/svn/index.html
URL: http://svn.apache.org/viewvc/ant/core/branches/ANT_SITE/docs/antlibs/svn/index.html?rev=1045279&r1=1045278&r2=1045279&view=diff
==============================================================================
--- ant/core/branches/ANT_SITE/docs/antlibs/svn/index.html (original)
+++ ant/core/branches/ANT_SITE/docs/antlibs/svn/index.html Mon Dec 13 18:34:00 2010
@@ -21,7 +21,7 @@
     <!-- 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 - Subversion Ant Library</title>
+        <title>Apache Ant - Apache Subversion Ant Library</title>
         <link type="text/css" href="../../page.css" rel="stylesheet">
         </head>
 
@@ -98,7 +98,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ant Libraries
+              <li class="menuheader">Apache Ant Libraries
           <ul>
                             <li>
                                     <a href="../../antlibs/index.html">Introduction</a>
@@ -120,7 +120,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">Ivy
+              <li class="menuheader">Apache Ivy
           <ul>
                             <li>
                                     <a href="../../projects/ivy.html">Introduction</a>
@@ -136,7 +136,7 @@
                                 </li>
                       </ul>
         </li>
-              <li class="menuheader">IvyDE
+              <li class="menuheader">Apache IvyDE
           <ul>
                             <li>
                                     <a href="../../projects/ivyde.html">Introduction</a>
@@ -163,12 +163,12 @@
       <div class="lightbluebar">&nbsp;</div>
   <div class="main">
   <div class="content">
-    <h1 class="title">Subversion Ant Library</h1>
+    <h1 class="title">Apache Subversion Ant Library</h1>
             <h3 class="section">
       <a name="Idea"></a>
       Idea
     </h3>
-                        <p>The main purpose of this Ant library is to provide the same
+                        <p>The main purpose of this Apache Ant library is to provide the same
       level of support that Ant provides for CVS.  This means the
       tasks are wrappers on top of the command line client (read: you
       still need to install an svn client) and there is not much more
@@ -185,14 +185,14 @@
         svn
       </h4>
                         <p>A very thin layer on top of the command line executable,
-        comparable to <a href="http://ant.apache.org/manual/CoreTasks/cvs.html">the CVS
+        comparable to <a href="http://ant.apache.org/manual/Tasks/cvs.html">the CVS
         task</a>.</p>
                                                           <h4 class="subsection">
         <a name="changelog"></a>
         changelog
       </h4>
                         <p>Creates a log of change comments between two revisions,
-        comparable to <a href="http://ant.apache.org/manual/CoreTasks/changelog.html">CvsChangeLog</a>.</p>
+        comparable to <a href="http://ant.apache.org/manual/Tasks/changelog.html">CvsChangeLog</a>.</p>
                                                           <h4 class="subsection">
         <a name="*diff"></a>
         *diff
@@ -201,7 +201,7 @@
         for the changes between two tags or branches.</p>
                                 <p><code>&lt;revisiondiff&gt;</code> creates a differences report
         for the changes between two revisions.</p>
-                                <p>Together comparable to <a href="http://ant.apache.org/manual/CoreTasks/cvstagdiff.html">CvsTagDiff</a>.</p>
+                                <p>Together comparable to <a href="http://ant.apache.org/manual/Tasks/cvstagdiff.html">CvsTagDiff</a>.</p>
                                             <h3 class="section">
       <a name="Examples"></a>
       Examples