rwaldhoff    02/04/22 17:08:53

  Modified:    pool     build.xml
               pool/xdocs downloads.xml index.xml
               pool/xdocs/stylesheets project.xml
  Log:
  apply John McNally's javadoc overview patch, and some related changes (see bug 8082 
- http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8082)
  
  Revision  Changes    Path
  1.6       +3 -2      jakarta-commons/pool/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/pool/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml 15 Jan 2002 01:20:52 -0000      1.5
  +++ build.xml 23 Apr 2002 00:08:53 -0000      1.6
  @@ -1,4 +1,4 @@
  -<!-- $Id: build.xml,v 1.5 2002/01/15 01:20:52 rwaldhoff Exp $ -->
  +<!-- $Id: build.xml,v 1.6 2002/04/23 00:08:53 rwaldhoff Exp $ -->
   <project name="commons-pool" default="test" basedir=".">
   
      <!-- patternset describing files to be copied from the doc directory -->
  @@ -153,7 +153,8 @@
                  destdir="${dest.doc.api}"
                  windowtitle="${Name-Long}"
                  doctitle="${Name-Long}"
  -               bottom="&lt;small&gt;Copyright &amp;copy; 2001 Apache Software 
Foundation. Documenation generated ${TODAY}&lt;/small&gt;."
  +               bottom="&lt;small&gt;Copyright &amp;copy; 2001-2002 Apache Software 
Foundation. Documenation generated ${TODAY}&lt;/small&gt;."
  +               overview="${workdir}/org/apache/commons/pool/overview.html"
                  public="true"
                  version="true"
                  author="true"
  
  
  
  1.2       +3 -5      jakarta-commons/pool/xdocs/downloads.xml
  
  Index: downloads.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/pool/xdocs/downloads.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- downloads.xml     15 Jan 2002 01:20:52 -0000      1.1
  +++ downloads.xml     23 Apr 2002 00:08:53 -0000      1.2
  @@ -4,17 +4,15 @@
         <title>Downloads</title>
         <author email="[EMAIL PROTECTED]">Commons Documentation 
Team</author>
         <author email="[EMAIL PROTECTED]">Rodney Waldhoff</author>
  -      <revision>$Id: downloads.xml,v 1.1 2002/01/15 01:20:52 rwaldhoff Exp 
$</revision>
  +      <revision>$Id: downloads.xml,v 1.2 2002/04/23 00:08:53 rwaldhoff Exp 
$</revision>
      </properties>
   
      <body>
         <section name="Downloads">
            <p>
  -            The following releases are available for download:
  +            Pool hasn't yet had an official release.  Nightly source drops and 
binaries 
  +            <a 
href="http://jakarta.apache.org/builds/jakarta-commons/nightly/commons-pool/";>are 
available</a>.
            </p>
  -         <ul>
  -            <i>none yet</i>
  -         </ul>
            <p>
               The CVS repository for <em>Pool</em> can be
               <a href="http://cvs.apache.org/viewcvs/jakarta-commons/pool/";>browsed 
online</a>
  
  
  
  1.2       +9 -44     jakarta-commons/pool/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/pool/xdocs/index.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.xml 15 Jan 2002 01:20:52 -0000      1.1
  +++ index.xml 23 Apr 2002 00:08:53 -0000      1.2
  @@ -4,54 +4,19 @@
         <title>Home</title>
         <author email="[EMAIL PROTECTED]">Commons Documentation 
Team</author>
         <author email="[EMAIL PROTECTED]">Rodney Waldhoff</author>
  -      <revision>$Id: index.xml,v 1.1 2002/01/15 01:20:52 rwaldhoff Exp $</revision>
  +      <revision>$Id: index.xml,v 1.2 2002/04/23 00:08:53 rwaldhoff Exp $</revision>
      </properties>
   
      <body>
         <section name="The Pool Component">
  -      <!-- this is something of a place-holder, borrowed from 
org.apache.commons.pool's package.html -->
  -          <p>
  -             The <code>org.apache.commons.pool</code> package defines a simple 
  -             interface for a pool of object instances, and a handful of base 
  -             classes that may be useful when creating pool implementations.
  -          </p>
  -          <p>
  -             The <code>pool</code> package itself doesn't define a specific object
  -             pooling implementation, but rather a contract that implementations may
  -             support in order to be fully interchangeable.         
  -          </p>
  -          <p>
  -             The <code>pool</code> package separates the way in which instances are
  -             pooled from the way in which they are created, resulting in a pair of 
  -             interfaces:
  -          </p>
  -          <dl>
  -            <dt><code>ObjectPool</code></dt>
  -            <dd>
  -              defines a simple object pooling interface, with methods for 
  -              borrowing instances from and returning them to the pool.
  -            </dd>
  -            <dt><code>PoolableObjectFactory</code></dt>
  -            <dd>
  -              defines lifecycle methods for object instances contained within a 
pool.
  -              By associating a factory with a pool, the pool can create new object
  -              instances as needed.
  -            </dd>
  -          </dl>        
  -          <p>
  -            <code>ObjectPoolFactory</code>
  -            defines a simple factory for <code>ObjectPool</code>s, which may be
  -            useful for some applications.
  -          </p>
  -          <p>
  -             The <code>pool</code> package also provides a keyed pool interface,
  -             which pools instances of multiple types, accessed according to an 
  -             arbitrary key. See
  -             <code>KeyedObjectPool</code>,
  -             <code>KeyedPoolableObjectFactory</code>,
  -             and 
  -             <code>KeyedObjectPoolFactory</code>.
  -          </p>
  +         <p>Pool provides an Object-pooling API.</p>
  +         <p>
  +          See the <a 
href="http://nagoya.apache.org/gump/javadoc/jakarta-commons/pool/dist/docs/api/index.html";>javadoc</a>
  +          for details.
  +         </p>           
  +         <p>
  +          See the <a href="downloads.html">downloads</a> page for information on 
obtaining releases.
  +         </p>           
         </section>
      </body>
   </document>
  
  
  
  1.2       +3 -1      jakarta-commons/pool/xdocs/stylesheets/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/pool/xdocs/stylesheets/project.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.xml       15 Jan 2002 01:20:53 -0000      1.1
  +++ project.xml       23 Apr 2002 00:08:53 -0000      1.2
  @@ -16,10 +16,12 @@
              <item name="Overview"                      href="/overview.html"/>
              <item name="News"                          
href="http://jakarta.apache.org/commons/pool/news.html"/>
   -->           
  -           <item name="API&#xA0;Documentation"        
href="./dist/docs/api/index.html"/>
  +           <item name="API&#xA0;Documentation"        
href="http://nagoya.apache.org/gump/javadoc/jakarta-commons/pool/dist/docs/api/index.html"/>
          </menu>
          <menu name="Project Files">
  +<!--
              <item name="Status"                        
href="http://cvs.apache.org/viewcvs/~checkout~/jakarta-commons/pool/STATUS.html?content-type=text/html"/>
  +-->
              <item name="Downloads"                     href="/downloads.html"/>
              <item name="CVS"                           
href="http://cvs.apache.org/viewcvs/jakarta-commons/pool/"/>
              <item name="Original&#xA0;Proposal"        
href="http://cvs.apache.org/viewcvs/~checkout~/jakarta-commons/pool/PROPOSAL.html?content-type=text/html"/>
  
  
  

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

Reply via email to