[jsword-svn] jsword/java/limbo/org/crosswire/jsword/book/ser s
jswordcvs at crosswire.org
jswordcvs at crosswire.org
Mon May 9 19:11:43 MST 2005
Update of /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/ser
In directory www.crosswire.org:/tmp/cvs-serv11663/java/limbo/org/crosswire/jsword/book/ser
Modified Files:
SerBookDriver.java SerBook.java SerBookDriverTest.java
Msg.java BookDataCache.java SerBookTest.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: Msg.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/ser/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:17 -0000 1.1
--- Msg.java 10 May 2005 02:11:41 -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.ser;
***************
*** 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: SerBookDriver.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/ser/SerBookDriver.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** SerBookDriver.java 19 Mar 2005 01:56:47 -0000 1.4
--- SerBookDriver.java 10 May 2005 02:11:41 -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.ser;
***************
*** 16,39 ****
* This represents all of the SerBibles.
*
! * <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 SerBookDriver extends AbstractBookDriver
--- 37,43 ----
* This represents all of the SerBibles.
*
! * @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 SerBookDriver extends AbstractBookDriver
Index: SerBookTest.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/ser/SerBookTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SerBookTest.java 8 Aug 2004 12:26:34 -0000 1.1
--- SerBookTest.java 10 May 2005 02:11:41 -0000 1.2
***************
*** 1,3 ****
!
package org.crosswire.jsword.book.ser;
--- 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.ser;
***************
*** 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 SerBookTest extends BookAdvancedParentTst
--- 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 SerBookTest extends BookAdvancedParentTst
Index: SerBookDriverTest.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/ser/SerBookDriverTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SerBookDriverTest.java 8 Aug 2004 12:26:34 -0000 1.1
--- SerBookDriverTest.java 10 May 2005 02:11:41 -0000 1.2
***************
*** 1,3 ****
!
package org.crosswire.jsword.book.ser;
--- 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.ser;
***************
*** 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 SerBookDriverTest 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 SerBookDriverTest extends BookDriverParentTst
Index: BookDataCache.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/ser/BookDataCache.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** BookDataCache.java 25 Jun 2004 11:15:17 -0000 1.1
--- BookDataCache.java 10 May 2005 02:11:41 -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.ser;
***************
*** 22,45 ****
* A cache of BibleData that can be shared amongst Bibles.
*
! * <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 BookDataCache implements Activatable
--- 43,49 ----
* A cache of BibleData that can be shared amongst Bibles.
*
! * @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 BookDataCache implements Activatable
Index: SerBook.java
===================================================================
RCS file: /cvs/jsword/jsword/java/limbo/org/crosswire/jsword/book/ser/SerBook.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** SerBook.java 9 May 2005 01:29:07 -0000 1.6
--- SerBook.java 10 May 2005 02:11:41 -0000 1.7
***************
*** 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.ser;
***************
*** 118,142 ****
* VB code. Now is it a port or a re-write?
*
! * <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]
* @author Mark Goodwin [mark at thorubio dot org]
- * @version $Id$
*/
public class SerBook extends AbstractPassageBook
--- 139,146 ----
* VB code. Now is it a port or a re-write?
*
! * @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]
* @author Mark Goodwin [mark at thorubio dot org]
*/
public class SerBook extends AbstractPassageBook
More information about the jsword-svn
mailing list