You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by co...@apache.org on 2001/07/07 05:59:44 UTC

cvs commit: jakarta-ant/docs/manual/api index.html packages.html

conor       01/07/06 20:59:44

  Modified:    .        build.xml
               docs/manual toc.html
  Added:       docs/manual/api index.html packages.html
  Log:
  Add API as part of manual. The files that are in the API directory
  are there to handle the situation when the API has not been generated
  or it has been generated with JDK 1.1. One or both will be overwritten
  when the API is actually generated via javadoc.
  
  PR:	1812
  
  Revision  Changes    Path
  1.156     +3 -3      jakarta-ant/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/build.xml,v
  retrieving revision 1.155
  retrieving revision 1.156
  diff -u -r1.155 -r1.156
  --- build.xml	2001/06/22 07:48:33	1.155
  +++ build.xml	2001/07/07 03:59:43	1.156
  @@ -76,7 +76,7 @@
       <property name="dist.bin" value="${dist.dir}/bin"/>
       <property name="dist.lib" value="${dist.dir}/lib"/>
       <property name="dist.docs" value="${dist.dir}/docs"/>
  -    <property name="dist.javadocs" value="${dist.dir}/docs/api"/>
  +    <property name="dist.javadocs" value="${dist.dir}/docs/manual/api"/>
   
       <property name="src.dist.dir" value="dist-src"/>
       <property name="src.dist.src" value="${src.dist.dir}/src"/>
  @@ -333,7 +333,7 @@
         <fileset dir="${docs.dir}"/>
       </copy>
   
  -    <copy todir="${dist.javadocs}">
  +    <copy todir="${dist.javadocs}" overwrite="true">
         <fileset dir="${build.javadocs}"/>
       </copy>
   
  @@ -560,7 +560,7 @@
             description="--> creates the API documentation">
       <mkdir dir="${build.javadocs}"/>
       <javadoc packagenames="org.apache.*"
  -             useexternalfile="yes"
  +             useexternalfile="no"
                sourcepath="${java.dir}"
                destdir="${build.javadocs}"
                author="true"
  
  
  
  1.6       +1 -0      jakarta-ant/docs/manual/toc.html
  
  Index: toc.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/toc.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- toc.html	2001/04/10 07:06:37	1.5
  +++ toc.html	2001/07/07 03:59:43	1.6
  @@ -17,6 +17,7 @@
   <a href="optionaltasklist.html" target="navFrame">Optional Tasks</a><br>
   <a href="ide.html" target="navFrame">Editor/IDE Integration</a><br>
   <a href="develop.html">Developing with Ant</a><br>
  +<a href="api/index.html" target="_top">Ant API</a><br>
   <a href="resources.html">Ant Resources</a><br>
   <a href="LICENSE">License</a><br>
   <a href="feedback.html">Feedback</a><br><br>
  
  
  
  1.1                  jakarta-ant/docs/manual/api/index.html
  
  Index: index.html
  ===================================================================
  <html>
  <head>
  <meta http-equiv="refresh" content="1; URL=packages.html">
  <title>Ant API</title>
  </head>
  <body>
  Redirecting to <a href="packages.html">Ant API ...</a>
  </body>
  </html>
  
  
  
  
  
  1.1                  jakarta-ant/docs/manual/api/packages.html
  
  Index: packages.html
  ===================================================================
  <html>
  <head>
  <title>Ant API</title>
  </head>
  <body>
  <b>Ant API has not been generated</b>
  </body>
  </html>