bodewig     01/10/30 02:05:39

  Modified:    .        build.xml
               docs     ant_in_anger.html ant_task_guidelines.html
                        antnews.html external.html faq.html index.html
                        logos.html problems.html resources.html
               docs/manual coretasklist.html credits.html develop.html
                        dirtasks.html feedback.html ide.html index.html
                        install.html intro.html optionaltasklist.html
                        running.html sysclasspath.html toc.html using.html
               docs/manual/CoreTasks ant.html antcall.html
                        antstructure.html apply.html available.html
                        chmod.html common.html condition.html copy.html
                        copydir.html copyfile.html cvs.html cvspass.html
                        delete.html deltree.html dependset.html ear.html
                        echo.html exec.html fail.html filter.html
                        fixcrlf.html genkey.html get.html gunzip.html
                        gzip.html jar.html java.html javac.html
                        javadoc.html mail.html mkdir.html move.html
                        parallel.html patch.html pathconvert.html
                        property.html recorder.html rename.html
                        replace.html rmic.html sequential.html signjar.html
                        sql.html style.html tar.html taskdef.html
                        touch.html tstamp.html typedef.html untar.html
                        unzip.html uptodate.html war.html zip.html
               docs/manual/CoreTypes description.html filelist.html
                        fileset.html mapper.html patternset.html
               docs/manual/Integration jext-plugin.html
               docs/manual/OptionalTasks BorlandEJBTasks.html
                        BorlandGenerateClient.html cab.html ccm.html
                        clearcase.html depend.html ejb.html ftp.html
                        icontract.html javah.html jspc.html mimemail.html
                        netrexxc.html propertyfile.html
                        renameextensions.html script.html sound.html
                        starteam.html stylebook.html telnet.html test.html
               docs/manual/api index.html packages.html
               src/main/org/apache/tools/ant Main.java defaultManifest.mf
               xdocs    external.xml faq.xml index.xml resources.xml
               xdocs/stylesheets project.xml
  Log:
  Show that Ant is an Apache project.
  
  Revision  Changes    Path
  1.191     +8 -8      jakarta-ant/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/build.xml,v
  retrieving revision 1.190
  retrieving revision 1.191
  diff -u -r1.190 -r1.191
  --- build.xml 2001/10/29 11:16:49     1.190
  +++ build.xml 2001/10/30 10:05:32     1.191
  @@ -2,7 +2,7 @@
   
   <!-- 
     =======================================================================
  -    Ant own build file                                                      
  +    Apache Ant own build file                                                
      
     ======================================================================= 
   -->
   <project default="main" basedir=".">
  @@ -12,7 +12,7 @@
     <property file=".ant.properties" />
     <property file="${user.home}/.ant.properties" />
   
  -  <property name="Name" value="Ant"/>
  +  <property name="Name" value="Apache Ant"/>
     <property name="name" value="ant"/>
     <property name="version" value="1.5alpha"/>
   
  @@ -299,12 +299,12 @@
     
     <!-- 
          =================================================================== 
  -         Create the ant jars: ant.jar and optional.jar
  +         Create the Apache Ant jars: ant.jar and optional.jar
          =================================================================== 
     -->
     <target name="jars" 
             depends="build" 
  -          description="--> creates the ant jars">
  +          description="--> creates the Apache Ant jars">
   
       <jar file="${build.lib}/${name}.jar" 
            basedir="${build.classes}" 
  @@ -325,12 +325,12 @@
   
     <!--
          ===================================================================
  -         Create the essential distribution that can run ant
  +         Create the essential distribution that can run Apache Ant
          ===================================================================
     -->
     <target name="dist-lite" 
             depends="jars"
  -          description="--> creates a minimum distribution to run ant">
  +          description="--> creates a minimum distribution to run Apache Ant">
   
       <mkdir dir="${dist.dir}"/>
       <mkdir dir="${dist.bin}"/>
  @@ -596,7 +596,7 @@
   
     <!--
          ===================================================================
  -         Installs ant
  +         Installs Apache Ant
          ===================================================================
     -->
     <target name="install" if="ant.install">
  @@ -635,7 +635,7 @@
                version="true"
                windowtitle="${Name} API"
                doctitle="${Name}">
  -      <group title="Ant Core" packages="org.apache.tools.ant*" />
  +      <group title="Apache Ant Core" packages="org.apache.tools.ant*" />
         <group title="Core Tasks" packages="org.apache.tools.ant.taskdefs*" />
         <group title="Optional Tasks" 
packages="org.apache.tools.ant.taskdefs.optional*" />
   
  
  
  
  1.6       +3 -3      jakarta-ant/docs/ant_in_anger.html
  
  Index: ant_in_anger.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/ant_in_anger.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ant_in_anger.html 2001/09/30 13:21:53     1.5
  +++ ant_in_anger.html 2001/10/30 10:05:32     1.6
  @@ -1,11 +1,11 @@
   <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 in Anger:
   </h1>
   <h2 align="center">
        Using Ant in a Production Development System
  @@ -20,7 +20,7 @@
   <h2>Introduction</h2>
   </a>
   
  -<a href="http://jakarta.apache.org/ant/";>Ant</a>
  +<a href="http://jakarta.apache.org/ant/";>Apache Ant</a>
    can be an invaluable tool in a team development process -or it can
   be yet another source of problems in that ongoing crises we call
   development . This
  
  
  
  1.5       +2 -2      jakarta-ant/docs/ant_task_guidelines.html
  
  Index: ant_task_guidelines.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/ant_task_guidelines.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ant_task_guidelines.html  2001/10/20 05:14:29     1.4
  +++ ant_task_guidelines.html  2001/10/30 10:05:32     1.5
  @@ -1,10 +1,10 @@
   <html><head>
   <title>
  -Ant Task Design Guidelines
  +Apache Ant Task Design Guidelines
   </title>
   </head><body>
   
  -<h1>Ant Task Design Guidelines</h1>
  +<h1>Apache Ant Task Design Guidelines</h1>
   
   This document covers how to write ant tasks to a standard required to be
   incorporated into the Ant distribution. You may find it useful when
  
  
  
  1.10      +1 -1      jakarta-ant/docs/antnews.html
  
  Index: antnews.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/antnews.html,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- antnews.html      2001/10/12 12:08:31     1.9
  +++ antnews.html      2001/10/30 10:05:32     1.10
  @@ -33,7 +33,7 @@
           <tr>
             <!-- LEFT SIDE NAVIGATION -->
             <td valign="top" nowrap="true">
  -                <p><strong>Ant</strong></p>
  +                <p><strong>Apache Ant</strong></p>
       <ul>
             <li>      <a href="./index.html">Front Page</a>
     </li>
  
  
  
  1.8       +2 -2      jakarta-ant/docs/external.html
  
  Index: external.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/external.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- external.html     2001/10/29 09:16:26     1.7
  +++ external.html     2001/10/30 10:05:32     1.8
  @@ -31,7 +31,7 @@
           <tr>
             <!-- LEFT SIDE NAVIGATION -->
             <td valign="top" nowrap="true">
  -                <p><strong>Ant</strong></p>
  +                <p><strong>Apache Ant</strong></p>
       <ul>
             <li>      <a href="./index.html">Front Page</a>
     </li>
  @@ -91,7 +91,7 @@
       </td></tr>
       <tr><td>
         <blockquote>
  -                        <p>This page lists external resources for Ant: 
tasks, IDE
  +                        <p>This page lists external resources for Apache 
Ant: tasks, IDE
         integration tools, loggers, you name it. If you've written
         something that should be included, please post all relevant
         information to one of the mailing lists.</p>
  
  
  
  1.6       +4 -4      jakarta-ant/docs/faq.html
  
  Index: faq.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/faq.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- faq.html  2001/10/11 13:44:42     1.5
  +++ faq.html  2001/10/30 10:05:32     1.6
  @@ -31,7 +31,7 @@
           <tr>
             <!-- LEFT SIDE NAVIGATION -->
             <td valign="top" nowrap="true">
  -                <p><strong>Ant</strong></p>
  +                <p><strong>Apache Ant</strong></p>
       <ul>
             <li>      <a href="./index.html">Front Page</a>
     </li>
  @@ -101,7 +101,7 @@
         <blockquote>
           <ul>
                       <li><a href="#what-is-ant">
  -  What is Ant?
  +  What is Apache Ant?
     </a></li>
                       <li><a href="#ant-name">
     Why do you call it Ant?
  @@ -242,7 +242,7 @@
       <tr><td bgcolor="#828DA6">
         <font color="#ffffff" face="arial,helvetica,sanserif">
           <strong>
  -          What is Ant?
  +          What is Apache Ant?
           </strong>
         </font>
       </td></tr>
  @@ -301,7 +301,7 @@
           tool of choice for a lot of projects.</p>
                                           <p>In January 2000 Ant was moved to 
a separate CVS module and
           was promoted to a project of its own, independent of
  -        Tomcat.</p>
  +        Tomcat.  Ant became Apache Ant.</p>
                                           <p>The first version of Ant that was 
exposed a lager audience
           was the one that shipped with Tomcat's 3.1 release on 19 April
           2000.  This version has later been referenced to as Ant
  
  
  
  1.216     +4 -4      jakarta-ant/docs/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/index.html,v
  retrieving revision 1.215
  retrieving revision 1.216
  diff -u -r1.215 -r1.216
  --- index.html        2001/10/29 09:16:26     1.215
  +++ index.html        2001/10/30 10:05:32     1.216
  @@ -33,7 +33,7 @@
           <tr>
             <!-- LEFT SIDE NAVIGATION -->
             <td valign="top" nowrap="true">
  -                <p><strong>Ant</strong></p>
  +                <p><strong>Apache Ant</strong></p>
       <ul>
             <li>      <a href="./index.html">Front Page</a>
     </li>
  @@ -93,7 +93,7 @@
       </td></tr>
       <tr><td>
         <blockquote>
  -                        <h3>Ant 1.4.1 Available !</h3>
  +                        <h3>Apache Ant 1.4.1 Available !</h3>
                                   <p>Version 1.4.1 of Ant has been released. 
This is a bugfix release which corrects a few problems
        in the 1.4 release. It is available for download 
        <a 
href="http://www.apache.org/dist/jakarta/jakarta-ant/release/v1.4.1/";>
  @@ -105,13 +105,13 @@
           <table border="0" cellspacing="0" cellpadding="2" width="100%">
       <tr><td bgcolor="#525D76">
         <font color="#ffffff" face="arial,helvetica,sanserif">
  -        <a name="Ant"><strong>Ant</strong></a>
  +        <a name="Apache Ant"><strong>Apache Ant</strong></a>
         </font>
       </td></tr>
       <tr><td>
         <blockquote>
                           <p>
  -Ant is a Java based build tool. In theory it is kind of like make without
  +Apache Ant is a Java based build tool. In theory it is kind of like make 
without
   make's wrinkles.
   </p>
                                   <p>
  
  
  
  1.7       +1 -1      jakarta-ant/docs/logos.html
  
  Index: logos.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/logos.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- logos.html        2001/09/11 11:47:57     1.6
  +++ logos.html        2001/10/30 10:05:32     1.7
  @@ -31,7 +31,7 @@
           <tr>
             <!-- LEFT SIDE NAVIGATION -->
             <td valign="top" nowrap="true">
  -                <p><strong>Ant</strong></p>
  +                <p><strong>Apache Ant</strong></p>
       <ul>
             <li>      <a href="./index.html">Front Page</a>
     </li>
  
  
  
  1.6       +1 -1      jakarta-ant/docs/problems.html
  
  Index: problems.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/problems.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- problems.html     2001/09/27 06:58:35     1.5
  +++ problems.html     2001/10/30 10:05:32     1.6
  @@ -31,7 +31,7 @@
           <tr>
             <!-- LEFT SIDE NAVIGATION -->
             <td valign="top" nowrap="true">
  -                <p><strong>Ant</strong></p>
  +                <p><strong>Apache Ant</strong></p>
       <ul>
             <li>      <a href="./index.html">Front Page</a>
     </li>
  
  
  
  1.11      +2 -2      jakarta-ant/docs/resources.html
  
  Index: resources.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/resources.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- resources.html    2001/10/15 08:38:47     1.10
  +++ resources.html    2001/10/30 10:05:32     1.11
  @@ -31,7 +31,7 @@
           <tr>
             <!-- LEFT SIDE NAVIGATION -->
             <td valign="top" nowrap="true">
  -                <p><strong>Ant</strong></p>
  +                <p><strong>Apache Ant</strong></p>
       <ul>
             <li>      <a href="./index.html">Front Page</a>
     </li>
  @@ -174,7 +174,7 @@
       </td></tr>
       <tr><td>
         <blockquote>
  -                        <p>The following sections list articles and 
presentations written about Ant.  If
  +                        <p>The following sections list articles and 
presentations written about Apache Ant.  If
         you've written something that should be included, please post it to one
         of the mailing lists.</p>
                       </blockquote>
  
  
  
  1.21      +1 -1      jakarta-ant/docs/manual/coretasklist.html
  
  Index: coretasklist.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/coretasklist.html,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- coretasklist.html 2001/09/08 01:05:17     1.20
  +++ coretasklist.html 2001/10/30 10:05:33     1.21
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   <base target="mainFrame">
   </head>
   
  
  
  
  1.6       +3 -3      jakarta-ant/docs/manual/credits.html
  
  Index: credits.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/credits.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- credits.html      2001/05/18 14:58:38     1.5
  +++ credits.html      2001/10/30 10:05:33     1.6
  @@ -2,13 +2,13 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
   
   <div align="center">
  -<h1>Ant User Manual</h1>
  +<h1>Apache Ant User Manual</h1>
   <p>by</p>
   </div>
   <!-- Names are in alphabetical order, on last name -->
  @@ -36,7 +36,7 @@
   
   <center>
   <p>Version: @VERSION@<br>
  -$Id: credits.html,v 1.5 2001/05/18 14:58:38 conor Exp $</p>
  +$Id: credits.html,v 1.6 2001/10/30 10:05:33 bodewig Exp $</p>
   </center>
   <hr>
   <p align="center">Copyright &copy; 2000,2001 Apache Software Foundation. All 
rights
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/develop.html
  
  Index: develop.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/develop.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- develop.html      2001/10/14 04:39:49     1.4
  +++ develop.html      2001/10/30 10:05:33     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.9       +1 -1      jakarta-ant/docs/manual/dirtasks.html
  
  Index: dirtasks.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/dirtasks.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- dirtasks.html     2001/09/08 01:05:17     1.8
  +++ dirtasks.html     2001/10/30 10:05:33     1.9
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/feedback.html
  
  Index: feedback.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/feedback.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- feedback.html     2001/02/13 12:31:48     1.2
  +++ feedback.html     2001/10/30 10:05:33     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/ide.html
  
  Index: ide.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/ide.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ide.html  2001/10/27 03:30:51     1.4
  +++ ide.html  2001/10/30 10:05:33     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   <base target="mainFrame">
   </head>
   
  
  
  
  1.3       +3 -3      jakarta-ant/docs/manual/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/index.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- index.html        2001/02/13 12:31:49     1.2
  +++ index.html        2001/10/30 10:05:33     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <frameset cols="20%,80%">
  @@ -10,8 +10,8 @@
   <frame src="credits.html" name="mainFrame">
   </frameset>
   <noframes>
  -<H2>Ant User Manual</H2>
  +<H2>Apache Ant User Manual</H2>
   
  -<a href="toc.html">Ant User Manual</a></noframes>
  +<a href="toc.html">Apache Ant User Manual</a></noframes>
   
   </html>
  
  
  
  1.17      +1 -1      jakarta-ant/docs/manual/install.html
  
  Index: install.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/install.html,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- install.html      2001/10/29 11:16:49     1.16
  +++ install.html      2001/10/30 10:05:33     1.17
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +2 -2      jakarta-ant/docs/manual/intro.html
  
  Index: intro.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/intro.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- intro.html        2001/03/09 08:54:34     1.3
  +++ intro.html        2001/10/30 10:05:33     1.4
  @@ -2,12 +2,12 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
   <h1><a name="introduction">Introduction</a></h1>
  -<p>Ant is a Java-based build tool. In theory, it is kind of like
  +<p>Apache Ant is a Java-based build tool. In theory, it is kind of like
   <i>make</i>, without <i>make</i>'s wrinkles.</p>
   <h3>Why?</h3>
   <p>Why another build tool when there is already
  
  
  
  1.19      +1 -1      jakarta-ant/docs/manual/optionaltasklist.html
  
  Index: optionaltasklist.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/optionaltasklist.html,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- optionaltasklist.html     2001/09/13 08:31:21     1.18
  +++ optionaltasklist.html     2001/10/30 10:05:33     1.19
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   <base target="mainFrame">
   </head>
   
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/running.html
  
  Index: running.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/running.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- running.html      2001/10/17 00:27:34     1.4
  +++ running.html      2001/10/30 10:05:33     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.2       +1 -1      jakarta-ant/docs/manual/sysclasspath.html
  
  Index: sysclasspath.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/sysclasspath.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- sysclasspath.html 2001/03/03 13:10:45     1.1
  +++ sysclasspath.html 2001/10/30 10:05:33     1.2
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.8       +1 -1      jakarta-ant/docs/manual/toc.html
  
  Index: toc.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/toc.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- toc.html  2001/08/30 13:23:13     1.7
  +++ toc.html  2001/10/30 10:05:33     1.8
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   <base target="mainFrame">
   </head>
   
  
  
  
  1.11      +1 -1      jakarta-ant/docs/manual/using.html
  
  Index: using.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/using.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- using.html        2001/10/19 06:26:33     1.10
  +++ using.html        2001/10/30 10:05:33     1.11
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.7       +1 -1      jakarta-ant/docs/manual/CoreTasks/ant.html
  
  Index: ant.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/ant.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ant.html  2001/10/30 08:42:13     1.6
  +++ ant.html  2001/10/30 10:05:34     1.7
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.6       +1 -1      jakarta-ant/docs/manual/CoreTasks/antcall.html
  
  Index: antcall.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/antcall.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- antcall.html      2001/08/30 13:23:13     1.5
  +++ antcall.html      2001/10/30 10:05:34     1.6
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/antstructure.html
  
  Index: antstructure.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/antstructure.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- antstructure.html 2001/02/13 12:31:50     1.2
  +++ antstructure.html 2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.9       +1 -1      jakarta-ant/docs/manual/CoreTasks/apply.html
  
  Index: apply.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/apply.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- apply.html        2001/09/30 13:21:53     1.8
  +++ apply.html        2001/10/30 10:05:34     1.9
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.7       +1 -1      jakarta-ant/docs/manual/CoreTasks/available.html
  
  Index: available.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/available.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- available.html    2001/09/08 01:05:17     1.6
  +++ available.html    2001/10/30 10:05:34     1.7
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/chmod.html
  
  Index: chmod.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/chmod.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- chmod.html        2001/08/30 13:23:13     1.3
  +++ chmod.html        2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.2       +1 -1      jakarta-ant/docs/manual/CoreTasks/common.html
  
  Index: common.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/common.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- common.html       2001/06/15 05:33:14     1.1
  +++ common.html       2001/10/30 10:05:34     1.2
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/condition.html
  
  Index: condition.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/condition.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- condition.html    2001/10/17 09:43:53     1.3
  +++ condition.html    2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/CoreTasks/copy.html
  
  Index: copy.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/copy.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- copy.html 2001/10/12 08:19:40     1.4
  +++ copy.html 2001/10/30 10:05:34     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/copydir.html
  
  Index: copydir.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/copydir.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- copydir.html      2001/02/13 12:31:50     1.2
  +++ copydir.html      2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/copyfile.html
  
  Index: copyfile.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/copyfile.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- copyfile.html     2001/02/13 12:31:50     1.2
  +++ copyfile.html     2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/CoreTasks/cvs.html
  
  Index: cvs.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/cvs.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- cvs.html  2001/10/19 08:47:14     1.4
  +++ cvs.html  2001/10/30 10:05:34     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/cvspass.html
  
  Index: cvspass.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/cvspass.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- cvspass.html      2001/09/08 01:05:17     1.2
  +++ cvspass.html      2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.6       +1 -1      jakarta-ant/docs/manual/CoreTasks/delete.html
  
  Index: delete.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/delete.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- delete.html       2001/08/30 13:23:13     1.5
  +++ delete.html       2001/10/30 10:05:34     1.6
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/deltree.html
  
  Index: deltree.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/deltree.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- deltree.html      2001/02/13 12:31:50     1.2
  +++ deltree.html      2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/dependset.html
  
  Index: dependset.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/dependset.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- dependset.html    2001/09/08 01:05:17     1.3
  +++ dependset.html    2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.7       +1 -1      jakarta-ant/docs/manual/CoreTasks/ear.html
  
  Index: ear.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/ear.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ear.html  2001/09/12 15:19:46     1.6
  +++ ear.html  2001/10/30 10:05:34     1.7
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/echo.html
  
  Index: echo.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/echo.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- echo.html 2001/03/09 08:54:35     1.3
  +++ echo.html 2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.7       +1 -1      jakarta-ant/docs/manual/CoreTasks/exec.html
  
  Index: exec.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/exec.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- exec.html 2001/07/27 09:55:46     1.6
  +++ exec.html 2001/10/30 10:05:34     1.7
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/fail.html
  
  Index: fail.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/fail.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- fail.html 2001/03/29 10:21:11     1.3
  +++ fail.html 2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/CoreTasks/filter.html
  
  Index: filter.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/filter.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- filter.html       2001/03/02 15:56:59     1.4
  +++ filter.html       2001/10/30 10:05:34     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.6       +1 -1      jakarta-ant/docs/manual/CoreTasks/fixcrlf.html
  
  Index: fixcrlf.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/fixcrlf.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- fixcrlf.html      2001/08/30 13:23:13     1.5
  +++ fixcrlf.html      2001/10/30 10:05:34     1.6
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/genkey.html
  
  Index: genkey.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/genkey.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- genkey.html       2001/02/13 12:31:51     1.2
  +++ genkey.html       2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/get.html
  
  Index: get.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/get.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- get.html  2001/02/13 12:31:51     1.2
  +++ get.html  2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/gunzip.html
  
  Index: gunzip.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/gunzip.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- gunzip.html       2001/02/13 12:31:51     1.2
  +++ gunzip.html       2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/CoreTasks/gzip.html
  
  Index: gzip.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/gzip.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- gzip.html 2001/09/12 16:43:26     1.4
  +++ gzip.html 2001/10/30 10:05:34     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.9       +1 -1      jakarta-ant/docs/manual/CoreTasks/jar.html
  
  Index: jar.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/jar.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- jar.html  2001/09/12 14:21:43     1.8
  +++ jar.html  2001/10/30 10:05:34     1.9
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/java.html
  
  Index: java.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/java.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- java.html 2001/08/02 22:07:47     1.3
  +++ java.html 2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.14      +1 -1      jakarta-ant/docs/manual/CoreTasks/javac.html
  
  Index: javac.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/javac.html,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- javac.html        2001/09/30 13:21:53     1.13
  +++ javac.html        2001/10/30 10:05:34     1.14
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.12      +1 -1      jakarta-ant/docs/manual/CoreTasks/javadoc.html
  
  Index: javadoc.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/javadoc.html,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- javadoc.html      2001/09/08 01:05:17     1.11
  +++ javadoc.html      2001/10/30 10:05:34     1.12
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/mail.html
  
  Index: mail.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/mail.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- mail.html 2001/08/30 13:23:13     1.3
  +++ mail.html 2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/mkdir.html
  
  Index: mkdir.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/mkdir.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- mkdir.html        2001/02/13 12:31:51     1.2
  +++ mkdir.html        2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/move.html
  
  Index: move.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/move.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- move.html 2001/10/12 22:24:37     1.3
  +++ move.html 2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/CoreTasks/parallel.html
  
  Index: parallel.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/parallel.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- parallel.html     2001/09/08 01:05:17     1.4
  +++ parallel.html     2001/10/30 10:05:34     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/patch.html
  
  Index: patch.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/patch.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- patch.html        2001/02/13 12:31:51     1.2
  +++ patch.html        2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/pathconvert.html
  
  Index: pathconvert.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/pathconvert.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- pathconvert.html  2001/08/30 13:23:13     1.2
  +++ pathconvert.html  2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.6       +1 -1      jakarta-ant/docs/manual/CoreTasks/property.html
  
  Index: property.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/property.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- property.html     2001/10/19 06:26:33     1.5
  +++ property.html     2001/10/30 10:05:34     1.6
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/CoreTasks/recorder.html
  
  Index: recorder.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/recorder.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- recorder.html     2001/09/08 01:05:17     1.4
  +++ recorder.html     2001/10/30 10:05:34     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/rename.html
  
  Index: rename.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/rename.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- rename.html       2001/02/13 12:31:52     1.2
  +++ rename.html       2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/CoreTasks/replace.html
  
  Index: replace.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/replace.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- replace.html      2001/09/19 12:10:25     1.4
  +++ replace.html      2001/10/30 10:05:34     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.6       +1 -1      jakarta-ant/docs/manual/CoreTasks/rmic.html
  
  Index: rmic.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/rmic.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- rmic.html 2001/07/24 08:18:52     1.5
  +++ rmic.html 2001/10/30 10:05:34     1.6
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/sequential.html
  
  Index: sequential.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/sequential.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- sequential.html   2001/09/08 01:05:17     1.2
  +++ sequential.html   2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/signjar.html
  
  Index: signjar.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/signjar.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- signjar.html      2001/02/13 12:31:52     1.2
  +++ signjar.html      2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.8       +1 -1      jakarta-ant/docs/manual/CoreTasks/sql.html
  
  Index: sql.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/sql.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- sql.html  2001/09/30 13:21:53     1.7
  +++ sql.html  2001/10/30 10:05:34     1.8
  @@ -1,7 +1,7 @@
   <html>
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   <body>
   
  
  
  
  1.11      +1 -1      jakarta-ant/docs/manual/CoreTasks/style.html
  
  Index: style.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/style.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- style.html        2001/10/29 11:16:49     1.10
  +++ style.html        2001/10/30 10:05:34     1.11
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.9       +1 -1      jakarta-ant/docs/manual/CoreTasks/tar.html
  
  Index: tar.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/tar.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- tar.html  2001/09/08 01:05:17     1.8
  +++ tar.html  2001/10/30 10:05:34     1.9
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/taskdef.html
  
  Index: taskdef.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/taskdef.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- taskdef.html      2001/07/18 08:06:35     1.3
  +++ taskdef.html      2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/touch.html
  
  Index: touch.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/touch.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- touch.html        2001/03/29 09:37:10     1.3
  +++ touch.html        2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.9       +1 -1      jakarta-ant/docs/manual/CoreTasks/tstamp.html
  
  Index: tstamp.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/tstamp.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- tstamp.html       2001/09/08 01:05:17     1.8
  +++ tstamp.html       2001/10/30 10:05:34     1.9
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTasks/typedef.html
  
  Index: typedef.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/typedef.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- typedef.html      2001/07/18 08:06:35     1.2
  +++ typedef.html      2001/10/30 10:05:34     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/CoreTasks/untar.html
  
  Index: untar.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/untar.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- untar.html        2001/07/27 08:24:59     1.4
  +++ untar.html        2001/10/30 10:05:34     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/unzip.html
  
  Index: unzip.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/unzip.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- unzip.html        2001/07/27 06:52:50     1.3
  +++ unzip.html        2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/CoreTasks/uptodate.html
  
  Index: uptodate.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/uptodate.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- uptodate.html     2001/03/29 10:13:06     1.3
  +++ uptodate.html     2001/10/30 10:05:34     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.8       +1 -1      jakarta-ant/docs/manual/CoreTasks/war.html
  
  Index: war.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/war.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- war.html  2001/09/12 14:21:43     1.7
  +++ war.html  2001/10/30 10:05:34     1.8
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.8       +1 -1      jakarta-ant/docs/manual/CoreTasks/zip.html
  
  Index: zip.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTasks/zip.html,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- zip.html  2001/09/12 14:21:43     1.7
  +++ zip.html  2001/10/30 10:05:34     1.8
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.2       +1 -1      jakarta-ant/docs/manual/CoreTypes/description.html
  
  Index: description.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTypes/description.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- description.html  2001/08/08 21:13:56     1.1
  +++ description.html  2001/10/30 10:05:37     1.2
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/CoreTypes/filelist.html
  
  Index: filelist.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTypes/filelist.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- filelist.html     2001/08/30 13:23:13     1.2
  +++ filelist.html     2001/10/30 10:05:37     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.6       +1 -1      jakarta-ant/docs/manual/CoreTypes/fileset.html
  
  Index: fileset.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTypes/fileset.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- fileset.html      2001/09/30 13:21:53     1.5
  +++ fileset.html      2001/10/30 10:05:37     1.6
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.6       +1 -1      jakarta-ant/docs/manual/CoreTypes/mapper.html
  
  Index: mapper.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTypes/mapper.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- mapper.html       2001/08/30 13:23:14     1.5
  +++ mapper.html       2001/10/30 10:05:37     1.6
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.6       +1 -1      jakarta-ant/docs/manual/CoreTypes/patternset.html
  
  Index: patternset.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/CoreTypes/patternset.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- patternset.html   2001/08/30 13:23:14     1.5
  +++ patternset.html   2001/10/30 10:05:37     1.6
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.2       +2 -2      jakarta-ant/docs/manual/Integration/jext-plugin.html
  
  Index: jext-plugin.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/Integration/jext-plugin.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- jext-plugin.html  2001/03/05 13:07:15     1.1
  +++ jext-plugin.html  2001/10/30 10:05:37     1.2
  @@ -3,7 +3,7 @@
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
     <meta http-equiv="Content-Language" content="en-us">
  -  <title>AntWork Plugin for the Jext - Java Text Editor</title>
  +  <title>Apache AntWork Plugin for the Jext - Java Text Editor</title>
   </head>
   <body>
   
  @@ -12,7 +12,7 @@
     <li>Klaus Hartlage
         (<a href="mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</a>)</li>
   </ul>
  -<p>Version $Revision: 1.1 $ - $Date: 2001/03/05 13:07:15 $</p>
  +<p>Version $Revision: 1.2 $ - $Date: 2001/10/30 10:05:37 $</p>
   <hr>
   
   <p>You can download the plugin at: <a
  
  
  
  1.4       +1 -1      
jakarta-ant/docs/manual/OptionalTasks/BorlandEJBTasks.html
  
  Index: BorlandEJBTasks.html
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant/docs/manual/OptionalTasks/BorlandEJBTasks.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BorlandEJBTasks.html      2001/09/08 01:05:18     1.3
  +++ BorlandEJBTasks.html      2001/10/30 10:05:37     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.5       +1 -1      
jakarta-ant/docs/manual/OptionalTasks/BorlandGenerateClient.html
  
  Index: BorlandGenerateClient.html
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant/docs/manual/OptionalTasks/BorlandGenerateClient.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BorlandGenerateClient.html        2001/09/08 01:05:18     1.4
  +++ BorlandGenerateClient.html        2001/10/30 10:05:38     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/OptionalTasks/cab.html
  
  Index: cab.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/cab.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- cab.html  2001/02/13 12:31:55     1.2
  +++ cab.html  2001/10/30 10:05:38     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/OptionalTasks/ccm.html
  
  Index: ccm.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/ccm.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ccm.html  2001/08/30 13:23:14     1.2
  +++ ccm.html  2001/10/30 10:05:38     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant</title>
  +<title>Apache Ant</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/OptionalTasks/clearcase.html
  
  Index: clearcase.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/clearcase.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- clearcase.html    2001/02/13 12:31:55     1.2
  +++ clearcase.html    2001/10/30 10:05:38     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant</title>
  +<title>Apache Ant</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/OptionalTasks/depend.html
  
  Index: depend.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/depend.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- depend.html       2001/08/30 13:23:14     1.3
  +++ depend.html       2001/10/30 10:05:38     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.11      +2 -2      jakarta-ant/docs/manual/OptionalTasks/ejb.html
  
  Index: ejb.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/ejb.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- ejb.html  2001/09/30 13:21:53     1.10
  +++ ejb.html  2001/10/30 10:05:38     1.11
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant EJB Tasks</title>
  +<title>Apache Ant EJB Tasks</title>
   
   </head>
   
  @@ -20,7 +20,7 @@
   </ul>
   
   <p>Version @VERSION@<br>
  -$Id: ejb.html,v 1.10 2001/09/30 13:21:53 conor Exp $
  +$Id: ejb.html,v 1.11 2001/10/30 10:05:38 bodewig Exp $
   </p>
   <hr>
   <h2>Table of Contents</h2>
  
  
  
  1.7       +1 -1      jakarta-ant/docs/manual/OptionalTasks/ftp.html
  
  Index: ftp.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/ftp.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ftp.html  2001/10/19 00:48:54     1.6
  +++ ftp.html  2001/10/30 10:05:38     1.7
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.7       +1 -1      jakarta-ant/docs/manual/OptionalTasks/icontract.html
  
  Index: icontract.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/icontract.html,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- icontract.html    2001/09/08 01:05:18     1.6
  +++ icontract.html    2001/10/30 10:05:38     1.7
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/OptionalTasks/javah.html
  
  Index: javah.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/javah.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- javah.html        2001/03/02 15:57:17     1.2
  +++ javah.html        2001/10/30 10:05:38     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant</title>
  +<title>Apache Ant</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/OptionalTasks/jspc.html
  
  Index: jspc.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/jspc.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- jspc.html 2001/10/19 00:34:05     1.3
  +++ jspc.html 2001/10/30 10:05:38     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/OptionalTasks/mimemail.html
  
  Index: mimemail.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/mimemail.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- mimemail.html     2001/09/08 01:05:18     1.2
  +++ mimemail.html     2001/10/30 10:05:38     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/OptionalTasks/netrexxc.html
  
  Index: netrexxc.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/netrexxc.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- netrexxc.html     2001/02/13 12:31:56     1.2
  +++ netrexxc.html     2001/10/30 10:05:38     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/OptionalTasks/propertyfile.html
  
  Index: propertyfile.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/propertyfile.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- propertyfile.html 2001/10/18 10:16:17     1.3
  +++ propertyfile.html 2001/10/30 10:05:38     1.4
  @@ -1,7 +1,7 @@
   <html>
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant PropertyFile Task</title>
  +<title>Apache Ant PropertyFile Task</title>
   
   </head>
   
  
  
  
  1.3       +1 -1      
jakarta-ant/docs/manual/OptionalTasks/renameextensions.html
  
  Index: renameextensions.html
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant/docs/manual/OptionalTasks/renameextensions.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- renameextensions.html     2001/02/13 12:31:56     1.2
  +++ renameextensions.html     2001/10/30 10:05:38     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.5       +1 -1      jakarta-ant/docs/manual/OptionalTasks/script.html
  
  Index: script.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/script.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- script.html       2001/09/29 03:51:53     1.4
  +++ script.html       2001/10/30 10:05:38     1.5
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/OptionalTasks/sound.html
  
  Index: sound.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/sound.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- sound.html        2001/10/10 15:30:35     1.3
  +++ sound.html        2001/10/30 10:05:38     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/OptionalTasks/starteam.html
  
  Index: starteam.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/starteam.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- starteam.html     2001/09/08 01:05:18     1.2
  +++ starteam.html     2001/10/30 10:05:38     1.3
  @@ -1,7 +1,7 @@
   <html>
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   <body>
   
  
  
  
  1.4       +1 -1      jakarta-ant/docs/manual/OptionalTasks/stylebook.html
  
  Index: stylebook.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/stylebook.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- stylebook.html    2001/08/30 13:23:14     1.3
  +++ stylebook.html    2001/10/30 10:05:38     1.4
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/OptionalTasks/telnet.html
  
  Index: telnet.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/telnet.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- telnet.html       2001/02/13 12:31:56     1.2
  +++ telnet.html       2001/10/30 10:05:38     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.3       +1 -1      jakarta-ant/docs/manual/OptionalTasks/test.html
  
  Index: test.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/test.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- test.html 2001/02/13 12:31:57     1.2
  +++ test.html 2001/10/30 10:05:38     1.3
  @@ -2,7 +2,7 @@
   
   <head>
   <meta http-equiv="Content-Language" content="en-us">
  -<title>Ant User Manual</title>
  +<title>Apache Ant User Manual</title>
   </head>
   
   <body>
  
  
  
  1.4       +2 -2      jakarta-ant/docs/manual/api/index.html
  
  Index: index.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/api/index.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- index.html        2001/08/07 14:55:45     1.3
  +++ index.html        2001/10/30 10:05:39     1.4
  @@ -1,10 +1,10 @@
   <html>
   <head>
   <meta http-equiv="refresh" content="1; URL=packages.html">
  -<title>Ant API</title>
  +<title>Apache Ant API</title>
   </head>
   <body>
  -Redirecting to <a href="packages.html">Ant API ...</a>
  +Redirecting to <a href="packages.html">Apache Ant API ...</a>
   </body>
   </html>
   
  
  
  
  1.4       +2 -2      jakarta-ant/docs/manual/api/packages.html
  
  Index: packages.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/api/packages.html,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- packages.html     2001/08/07 14:55:45     1.3
  +++ packages.html     2001/10/30 10:05:39     1.4
  @@ -1,9 +1,9 @@
   <html>
   <head>
  -<title>Ant API</title>
  +<title>Apache Ant API</title>
   </head>
   <body>
  -<b>Ant API has not been generated</b>
  +<b>Apache Ant API has not been generated</b>
   </body>
   </html>
   
  
  
  
  1.49      +1 -1      jakarta-ant/src/main/org/apache/tools/ant/Main.java
  
  Index: Main.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/Main.java,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- Main.java 2001/10/28 21:25:26     1.48
  +++ Main.java 2001/10/30 10:05:39     1.49
  @@ -579,7 +579,7 @@
                   
                   String lSep = System.getProperty("line.separator");
                   StringBuffer msg = new StringBuffer();
  -                msg.append("Ant version ");
  +                msg.append("Apache Ant version ");
                   msg.append(props.getProperty("VERSION"));
                   msg.append(" compiled on ");
                   msg.append(props.getProperty("DATE"));
  
  
  
  1.3       +1 -1      
jakarta-ant/src/main/org/apache/tools/ant/defaultManifest.mf
  
  Index: defaultManifest.mf
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/defaultManifest.mf,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- defaultManifest.mf        2000/08/30 14:57:48     1.2
  +++ defaultManifest.mf        2001/10/30 10:05:39     1.3
  @@ -1,3 +1,3 @@
   Manifest-Version: 1.0
  -Created-By: Ant @VERSION@
  +Created-By: Apache Ant @VERSION@
   
  
  
  
  1.7       +1 -1      jakarta-ant/xdocs/external.xml
  
  Index: external.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/xdocs/external.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- external.xml      2001/10/29 09:16:27     1.6
  +++ external.xml      2001/10/30 10:05:39     1.7
  @@ -10,7 +10,7 @@
       
       <section name="External Tools and Tasks">
   
  -      <p>This page lists external resources for Ant: tasks, IDE
  +      <p>This page lists external resources for Apache Ant: tasks, IDE
         integration tools, loggers, you name it. If you've written
         something that should be included, please post all relevant
         information to one of the mailing lists.</p>
  
  
  
  1.5       +2 -2      jakarta-ant/xdocs/faq.xml
  
  Index: faq.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/xdocs/faq.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- faq.xml   2001/10/11 13:44:42     1.4
  +++ faq.xml   2001/10/30 10:05:39     1.5
  @@ -8,7 +8,7 @@
   
     <faqsection title="General">
       <faq id="what-is-ant">
  -      <question>What is Ant?</question>
  +      <question>What is Apache Ant?</question>
         <answer>
           <p> Ant is a Java based build tool. In theory it is kind of
           like &quot;make&quot; without makes wrinkles and with the full
  @@ -50,7 +50,7 @@
   
           <p>In January 2000 Ant was moved to a separate CVS module and
           was promoted to a project of its own, independent of
  -        Tomcat.</p>
  +        Tomcat.  Ant became Apache Ant.</p>
   
           <p>The first version of Ant that was exposed a lager audience
           was the one that shipped with Tomcat&apos;s 3.1 release on 19 April
  
  
  
  1.11      +3 -3      jakarta-ant/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/xdocs/index.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- index.xml 2001/10/28 22:24:34     1.10
  +++ index.xml 2001/10/30 10:05:39     1.11
  @@ -10,7 +10,7 @@
   <body>
   
     <section name="Ant 1.4.1">
  -  <h3>Ant 1.4.1 Available !</h3>
  +  <h3>Apache Ant 1.4.1 Available !</h3>
     <p>Version 1.4.1 of Ant has been released. This is a bugfix release which 
corrects a few problems
        in the 1.4 release. It is available for download 
        <a 
href="http://www.apache.org/dist/jakarta/jakarta-ant/release/v1.4.1/";>
  @@ -18,10 +18,10 @@
        </p>
     </section>
   
  -  <section name="Ant">
  +  <section name="Apache Ant">
   
   <p>
  -Ant is a Java based build tool. In theory it is kind of like make without
  +Apache Ant is a Java based build tool. In theory it is kind of like make 
without
   make's wrinkles.
   </p>
   
  
  
  
  1.10      +1 -1      jakarta-ant/xdocs/resources.xml
  
  Index: resources.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/xdocs/resources.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- resources.xml     2001/10/15 08:38:48     1.9
  +++ resources.xml     2001/10/30 10:05:39     1.10
  @@ -40,7 +40,7 @@
       
       <section name="Articles and Presentations">
   
  -      <p>The following sections list articles and presentations written 
about Ant.  If
  +      <p>The following sections list articles and presentations written 
about Apache Ant.  If
         you've written something that should be included, please post it to one
         of the mailing lists.</p>
   
  
  
  
  1.3       +1 -1      jakarta-ant/xdocs/stylesheets/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/xdocs/stylesheets/project.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.xml       2001/08/07 14:51:49     1.2
  +++ project.xml       2001/10/30 10:05:39     1.3
  @@ -8,7 +8,7 @@
       -->
       
       <body>
  -    <menu name="Ant">
  +    <menu name="Apache Ant">
           <item name="Front Page"            
                 href="/index.html"/>
           <item name="News"                 
  
  
  

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

Reply via email to