[jsword-svn] common/java/limbo/org/crosswire/common/util s

jswordcvs at crosswire.org jswordcvs at crosswire.org
Wed Jul 27 16:26:46 MST 2005


Update of /cvs/jsword/common/java/limbo/org/crosswire/common/util
In directory www.crosswire.org:/tmp/cvs-serv23842/java/limbo/org/crosswire/common/util

Modified Files:
	RobustList.java RowProcessor.java TabbedFileReader.java 
Log Message:
Changed license from GPL to LGPL.

Index: TabbedFileReader.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/util/TabbedFileReader.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TabbedFileReader.java	17 May 2005 00:47:01 -0000	1.4
--- TabbedFileReader.java	27 Jul 2005 23:26:43 -0000	1.5
***************
*** 1,13 ****
  /**
   * 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.
--- 1,13 ----
  /**
   * Distribution License:
!  * This is free software; you can redistribute it and/or modify it under
!  * the terms of the GNU Lesser General Public License, version 2.1 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 Lesser General Public License for more details.
   *
   * The License is available on the internet at:
!  *       http://www.gnu.org/copyleft/llgpl.html
   * or by writing to:
   *      Free Software Foundation, Inc.
***************
*** 31,35 ****
   * tab separated columns.
   *
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author DM Smith [ dmsmith555 at yahoo dot com]
--- 31,35 ----
   * tab separated columns.
   *
!  * @see gnu.lgpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author DM Smith [ dmsmith555 at yahoo dot com]

Index: RobustList.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/util/RobustList.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** RobustList.java	17 May 2005 00:47:01 -0000	1.4
--- RobustList.java	27 Jul 2005 23:26:43 -0000	1.5
***************
*** 1,13 ****
  /**
   * 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.
--- 1,13 ----
  /**
   * Distribution License:
!  * This is free software; you can redistribute it and/or modify it under
!  * the terms of the GNU Lesser General Public License, version 2.1 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 Lesser General Public License for more details.
   *
   * The License is available on the internet at:
!  *       http://www.gnu.org/copyleft/llgpl.html
   * or by writing to:
   *      Free Software Foundation, Inc.
***************
*** 30,34 ****
   * This is a version of LinkedList that is not fail-fast.
   * 
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]
--- 30,34 ----
   * This is a version of LinkedList that is not fail-fast.
   * 
!  * @see gnu.lgpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]

Index: RowProcessor.java
===================================================================
RCS file: /cvs/jsword/common/java/limbo/org/crosswire/common/util/RowProcessor.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** RowProcessor.java	17 May 2005 00:47:01 -0000	1.4
--- RowProcessor.java	27 Jul 2005 23:26:43 -0000	1.5
***************
*** 1,13 ****
  /**
   * 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.
--- 1,13 ----
  /**
   * Distribution License:
!  * This is free software; you can redistribute it and/or modify it under
!  * the terms of the GNU Lesser General Public License, version 2.1 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 Lesser General Public License for more details.
   *
   * The License is available on the internet at:
!  *       http://www.gnu.org/copyleft/llgpl.html
   * or by writing to:
   *      Free Software Foundation, Inc.
***************
*** 25,29 ****
   * A RowProcessor processes a single row consisting of an array of objects.
   * 
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author DM Smith [ dmsmith555 at yahoo dot com]
--- 25,29 ----
   * A RowProcessor processes a single row consisting of an array of objects.
   * 
!  * @see gnu.lgpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author DM Smith [ dmsmith555 at yahoo dot com]



More information about the jsword-svn mailing list