Initial commit for Git.

This commit is contained in:
Erik C. Thauvin 2012-05-14 13:37:38 -07:00
parent 98b1521e20
commit 9595f70fd7
27 changed files with 1790 additions and 1780 deletions

10
.gitignore vendored Normal file
View file

@ -0,0 +1,10 @@
*.ipr
*.iml
*.iws
bin
dist
build
classes
javadoc
/CVS/
CVS

Binary file not shown.

View file

@ -1,4 +1,4 @@
/* $Id$
/* $Id: inst.css,v 1.1 2004/03/20 13:36:08 erik Exp $
This file contains rules that extend or override the more basic formatting defined in tigris.css. Edit it to customize the look of applications using tigris.css (instances). You are responsible for maintaining your own set of (optional) deltas from tigris.css defaults; this file is intended as an example.

View file

@ -1,4 +1,4 @@
/* $Id$
/* $Id: tigris.css,v 1.1 2004/03/20 13:36:08 erik Exp $
This file defines basic default formatting for HTML conforming to Tigris application style. To extend or override these rules for your instance, edit inst.css instead of this file. */

View file

@ -1,7 +1,7 @@
/*
* $Source$
* $Revision$
* $Date$
* $Source: /home/cvsroot/manywhere/simplepool/simplepool-examples/licenses/SimplePool\040License.txt,v $
* $Revision: 1.1 $
* $Date: 2004/03/20 13:36:08 $
*
* Copyright (c) 2004, Russell Beattie (http://www.russellbeattie.com/)
* All rights reserved.

View file

@ -1,7 +1,7 @@
/*
* $Source$
* $Revision$
* $Date$
* $Source: /home/cvsroot/manywhere/simplepool/src/net/java/dev/simplepool/SimplePool.java,v $
* $Revision: 1.5 $
* $Date: 2004/03/17 23:35:36 $
*
* Copyright (c) 2002, Marc A. Mnich (http://www.javaexchange.com/)
* All rights reserved.
@ -33,7 +33,7 @@ import java.util.Date;
* @author <a href="http://www.javaexchange.com/">Marc A. Mnich</a>
* @author <a href="http://www.russellbeattie.com/">Russell Beattie</a>
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
* @version $Revision: 1.5 $, $Date: 2004/03/17 23:35:36 $
* @since 1.0
*/
public class SimplePool implements Runnable {

View file

@ -1,7 +1,7 @@
/*
* $Source$
* $Revision$
* $Date$
* $Source: /home/cvsroot/manywhere/simplepool/src/net/java/dev/simplepool/SimplePoolConnection.java,v $
* $Revision: 1.5 $
* $Date: 2004/03/17 23:35:36 $
*
* Copyright (c) 2004, Russell Beattie (http://www.russellbeattie.com/)
* All rights reserved.
@ -47,7 +47,7 @@ import java.util.Map;
*
* @author <a href="http://www.russellbeattie.com/">Russell Beattie</a>
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
* @version $Revision: 1.5 $, $Date: 2004/03/17 23:35:36 $
* @since 1.0
*/
public class SimplePoolConnection implements Connection {

View file

@ -1,7 +1,7 @@
/*
* $Source$
* $Revision$
* $Date$
* $Source: /home/cvsroot/manywhere/simplepool/src/net/java/dev/simplepool/SimplePoolDataSource.java,v $
* $Revision: 1.4 $
* $Date: 2004/03/17 23:19:02 $
*
* Copyright (c) 2004, Russell Beattie (http://www.russellbeattie.com/)
* All rights reserved.
@ -48,7 +48,7 @@ import java.sql.SQLException;
*
* @author <a href="http://www.russellbeattie.com/">Russell Beattie</a>
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
* @version $Revision: 1.4 $, $Date: 2004/03/17 23:19:02 $
* @since 1.0
*/
public class SimplePoolDataSource implements DataSource {

View file

@ -1,7 +1,7 @@
/*
* $Source$
* $Revision$
* $Date$
* $Source: /home/cvsroot/manywhere/simplepool/src/net/java/dev/simplepool/SimplePoolDataSourceFactory.java,v $
* $Revision: 1.5 $
* $Date: 2004/03/17 23:19:02 $
*
* Copyright (c) 2004, Russell Beattie (http://www.russellbeattie.com/)
* All rights reserved.
@ -49,7 +49,7 @@ import java.util.Hashtable;
*
* @author <a href="http://www.russellbeattie.com/">Russell Beattie</a>
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
* @version $Revision: 1.5 $, $Date: 2004/03/17 23:19:02 $
* @since 1.0
*/
public class SimplePoolDataSourceFactory implements ObjectFactory {

View file

@ -1,7 +1,7 @@
/*
* $Source$
* $Revision$
* $Date$
* $Source: /home/cvsroot/manywhere/simplepool/src/net/java/dev/simplepool/SimplePoolServlet.java,v $
* $Revision: 1.5 $
* $Date: 2004/03/17 23:35:36 $
*
* Copyright (c) 2004, Russell Beattie (http://www.russellbeattie.com/)
* All rights reserved.
@ -51,7 +51,7 @@ import javax.servlet.http.HttpServlet;
*
* @author <a href="http://www.russellbeattie.com/">Russell Beattie</a>
* @author <a href="http://www.thauvin.net/erik/">Erik C. Thauvin</a>
* @version $Revision$, $Date$
* @version $Revision: 1.5 $, $Date: 2004/03/17 23:35:36 $
* @since 1.0
*/
public class SimplePoolServlet extends HttpServlet {