[jsword-svn] jsword/java/jsword/org/crosswire/jsword/book/basic s

jswordcvs at crosswire.org jswordcvs at crosswire.org
Mon May 9 19:11:43 MST 2005


Update of /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/basic
In directory www.crosswire.org:/tmp/cvs-serv11663/java/jsword/org/crosswire/jsword/book/basic

Modified Files:
	AbstractBookList.java DefaultBookMetaData.java 
	AbstractBookMetaData.java AbstractBook.java 
	AbstractBookDriver.java AbstractPassageBook.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: AbstractBook.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/basic/AbstractBook.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** AbstractBook.java	1 Apr 2005 17:09:46 -0000	1.14
--- AbstractBook.java	10 May 2005 02:11:40 -0000	1.15
***************
*** 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.basic;
  
***************
*** 24,47 ****
   * some basic write methods. 
   * 
!  * <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 abstract class AbstractBook implements Book
--- 45,51 ----
   * some basic write methods. 
   * 
!  * @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 abstract class AbstractBook implements Book

Index: AbstractPassageBook.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/basic/AbstractPassageBook.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** AbstractPassageBook.java	9 May 2005 01:29:06 -0000	1.1
--- AbstractPassageBook.java	10 May 2005 02:11:40 -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.basic;
  
***************
*** 24,47 ****
   * on reading book data.
   * 
!  * <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 abstract class AbstractPassageBook extends AbstractBook
--- 45,51 ----
   * on reading book data.
   * 
!  * @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 abstract class AbstractPassageBook extends AbstractBook

Index: Msg.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/basic/Msg.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Msg.java	9 May 2005 01:29:06 -0000	1.10
--- Msg.java	10 May 2005 02:11:40 -0000	1.11
***************
*** 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.basic;
  
***************
*** 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$
   */
  public 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]
   */
  public class Msg extends MsgBase

Index: DefaultBookMetaData.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/basic/DefaultBookMetaData.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** DefaultBookMetaData.java	1 Apr 2005 17:09:46 -0000	1.19
--- DefaultBookMetaData.java	10 May 2005 02:11:40 -0000	1.20
***************
*** 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.basic;
  
***************
*** 23,46 ****
   * implementation.
   * 
!  * <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 DefaultBookMetaData extends AbstractBookMetaData
--- 44,50 ----
   * implementation.
   * 
!  * @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 DefaultBookMetaData extends AbstractBookMetaData

Index: AbstractBookDriver.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/basic/AbstractBookDriver.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** AbstractBookDriver.java	19 Mar 2005 01:56:47 -0000	1.8
--- AbstractBookDriver.java	10 May 2005 02:11:40 -0000	1.9
***************
*** 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.basic;
  
***************
*** 9,32 ****
   * simple read-only BibleDriver.
   * 
!  * <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 abstract class AbstractBookDriver implements BookDriver
--- 30,36 ----
   * simple read-only BibleDriver.
   * 
!  * @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 abstract class AbstractBookDriver implements BookDriver

Index: AbstractBookMetaData.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/basic/AbstractBookMetaData.java,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** AbstractBookMetaData.java	21 Mar 2005 02:37:28 -0000	1.21
--- AbstractBookMetaData.java	10 May 2005 02:11:40 -0000	1.22
***************
*** 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.basic;
  
***************
*** 23,46 ****
   * An implementaion of the Propery Change methods from BookMetaData.
   * 
!  * <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 abstract class AbstractBookMetaData implements BookMetaData
--- 44,50 ----
   * An implementaion of the Propery Change methods from BookMetaData.
   * 
!  * @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 abstract class AbstractBookMetaData implements BookMetaData

Index: AbstractBookList.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/basic/AbstractBookList.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AbstractBookList.java	19 Mar 2005 01:56:47 -0000	1.3
--- AbstractBookList.java	10 May 2005 02:11:40 -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.basic;
  
***************
*** 18,41 ****
   * bugs fixed in one should be fixed in the other too.
   * 
!  * <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 abstract class AbstractBookList implements BookList
--- 39,45 ----
   * bugs fixed in one should be fixed in the other too.
   * 
!  * @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 abstract class AbstractBookList implements BookList



More information about the jsword-svn mailing list