Update of /project/closure/cvsroot/closure/src/parse In directory common-lisp.net:/tmp/cvs-serv11452/src/parse
Modified Files: package.lisp pt.lisp sgml-dtd.lisp sgml-parse.lisp Log Message: Gross license change Date: Sun Mar 13 19:02:43 2005 Author: gbaumann
Index: closure/src/parse/package.lisp diff -u closure/src/parse/package.lisp:1.2 closure/src/parse/package.lisp:1.3 --- closure/src/parse/package.lisp:1.2 Thu Mar 13 20:29:17 2003 +++ closure/src/parse/package.lisp Sun Mar 13 19:02:40 2005 @@ -1,3 +1,33 @@ +;;; -*- Mode: Lisp; Syntax: Common-Lisp; Package: CL-USER; -*- +;;; --------------------------------------------------------------------------- +;;; Title: Package definition for the SGML parser +;;; Created: perhaps 1996 +;;; 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 :sgml (:use :glisp) (:export #:SGML-PARSE
Index: closure/src/parse/pt.lisp diff -u closure/src/parse/pt.lisp:1.3 closure/src/parse/pt.lisp:1.4 --- closure/src/parse/pt.lisp:1.3 Fri Mar 14 17:44:07 2003 +++ closure/src/parse/pt.lisp Sun Mar 13 19:02:40 2005 @@ -2,24 +2,29 @@ ;;; --------------------------------------------------------------------------- ;;; Title: Definition of PT and Misc. PT utilities ;;; Created: Somewhen in 1996 -;;; 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 1996-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 ;;
Index: closure/src/parse/sgml-dtd.lisp diff -u closure/src/parse/sgml-dtd.lisp:1.3 closure/src/parse/sgml-dtd.lisp:1.4 --- closure/src/parse/sgml-dtd.lisp:1.3 Fri Mar 14 17:44:07 2003 +++ closure/src/parse/sgml-dtd.lisp Sun Mar 13 19:02:40 2005 @@ -2,24 +2,29 @@ ;;; --------------------------------------------------------------------------- ;;; Title: A very first approach to parse DTD's directly ;;; Created: 1997-10-14 -;;; 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-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 :SGML)
Index: closure/src/parse/sgml-parse.lisp diff -u closure/src/parse/sgml-parse.lisp:1.3 closure/src/parse/sgml-parse.lisp:1.4 --- closure/src/parse/sgml-parse.lisp:1.3 Fri Mar 14 17:44:07 2003 +++ closure/src/parse/sgml-parse.lisp Sun Mar 13 19:02:40 2005 @@ -2,24 +2,29 @@ ;;; --------------------------------------------------------------------------- ;;; Title: An SGML Parser ;;; Created: 1996-10-21 -;;; 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 1996-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 ;;