cvs: pear /XML_Util Util.php package.php /XML_Util/examples example.php example2.php
[email protected] ("Chuck Burgess")
| Newsgroups | php.pear.cvs |
|---|---|
| Message-ID | <cvsashnazg1209779012@cvsserver> |
ashnazg Sat May 3 01:43:32 2008 UTC
Modified files:
/pear/XML_Util Util.php package.php
/pear/XML_Util/examples example2.php example.php
Log:
PEAR #13826 - License Change from PHP to BSD
ashnazg-20080503014332.txt
(text/plain, 10.6 KB)
http://cvs.php.net/viewvc.cgi/pear/XML_Util/Util.php?r1=1.28&r2=1.29&diff_format=u Index: pear/XML_Util/Util.php diff -u pear/XML_Util/Util.php:1.28 pear/XML_Util/Util.php:1.29 --- pear/XML_Util/Util.php:1.28 Sat Dec 16 09:42:56 2006 +++ pear/XML_Util/Util.php Sat May 3 01:43:32 2008 @@ -1,22 +1,43 @@ -<?PHP -/* vim: set expandtab tabstop=4 shiftwidth=4: */ -// +----------------------------------------------------------------------+ -// | PHP Version 4 | -// +----------------------------------------------------------------------+ -// | Copyright (c) 1997-2002 The PHP Group | -// +----------------------------------------------------------------------+ -// | This source file is subject to version 2.0 of the PHP license, | -// | that is bundled with this package in the file LICENSE, and is | -// | available at through the world-wide-web at | -// | http://www.php.net/license/2_02.txt. | -// | If you did not receive a copy of the PHP license and are unable to | -// | obtain it through the world-wide-web, please send a note to | -// | [email protected] so we can mail you a copy immediately. | -// +----------------------------------------------------------------------+ -// | Authors: Stephan Schmidt <[email protected]> | -// +----------------------------------------------------------------------+ -// -// $Id: Util.php,v 1.28 2006/12/16 09:42:56 schst Exp $ +<?php + +/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ + +/** + * XML_Util + * + * XML Utilities package + * + * PHP versions 4 and 5 + * + * LICENSE: + * + * Copyright (c) 2003-2008 Stephan Schmidt <[email protected]> + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ /** * error code for invalid chars in XML name http://cvs.php.net/viewvc.cgi/pear/XML_Util/package.php?r1=1.10&r2=1.11&diff_format=u Index: pear/XML_Util/package.php diff -u pear/XML_Util/package.php:1.10 pear/XML_Util/package.php:1.11 --- pear/XML_Util/package.php:1.10 Sat Dec 16 09:44:27 2006 +++ pear/XML_Util/package.php Sat May 3 01:43:32 2008 @@ -1,9 +1,42 @@ <?php + +/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ + /** - * script to automate the generation of the - * package.xml file. + * script to automate the generation of the package.xml file. + * + * PHP versions 4 and 5 + * + * LICENSE: + * + * Copyright (c) 2004-2008 Stephan Schmidt <[email protected]> + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: package.php,v 1.10 2006/12/16 09:44:27 schst Exp $ + * $Id: package.php,v 1.11 2008/05/03 01:43:32 ashnazg Exp $ * * @author Stephan Schmidt <[email protected]> * @package XML_Parser @@ -47,7 +80,7 @@ 'description' => $description, 'version' => $version, 'state' => $state, - 'license' => 'PHP License', + 'license' => 'BSD License', 'filelistgenerator' => 'cvs', 'ignore' => array('package.php', 'package.xml'), 'notes' => $notes, http://cvs.php.net/viewvc.cgi/pear/XML_Util/examples/example2.php?r1=1.8&r2=1.9&diff_format=u Index: pear/XML_Util/examples/example2.php diff -u pear/XML_Util/examples/example2.php:1.8 pear/XML_Util/examples/example2.php:1.9 --- pear/XML_Util/examples/example2.php:1.8 Sun Jun 27 18:17:39 2004 +++ pear/XML_Util/examples/example2.php Sat May 3 01:43:32 2008 @@ -1,8 +1,44 @@ -<?PHP +<?php + +/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ + /** + * Examples (file #2) + * * several examples for the methods of XML_Util + * + * PHP versions 4 and 5 + * + * LICENSE: + * + * Copyright (c) 2003-2008 Stephan Schmidt <[email protected]> + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: example2.php,v 1.8 2004/06/27 18:17:39 schst Exp $ + * $Id: example2.php,v 1.9 2008/05/03 01:43:32 ashnazg Exp $ * * @author Stephan Schmidt * @package XML_Util http://cvs.php.net/viewvc.cgi/pear/XML_Util/examples/example.php?r1=1.13&r2=1.14&diff_format=u Index: pear/XML_Util/examples/example.php diff -u pear/XML_Util/examples/example.php:1.13 pear/XML_Util/examples/example.php:1.14 --- pear/XML_Util/examples/example.php:1.13 Wed Dec 29 11:49:32 2004 +++ pear/XML_Util/examples/example.php Sat May 3 01:43:32 2008 @@ -1,8 +1,44 @@ -<?PHP +<?php + +/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ + /** + * Examples (file #1) + * * several examples for the methods of XML_Util + * + * PHP versions 4 and 5 + * + * LICENSE: + * + * Copyright (c) 2003-2008 Stephan Schmidt <[email protected]> + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: example.php,v 1.13 2004/12/29 11:49:32 schst Exp $ + * $Id: example.php,v 1.14 2008/05/03 01:43:32 ashnazg Exp $ * * @author Stephan Schmidt * @package XML_Util