[jsword-svn] jsword/java/limbo/org/crosswire/jsword/book/jdbc s
jswordcvs at crosswire.org
jswordcvs at crosswire.org
Mon May 9 19:11:41 MST 2005
Update of /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/jdbc
In directory www.crosswire.org:/tmp/cvs-serv11663/java/limbo/org/crosswire/jsword/book/jdbc
Modified Files:
JDBCBookTest.java JDBCBibleUtil.java JDBCBook.java
JDBCBookDriver.java JDBCBookDriverTest.java
JDBCBookUtilTest.java Msg.java
Log Message:
Moved GPL to be a file comment.
Fixed the JSword build fail on missing resource diirectory.
Made ant clean also remove the keystore file.
Index: JDBCBookUtilTest.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/jdbc/JDBCBookUtilTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** JDBCBookUtilTest.java 8 Aug 2004 12:26:34 -0000 1.1
--- JDBCBookUtilTest.java 10 May 2005 02:11:39 -0000 1.2
***************
*** 1,3 ****
!
package org.crosswire.jsword.book.jdbc;
--- 1,23 ----
! /**
! * Distribution License:
! * JSword is free software; you can redistribute it and/or modify it under
! * the terms of the GNU General Public License, version 2 as published by
! * the Free Software Foundation. This program is distributed in the hope
! * that it will be useful, but WITHOUT ANY WARRANTY; without even the
! * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
! * See the GNU General Public License for more details.
! *
! * The License is available on the internet at:
! * http://www.gnu.org/copyleft/gpl.html
! * or by writing to:
! * Free Software Foundation, Inc.
! * 59 Temple Place - Suite 330
! * Boston, MA 02111-1307, USA
! *
! * Copyright: 2005
! * The copyright to this program is held by it's authors.
! *
! * ID: $ID$
! */
package org.crosswire.jsword.book.jdbc;
***************
*** 7,30 ****
* JUnit Test.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class JDBCBookUtilTest extends BookParentTst
--- 27,33 ----
* JUnit Test.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class JDBCBookUtilTest extends BookParentTst
Index: Msg.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/jdbc/Msg.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Msg.java 25 Jun 2004 11:15:19 -0000 1.1
--- Msg.java 10 May 2005 02:11:39 -0000 1.2
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.jsword.book.jdbc;
***************
*** 6,29 ****
* Compile safe Msg resource settings.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
class Msg extends MsgBase
--- 27,33 ----
* Compile safe Msg resource settings.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
class Msg extends MsgBase
Index: JDBCBook.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/jdbc/JDBCBook.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** JDBCBook.java 9 May 2005 01:29:06 -0000 1.9
--- JDBCBook.java 10 May 2005 02:11:39 -0000 1.10
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.jsword.book.jdbc;
***************
*** 30,53 ****
* JDBCBook implements Bible, and gets the text from a JDBC database.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class JDBCBook extends AbstractPassageBook
--- 51,57 ----
* JDBCBook implements Bible, and gets the text from a JDBC database.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class JDBCBook extends AbstractPassageBook
Index: JDBCBibleUtil.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/jdbc/JDBCBibleUtil.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** JDBCBibleUtil.java 5 Apr 2005 00:33:40 -0000 1.3
--- JDBCBibleUtil.java 10 May 2005 02:11:39 -0000 1.4
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.jsword.book.jdbc;
***************
*** 8,31 ****
* methods and parcled them off here.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class JDBCBibleUtil
--- 29,35 ----
* methods and parcled them off here.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class JDBCBibleUtil
Index: JDBCBookTest.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/jdbc/JDBCBookTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** JDBCBookTest.java 8 Aug 2004 12:26:34 -0000 1.1
--- JDBCBookTest.java 10 May 2005 02:11:39 -0000 1.2
***************
*** 1,3 ****
!
package org.crosswire.jsword.book.jdbc;
--- 1,23 ----
! /**
! * Distribution License:
! * JSword is free software; you can redistribute it and/or modify it under
! * the terms of the GNU General Public License, version 2 as published by
! * the Free Software Foundation. This program is distributed in the hope
! * that it will be useful, but WITHOUT ANY WARRANTY; without even the
! * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
! * See the GNU General Public License for more details.
! *
! * The License is available on the internet at:
! * http://www.gnu.org/copyleft/gpl.html
! * or by writing to:
! * Free Software Foundation, Inc.
! * 59 Temple Place - Suite 330
! * Boston, MA 02111-1307, USA
! *
! * Copyright: 2005
! * The copyright to this program is held by it's authors.
! *
! * ID: $ID$
! */
package org.crosswire.jsword.book.jdbc;
***************
*** 7,30 ****
* JUnit Test.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class JDBCBookTest extends BookParentTst
--- 27,33 ----
* JUnit Test.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class JDBCBookTest extends BookParentTst
Index: JDBCBookDriverTest.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/jdbc/JDBCBookDriverTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** JDBCBookDriverTest.java 8 Aug 2004 12:26:34 -0000 1.1
--- JDBCBookDriverTest.java 10 May 2005 02:11:39 -0000 1.2
***************
*** 1,3 ****
!
package org.crosswire.jsword.book.jdbc;
--- 1,23 ----
! /**
! * Distribution License:
! * JSword is free software; you can redistribute it and/or modify it under
! * the terms of the GNU General Public License, version 2 as published by
! * the Free Software Foundation. This program is distributed in the hope
! * that it will be useful, but WITHOUT ANY WARRANTY; without even the
! * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
! * See the GNU General Public License for more details.
! *
! * The License is available on the internet at:
! * http://www.gnu.org/copyleft/gpl.html
! * or by writing to:
! * Free Software Foundation, Inc.
! * 59 Temple Place - Suite 330
! * Boston, MA 02111-1307, USA
! *
! * Copyright: 2005
! * The copyright to this program is held by it's authors.
! *
! * ID: $ID$
! */
package org.crosswire.jsword.book.jdbc;
***************
*** 7,30 ****
* JUnit Test.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class JDBCBookDriverTest extends BookDriverParentTst
--- 27,33 ----
* JUnit Test.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class JDBCBookDriverTest extends BookDriverParentTst
Index: JDBCBookDriver.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/jdbc/JDBCBookDriver.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** JDBCBookDriver.java 19 Mar 2005 01:56:46 -0000 1.4
--- JDBCBookDriver.java 10 May 2005 02:11:39 -0000 1.5
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+ * Distribution License:
+ * JSword is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, version 2 as published by
+ * the Free Software Foundation. This program is distributed in the hope
+ * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * The License is available on the internet at:
+ * http://www.gnu.org/copyleft/gpl.html
+ * or by writing to:
+ * Free Software Foundation, Inc.
+ * 59 Temple Place - Suite 330
+ * Boston, MA 02111-1307, USA
+ *
+ * Copyright: 2005
+ * The copyright to this program is held by it's authors.
+ *
+ * ID: $ID$
+ */
package org.crosswire.jsword.book.jdbc;
***************
*** 16,39 ****
* This represents all of the JDBCBibles.
*
! * <p><table border='1' cellPadding='3' cellSpacing='0'>
! * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
! *
! * Distribution Licence:<br />
! * JSword is free software; you can redistribute it
! * and/or modify it under the terms of the GNU General Public License,
! * version 2 as published by the Free Software Foundation.<br />
! * This program is distributed in the hope that it will be useful,
! * but WITHOUT ANY WARRANTY; without even the implied warranty of
! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! * General Public License for more details.<br />
! * The License is available on the internet
! * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
! * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
! * MA 02111-1307, USA<br />
! * The copyright to this program is held by it's authors.
! * </font></td></tr></table>
! * @see gnu.gpl.Licence
* @author Joe Walker [joe at eireneh dot com]
- * @version $Id$
*/
public class JDBCBookDriver extends AbstractBookDriver
--- 37,43 ----
* This represents all of the JDBCBibles.
*
! * @see gnu.gpl.Licence for license details.
! * The copyright to this program is held by it's authors.
* @author Joe Walker [joe at eireneh dot com]
*/
public class JDBCBookDriver extends AbstractBookDriver
More information about the jsword-svn
mailing list