Update of /project/closure/cvsroot/closure/src/imagelib In directory common-lisp.net:/tmp/cvs-serv11452/src/imagelib
Modified Files: basic.lisp deflate.lisp package.lisp png.lisp Log Message: Gross license change Date: Sun Mar 13 19:02:06 2005 Author: gbaumann
Index: closure/src/imagelib/basic.lisp diff -u closure/src/imagelib/basic.lisp:1.2 closure/src/imagelib/basic.lisp:1.3 --- closure/src/imagelib/basic.lisp:1.2 Sun Jun 15 18:54:29 2003 +++ closure/src/imagelib/basic.lisp Sun Mar 13 19:02:00 2005 @@ -2,24 +2,29 @@ ;;; --------------------------------------------------------------------------- ;;; Title: General image routines ;;; Created: 1998-11-11 -;;; Author: Gilbert Baumann unk6@rz.uni-karlsruhe.de -;;; License: GPL (See file COPYING for details). +;;; Author: Gilbert Baumann gilbert@base-engineering.com +;;; License: MIT style (see below) ;;; --------------------------------------------------------------------------- ;;; (c) copyright 1998 by Gilbert Baumann
-;;; This program is free software; you can redistribute it and/or modify -;;; it under the terms of the GNU General Public License as published by -;;; the Free Software Foundation; either version 2 of the License, or -;;; (at your option) any later version. -;;; -;;; 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. -;;; -;;; You should have received a copy of the GNU General Public License -;;; along with this program; if not, write to the Free Software -;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +;;; Permission is hereby granted, free of charge, to any person obtaining +;;; a copy of this software and associated documentation files (the +;;; "Software"), to deal in the Software without restriction, including +;;; without limitation the rights to use, copy, modify, merge, publish, +;;; distribute, sublicense, and/or sell copies of the Software, and to +;;; permit persons to whom the Software is furnished to do so, subject to +;;; the following conditions: +;;; +;;; The above copyright notice and this permission notice shall be +;;; included in all copies or substantial portions of the Software. +;;; +;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +;;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +;;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +;;; IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +;;; CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +;;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +;;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
;; Changes ;;
Index: closure/src/imagelib/deflate.lisp diff -u closure/src/imagelib/deflate.lisp:1.3 closure/src/imagelib/deflate.lisp:1.4 --- closure/src/imagelib/deflate.lisp:1.3 Sun Jun 15 18:54:29 2003 +++ closure/src/imagelib/deflate.lisp Sun Mar 13 19:02:00 2005 @@ -2,24 +2,29 @@ ;;; --------------------------------------------------------------------------- ;;; Title: The DEFLATE Compression (rfc-1951) ;;; Created: 1997-04-24 -;;; Author: Gilbert Baumann unk6@rz.uni-karlsruhe.de -;;; License: GPL (See file COPYING for details). +;;; Author: Gilbert Baumann gilbert@base-engineering.com +;;; License: MIT style (see below) ;;; --------------------------------------------------------------------------- ;;; (c) copyright 1997,1998 by Gilbert Baumann
-;;; This program is free software; you can redistribute it and/or modify -;;; it under the terms of the GNU General Public License as published by -;;; the Free Software Foundation; either version 2 of the License, or -;;; (at your option) any later version. -;;; -;;; 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. -;;; -;;; You should have received a copy of the GNU General Public License -;;; along with this program; if not, write to the Free Software -;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +;;; Permission is hereby granted, free of charge, to any person obtaining +;;; a copy of this software and associated documentation files (the +;;; "Software"), to deal in the Software without restriction, including +;;; without limitation the rights to use, copy, modify, merge, publish, +;;; distribute, sublicense, and/or sell copies of the Software, and to +;;; permit persons to whom the Software is furnished to do so, subject to +;;; the following conditions: +;;; +;;; The above copyright notice and this permission notice shall be +;;; included in all copies or substantial portions of the Software. +;;; +;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +;;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +;;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +;;; IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +;;; CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +;;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +;;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
(in-package :PNG)
Index: closure/src/imagelib/package.lisp diff -u closure/src/imagelib/package.lisp:1.1.1.1 closure/src/imagelib/package.lisp:1.2 --- closure/src/imagelib/package.lisp:1.1.1.1 Mon Jul 22 04:27:21 2002 +++ closure/src/imagelib/package.lisp Sun Mar 13 19:02:01 2005 @@ -1,3 +1,33 @@ +;;; -*- Mode: Lisp; Syntax: Common-Lisp; Package: CL-USER; -*- +;;; --------------------------------------------------------------------------- +;;; Title: Package definition for IMAGELIB +;;; Created: ??? +;;; Author: Gilbert Baumann gilbert@base-engineering.com +;;; License: MIT style (see below) +;;; --------------------------------------------------------------------------- +;;; (c) copyright 2005 by Gilbert Baumann + +;;; Permission is hereby granted, free of charge, to any person obtaining +;;; a copy of this software and associated documentation files (the +;;; "Software"), to deal in the Software without restriction, including +;;; without limitation the rights to use, copy, modify, merge, publish, +;;; distribute, sublicense, and/or sell copies of the Software, and to +;;; permit persons to whom the Software is furnished to do so, subject to +;;; the following conditions: +;;; +;;; The above copyright notice and this permission notice shall be +;;; included in all copies or substantial portions of the Software. +;;; +;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +;;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +;;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +;;; IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +;;; CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +;;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +;;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +(in-package :CL-USER) + (defpackage :imagelib (:use :glisp) (:export
Index: closure/src/imagelib/png.lisp diff -u closure/src/imagelib/png.lisp:1.3 closure/src/imagelib/png.lisp:1.4 --- closure/src/imagelib/png.lisp:1.3 Fri Mar 14 18:06:16 2003 +++ closure/src/imagelib/png.lisp Sun Mar 13 19:02:01 2005 @@ -2,24 +2,29 @@ ;;; --------------------------------------------------------------------------- ;;; Title: Reading .png Files ;;; Created: 1997-04-24 -;;; Author: Gilbert Baumann unk6@rz.uni-karlsruhe.de -;;; License: GPL (See file COPYING for details). +;;; Author: Gilbert Baumann gilbert@base-engineering.com +;;; License: MIT style (see below) ;;; --------------------------------------------------------------------------- ;;; (c) copyright 1997-1998,2001 by Gilbert Baumann
-;;; This program is free software; you can redistribute it and/or modify -;;; it under the terms of the GNU General Public License as published by -;;; the Free Software Foundation; either version 2 of the License, or -;;; (at your option) any later version. -;;; -;;; 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. -;;; -;;; You should have received a copy of the GNU General Public License -;;; along with this program; if not, write to the Free Software -;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +;;; Permission is hereby granted, free of charge, to any person obtaining +;;; a copy of this software and associated documentation files (the +;;; "Software"), to deal in the Software without restriction, including +;;; without limitation the rights to use, copy, modify, merge, publish, +;;; distribute, sublicense, and/or sell copies of the Software, and to +;;; permit persons to whom the Software is furnished to do so, subject to +;;; the following conditions: +;;; +;;; The above copyright notice and this permission notice shall be +;;; included in all copies or substantial portions of the Software. +;;; +;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +;;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +;;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +;;; IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +;;; CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +;;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +;;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
(in-package :PNG)