[closure-cvs] CVS update: closure/src/css/css-parse.lisp closure/src/css/css-properties.lisp closure/src/css/css-selector.lisp closure/src/css/css-setup.lisp closure/src/css/css-support.lisp closure/src/css/package.lisp

Gilbert Baumann gbaumann at common-lisp.net
Sun Mar 13 18:01:16 UTC 2005


Update of /project/closure/cvsroot/closure/src/css
In directory common-lisp.net:/tmp/cvs-serv11452/src/css

Modified Files:
	css-parse.lisp css-properties.lisp css-selector.lisp 
	css-setup.lisp css-support.lisp package.lisp 
Log Message:
Gross license change
Date: Sun Mar 13 19:00:59 2005
Author: gbaumann

Index: closure/src/css/css-parse.lisp
diff -u closure/src/css/css-parse.lisp:1.3 closure/src/css/css-parse.lisp:1.4
--- closure/src/css/css-parse.lisp:1.3	Thu Mar 13 20:29:17 2003
+++ closure/src/css/css-parse.lisp	Sun Mar 13 19:00:58 2005
@@ -2,24 +2,29 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: Parsing CSS1 Style Sheets (according to W3C REC-CSS1-961217)
 ;;;   Created: 1998-02-08
-;;;    Author: Gilbert Baumann <unk6 at rz.uni-karlsruhe.de>
-;;;   License: GPL (See file COPYING for details).
+;;;    Author: Gilbert Baumann <gilbert at base-engineering.com>
+;;;   License: MIT style (see below)
 ;;; ---------------------------------------------------------------------------
 ;;;  (c) copyright 1998-2003 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 :CSS)
 


Index: closure/src/css/css-properties.lisp
diff -u closure/src/css/css-properties.lisp:1.7 closure/src/css/css-properties.lisp:1.8
--- closure/src/css/css-properties.lisp:1.7	Fri Mar 14 18:06:16 2003
+++ closure/src/css/css-properties.lisp	Sun Mar 13 19:00:58 2005
@@ -2,25 +2,30 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: Parsing CSS1 Style Sheets (according to W3C REC-CSS1-961217)
 ;;;   Created: 1998-02-08
-;;;    Author: Gilbert Baumann <unk6 at rz.uni-karlsruhe.de>
-;;;   License: GPL (See file COPYING for details).
-;;;       $Id: css-properties.lisp,v 1.7 2003/03/14 17:06:16 dan Exp $
+;;;    Author: Gilbert Baumann <gilbert at base-engineering.com>
+;;;   License: MIT style (see below)
+;;;       $Id: css-properties.lisp,v 1.8 2005/03/13 18:00:58 gbaumann Exp $
 ;;; ---------------------------------------------------------------------------
 ;;;  (c) copyright 1998-2002 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.
 
 ;;;;;;;;;;;;;;;
 
@@ -937,6 +942,9 @@
 
 
 ;; $Log: css-properties.lisp,v $
+;; Revision 1.8  2005/03/13 18:00:58  gbaumann
+;; Gross license change
+;;
 ;; Revision 1.7  2003/03/14 17:06:16  dan
 ;; replace defconstants for non-constant variables with defvar, to placate SBCL, which suffers from offensively ANSI behaviour with same
 ;;


Index: closure/src/css/css-selector.lisp
diff -u closure/src/css/css-selector.lisp:1.3 closure/src/css/css-selector.lisp:1.4
--- closure/src/css/css-selector.lisp:1.3	Thu Mar 13 20:29:17 2003
+++ closure/src/css/css-selector.lisp	Sun Mar 13 19:00:58 2005
@@ -3,9 +3,30 @@
 ;;;     Title: CSS selectors
 ;;;            [Split off from css-parse.lisp]
 ;;;   Created: 2001-05-19
-;;;    Author: Gilbert Baumann <unk6 at rz.uni-karlsruhe.de>
+;;;    Author: Gilbert Baumann <gilbert at base-engineering.com>
+;;;   License: MIT style (see below)
 ;;; ---------------------------------------------------------------------------
 ;;;  (c) copyright 1998-2001 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 :CSS)
 


Index: closure/src/css/css-setup.lisp
diff -u closure/src/css/css-setup.lisp:1.3 closure/src/css/css-setup.lisp:1.4
--- closure/src/css/css-setup.lisp:1.3	Thu Mar 13 20:29:17 2003
+++ closure/src/css/css-setup.lisp	Sun Mar 13 19:00:58 2005
@@ -2,25 +2,30 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: Initial setup of css style attributes
 ;;;   Created: 1998-06-18
-;;;    Author: Gilbert Baumann <unk6 at rz.uni-karlsruhe.de>
-;;;   License: GPL (See file COPYING for details).
-;;;       $Id: css-setup.lisp,v 1.3 2003/03/13 19:29:17 gilbert Exp $
+;;;    Author: Gilbert Baumann <gilbert at base-engineering.com>
+;;;   License: MIT style (see below)
+;;;       $Id: css-setup.lisp,v 1.4 2005/03/13 18:00:58 gbaumann Exp $
 ;;; ---------------------------------------------------------------------------
 ;;;  (c) copyright 1998-2002 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 :CSS)
 
@@ -454,6 +459,9 @@
 
 
 ;; $Log: css-setup.lisp,v $
+;; Revision 1.4  2005/03/13 18:00:58  gbaumann
+;; Gross license change
+;;
 ;; Revision 1.3  2003/03/13 19:29:17  gilbert
 ;; lots of hacking
 ;;


Index: closure/src/css/css-support.lisp
diff -u closure/src/css/css-support.lisp:1.2 closure/src/css/css-support.lisp:1.3
--- closure/src/css/css-support.lisp:1.2	Thu Mar 13 20:29:17 2003
+++ closure/src/css/css-support.lisp	Sun Mar 13 19:00:58 2005
@@ -2,9 +2,30 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: [temporary] parse tree support for the css stuff
 ;;;   Created: 2002-08-07
-;;;    Author: Gilbert Baumann <unk6 at rz.uni-karlsruhe.de>
+;;;    Author: Gilbert Baumann <gilbert at base-engineering.com>
+;;;   License: MIT style (see below)
 ;;; ---------------------------------------------------------------------------
 ;;;  (c) copyright 2002 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 :css)
 


Index: closure/src/css/package.lisp
diff -u closure/src/css/package.lisp:1.2 closure/src/css/package.lisp:1.3
--- closure/src/css/package.lisp:1.2	Thu Mar 13 20:29:17 2003
+++ closure/src/css/package.lisp	Sun Mar 13 19:00:58 2005
@@ -2,27 +2,31 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: CSS Package Definition
 ;;;   Created: 2002-07-23
-;;;    Author: Gilbert Baumann <unk6 at rz.uni-karlsruhe.de>
-;;;   License: GPL (See file COPYING for details).
+;;;    Author: Gilbert Baumann <gilbert at base-engineering.com>
+;;;   License: MIT style (see below)
 ;;; ---------------------------------------------------------------------------
-;;;  (c) copyright 2002 by Gilbert Baumann
+;;;  (c) copyright 2005 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.
- 
-(in-package :CL-USER)
+;;;  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 :css
   (:use :glisp)
   ;;




More information about the Closure-cvs mailing list