[closure-cvs] CVS update: closure/src/renderer/clim-device.lisp closure/src/renderer/clim-draw.lisp closure/src/renderer/device.lisp closure/src/renderer/document.lisp closure/src/renderer/fonts.lisp closure/src/renderer/hyphenation.lisp closure/src/renderer/images.lisp closure/src/renderer/list-item.lisp closure/src/renderer/package.lisp closure/src/renderer/r-struct.lisp closure/src/renderer/raux.lisp closure/src/renderer/renderer.lisp closure/src/renderer/renderer2.lisp closure/src/renderer/tables.lisp closure/src/renderer/texpara.lisp closure/src/renderer/x11.lisp

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


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

Modified Files:
	clim-device.lisp clim-draw.lisp device.lisp document.lisp 
	fonts.lisp hyphenation.lisp images.lisp list-item.lisp 
	package.lisp r-struct.lisp raux.lisp renderer.lisp 
	renderer2.lisp tables.lisp texpara.lisp x11.lisp 
Log Message:
Gross license change
Date: Sun Mar 13 19:03:27 2005
Author: gbaumann

Index: closure/src/renderer/clim-device.lisp
diff -u closure/src/renderer/clim-device.lisp:1.6 closure/src/renderer/clim-device.lisp:1.7
--- closure/src/renderer/clim-device.lisp:1.6	Sun Jun 15 18:54:30 2003
+++ closure/src/renderer/clim-device.lisp	Sun Mar 13 19:03:24 2005
@@ -1,4 +1,32 @@
-(in-package :closure/clim-device)
+;;; -*- Mode: Lisp; Syntax: Common-Lisp; Package: CLOSURE/CLIM-DEVICE; -*-
+;;; ---------------------------------------------------------------------------
+;;;     Title: CLIM device for the renderer
+;;;   Created: ???
+;;;    Author: Gilbert Baumann <gilbert at 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 :CLOSURE/CLIM-DEVICE)
 
 (defclass clim-device ()
   ((medium :accessor clim-device-medium :initarg :medium)


Index: closure/src/renderer/clim-draw.lisp
diff -u closure/src/renderer/clim-draw.lisp:1.1 closure/src/renderer/clim-draw.lisp:1.2
--- closure/src/renderer/clim-draw.lisp:1.1	Thu Mar 13 20:30:56 2003
+++ closure/src/renderer/clim-draw.lisp	Sun Mar 13 19:03:24 2005
@@ -2,25 +2,30 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: Drawing
 ;;;   Created: 2003-03-08
-;;;    Author: Gilbert Baumann <unk6 at rz.uni-karlsruhe.de>
-;;;   License: GPL (See file COPYING for details).
-;;;       $Id: clim-draw.lisp,v 1.1 2003/03/13 19:30:56 gilbert Exp $
+;;;    Author: Gilbert Baumann <gilbert at base-engineering.com>
+;;;   License: MIT style (see below)
+;;;       $Id: clim-draw.lisp,v 1.2 2005/03/13 18:03:24 gbaumann Exp $
 ;;; ---------------------------------------------------------------------------
 ;;;  (c) copyright 1997-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 :renderer)
 


Index: closure/src/renderer/device.lisp
diff -u closure/src/renderer/device.lisp:1.1 closure/src/renderer/device.lisp:1.2
--- closure/src/renderer/device.lisp:1.1	Thu Mar 13 20:30:56 2003
+++ closure/src/renderer/device.lisp	Sun Mar 13 19:03:24 2005
@@ -2,24 +2,29 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: A Little Device Abstraction
 ;;;   Created: 2003-03-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 :RENDERER)
 


Index: closure/src/renderer/document.lisp
diff -u closure/src/renderer/document.lisp:1.3 closure/src/renderer/document.lisp:1.4
--- closure/src/renderer/document.lisp:1.3	Fri Mar 14 17:44:07 2003
+++ closure/src/renderer/document.lisp	Sun Mar 13 19:03:24 2005
@@ -2,24 +2,29 @@
 ;;; --------------------------------------------------------------------------------------
 ;;;     Title: The Document Class
 ;;;   Created: 1999-05-07 01:56
-;;;    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 1999 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 :RENDERER)
 


Index: closure/src/renderer/fonts.lisp
diff -u closure/src/renderer/fonts.lisp:1.3 closure/src/renderer/fonts.lisp:1.4
--- closure/src/renderer/fonts.lisp:1.3	Fri Mar 14 18:06:16 2003
+++ closure/src/renderer/fonts.lisp	Sun Mar 13 19:03:24 2005
@@ -2,24 +2,29 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: Abstract Font Database Interface 
 ;;;   Created: 1998-09-11
-;;;    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 :RENDERER)
 


Index: closure/src/renderer/hyphenation.lisp
diff -u closure/src/renderer/hyphenation.lisp:1.2 closure/src/renderer/hyphenation.lisp:1.3
--- closure/src/renderer/hyphenation.lisp:1.2	Sun Jun 15 18:54:30 2003
+++ closure/src/renderer/hyphenation.lisp	Sun Mar 13 19:03:24 2005
@@ -2,25 +2,30 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: Hyphenation
 ;;;   Created: 2003-03-07
-;;;    Author: Gilbert Baumann <unk6 at rz.uni-karlsruhe.de>
-;;;   License: GPL (See file COPYING for details).
-;;;       $Id: hyphenation.lisp,v 1.2 2003/06/15 16:54:30 gilbert Exp $
+;;;    Author: Gilbert Baumann <gilbert at base-engineering.com>
+;;;   License: MIT style (see below)
+;;;       $Id: hyphenation.lisp,v 1.3 2005/03/13 18:03:24 gbaumann Exp $
 ;;; ---------------------------------------------------------------------------
 ;;;  (c) copyright 1999-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 :R2)
 
@@ -188,6 +193,9 @@
 ;; new:   .57s    2.400,000 bytes [technically zero]
 
 ;; $Log: hyphenation.lisp,v $
+;; Revision 1.3  2005/03/13 18:03:24  gbaumann
+;; Gross license change
+;;
 ;; Revision 1.2  2003/06/15 16:54:30  gilbert
 ;; Patches by Christophe Rhodes to get it going with SBCL.
 ;;


Index: closure/src/renderer/images.lisp
diff -u closure/src/renderer/images.lisp:1.1.1.1 closure/src/renderer/images.lisp:1.2
--- closure/src/renderer/images.lisp:1.1.1.1	Mon Jul 22 04:27:21 2002
+++ closure/src/renderer/images.lisp	Sun Mar 13 19:03:24 2005
@@ -2,24 +2,29 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: General image routines
 ;;;   Created: 1998-11-11
-;;;    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 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/renderer/list-item.lisp
diff -u closure/src/renderer/list-item.lisp:1.1 closure/src/renderer/list-item.lisp:1.2
--- closure/src/renderer/list-item.lisp:1.1	Thu Mar 13 20:30:56 2003
+++ closure/src/renderer/list-item.lisp	Sun Mar 13 19:03:24 2005
@@ -2,24 +2,29 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: List Items
 ;;;   Created: 2002-10-26
-;;;    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 1997-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 :RENDERER)
 


Index: closure/src/renderer/package.lisp
diff -u closure/src/renderer/package.lisp:1.1 closure/src/renderer/package.lisp:1.2
--- closure/src/renderer/package.lisp:1.1	Thu Mar 13 20:30:56 2003
+++ closure/src/renderer/package.lisp	Sun Mar 13 19:03:24 2005
@@ -1,4 +1,32 @@
-(in-package :r2)
+;;; -*- Mode: Lisp; Syntax: Common-Lisp; Package: R2; -*-
+;;; ---------------------------------------------------------------------------
+;;;     Title: Fake package definition for R2
+;;;   Created: ???
+;;;    Author: Gilbert Baumann <gilbert at 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 :R2)
 
 ;; evil
 


Index: closure/src/renderer/r-struct.lisp
diff -u closure/src/renderer/r-struct.lisp:1.2 closure/src/renderer/r-struct.lisp:1.3
--- closure/src/renderer/r-struct.lisp:1.2	Thu Mar 13 20:29:17 2003
+++ closure/src/renderer/r-struct.lisp	Sun Mar 13 19:03:24 2005
@@ -2,24 +2,29 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: The Renderer's Data Structures
 ;;;   Created: 1999-01-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 1999 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.
 
 ;;  When        Who     What
 ;; ----------------------------------------------------------------------------


Index: closure/src/renderer/raux.lisp
diff -u closure/src/renderer/raux.lisp:1.4 closure/src/renderer/raux.lisp:1.5
--- closure/src/renderer/raux.lisp:1.4	Thu Mar 13 20:29:17 2003
+++ closure/src/renderer/raux.lisp	Sun Mar 13 19:03:24 2005
@@ -2,24 +2,29 @@
 ;;; --------------------------------------------------------------------------------------
 ;;;     Title: Auxiliary render functions
 ;;;   Created: 1999-02-24
-;;;    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,1999 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 :R2)
 


Index: closure/src/renderer/renderer.lisp
diff -u closure/src/renderer/renderer.lisp:1.9 closure/src/renderer/renderer.lisp:1.10
--- closure/src/renderer/renderer.lisp:1.9	Fri Mar 14 18:06:16 2003
+++ closure/src/renderer/renderer.lisp	Sun Mar 13 19:03:25 2005
@@ -2,25 +2,31 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: The Renderer's Heart
 ;;;   Created: long ago
-;;;    Author: Gilbert Baumann <unk6 at rz.uni-karlsruhe.de>
-;;;   License: GPL (See file COPYING for details).
-;;;       $Id: renderer.lisp,v 1.9 2003/03/14 17:06:16 dan Exp $
+;;;    Author: Gilbert Baumann <gilbert at base-engineering.com>
+;;;   License: MIT style (see below)
+;;;       $Id: renderer.lisp,v 1.10 2005/03/13 18:03:25 gbaumann Exp $
 ;;; ---------------------------------------------------------------------------
 ;;;  (c) copyright 1997-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 :R2)
 


Index: closure/src/renderer/renderer2.lisp
diff -u closure/src/renderer/renderer2.lisp:1.6 closure/src/renderer/renderer2.lisp:1.7
--- closure/src/renderer/renderer2.lisp:1.6	Sun Jun 15 18:47:44 2003
+++ closure/src/renderer/renderer2.lisp	Sun Mar 13 19:03:25 2005
@@ -2,25 +2,30 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: The Core of the Renderer
 ;;;   Created: somewhen late 2002
-;;;    Author: Gilbert Baumann <unk6 at rz.uni-karlsruhe.de>
-;;;   License: GPL (See file COPYING for details).
-;;;       $Id: renderer2.lisp,v 1.6 2003/06/15 16:47:44 gilbert Exp $
+;;;    Author: Gilbert Baumann <gilbert at base-engineering.com>
+;;;   License: MIT style (see below)
+;;;       $Id: renderer2.lisp,v 1.7 2005/03/13 18:03:25 gbaumann Exp $
 ;;; ---------------------------------------------------------------------------
 ;;;  (c) copyright 1997-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 :R2)
 
@@ -5056,6 +5061,9 @@
 
 
 ;; $Log: renderer2.lisp,v $
+;; Revision 1.7  2005/03/13 18:03:25  gbaumann
+;; Gross license change
+;;
 ;; Revision 1.6  2003/06/15 16:47:44  gilbert
 ;; OpenMCL patches by Patrik Nordebo
 ;;


Index: closure/src/renderer/tables.lisp
diff -u closure/src/renderer/tables.lisp:1.2 closure/src/renderer/tables.lisp:1.3
--- closure/src/renderer/tables.lisp:1.2	Thu Mar 13 20:29:17 2003
+++ closure/src/renderer/tables.lisp	Sun Mar 13 19:03:25 2005
@@ -2,24 +2,29 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: Table Renderer
 ;;;   Created: 1999-05-25
-;;;    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,1999 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 :RENDERER)
 


Index: closure/src/renderer/texpara.lisp
diff -u closure/src/renderer/texpara.lisp:1.5 closure/src/renderer/texpara.lisp:1.6
--- closure/src/renderer/texpara.lisp:1.5	Sun Jun 15 18:47:44 2003
+++ closure/src/renderer/texpara.lisp	Sun Mar 13 19:03:25 2005
@@ -1,3 +1,31 @@
+;;; -*- Mode: Lisp; Syntax: Common-Lisp; Package: TEXPARA; -*-
+;;; ---------------------------------------------------------------------------
+;;;     Title: TeX like paragraph formatting
+;;;   Created: ???
+;;;    Author: Gilbert Baumann <gilbert at 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.
+
 (defpackage :texpara (:use #:cl))
 
 (in-package :texpara)


Index: closure/src/renderer/x11.lisp
diff -u closure/src/renderer/x11.lisp:1.5 closure/src/renderer/x11.lisp:1.6
--- closure/src/renderer/x11.lisp:1.5	Sat Mar 15 11:10:45 2003
+++ closure/src/renderer/x11.lisp	Sun Mar 13 19:03:25 2005
@@ -2,24 +2,29 @@
 ;;; ---------------------------------------------------------------------------
 ;;;     Title: X11 specific stuff
 ;;;   Created: 1998-11-11
-;;;    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,1999 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
 




More information about the Closure-cvs mailing list