rwaldhoff 2003/03/06 15:20:39
Modified: dbcp .cvsignore
Added: dbcp/xdocs/stylesheets project.xml
dbcp/xdocs index.xml
Log:
add basic xdocs (actually, copy index.xml from ../xdocs/dbcp.xml)
Revision Changes Path
1.5 +1 -0 jakarta-commons/dbcp/.cvsignore
Index: .cvsignore
===================================================================
RCS file: /home/cvs/jakarta-commons/dbcp/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 31 Dec 2002 05:51:40 -0000 1.4
+++ .cvsignore 6 Mar 2003 23:20:39 -0000 1.5
@@ -4,3 +4,4 @@
.project
target
maven.log
+velocity.log
1.1 jakarta-commons/dbcp/xdocs/stylesheets/project.xml
Index: project.xml
===================================================================
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="Commons - DBCP" href="http://jakarta.apache.org/commons/pool">
<title>Commons Pool</title>
<logo
href="http://jakarta.apache.org/commons/images/logo.jpg">Jakarta-Commons</logo>
<!--
Note: Per the .vsl file, "/site" links will be prefixed with
"http://jakarta.apache.org/site"
Other links starting with "/" become "./...".
-->
<body>
<menu name="Home">
<item name="Jakarta Commons"
href="http://jakarta.apache.org/commons/index.html" />
<item name="Commons DBCP" href="/index.html" />
</menu>
<menu name="Information">
<item name="API Documentation" href="/apidocs/index.html"/>
<item name="Examples"
href="http://cvs.apache.org/viewcvs.cgi/jakarta-commons/dbcp/doc/"/>
</menu>
<menu name="Project Files">
<item name="Releases"
href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-dbcp/"/>
<item name="Snapshots"
href="http://cvs.apache.org/builds/jakarta-commons/nightly/commons-dbcp/"/>
<item name="Source (Browse)"
href="http://cvs.apache.org/viewcvs/jakarta-commons/pool/"/>
<item name="Source (CVS)"
href="http://jakarta.apache.org/site/cvsindex.html"/>
</menu>
<menu name="Administrivia">
<item name="License"
href="http://jakarta.apache.org/commons/license.html"/>
<item name="Original Proposal"
href="http://cvs.apache.org/viewcvs/~checkout~/jakarta-commons/dbcp/PROPOSAL.html?content-type=text/html"/>
</menu>
</body>
</project>
1.1 jakarta-commons/dbcp/xdocs/index.xml
Index: index.xml
===================================================================
<?xml version="1.0"?>
<document>
<properties>
<title>DBCP</title>
<author email="[EMAIL PROTECTED]">Commons Documentation Team</author>
</properties>
<body>
<section name="The DBCP Component">
<p>Many Jakarta projects support interaction with a relational database.
Creating a new connection for each user can be time consuming (often
requiring multiple seconds of clock time), in order to perform a database
transaction that might take milliseconds. Opening a connection per user
can be unfeasible in a publicly-hosted Internet application where the
number of simultaneous users can be very large. Accordingly, developers
often wish to share a "pool" of open connections between all of the
application's current users. The number of users actually performing
a request at any given time is usually a very small percentage of the
total number of active users, and during request processing is the only
time that a database connection is required. The application itself logs
into the DBMS, and handles any user account issues internally.</p>
<p>There are several Database Connection Pools already available, both
within Jakarta products and elsewhere. This Commons package provides an
opportunity to coordinate the efforts required to create and maintain an
efficient, feature-rich package under the ASF license.</p>
<p>The <code>commons-dbcp</code> package relies on code in the
<code>commons-pool</code> package to provide the underlying object pool
mechanisms that it utilizes.</p>
</section>
<section name="Documentation">
<p>The <a href="http://jakarta.apache.org/commons/dbcp/api/index.html">
JavaDoc API documents</a> are available online. In particular, you should
read the package overview of the <code>org.apache.commons.dbcp</code>
package.</p>
<p>There are
<a href="http://cvs.apache.org/viewcvs.cgi/jakarta-commons/dbcp/doc/">several
examples</a>
of using DBCP available.</p>
</section>
<section name="Releases">
<ul>
<li><a
href="http://jakarta.apache.org/builds/jakarta-commons/release/commons-dbcp/v1.0/">Version
1.0</a></li>
</ul>
</section>
</body>
</document>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]