From 29a04a28ef2eaca1dc186f40870e3cae540ed8e2 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Tue, 15 Nov 2005 15:36:29 +0000 Subject: - switch to bsd license - prepare 2.0.1 --- ext/xmlwriter/LICENSE | 22 ++++++++++++++++++++++ ext/xmlwriter/package.xml | 22 ++++++++++++++-------- ext/xmlwriter/package2.xml | 35 +++++++++++++++++++++++++---------- ext/xmlwriter/php_xmlwriter.c | 17 +++++++++-------- ext/xmlwriter/php_xmlwriter.h | 17 +++++++++-------- 5 files changed, 79 insertions(+), 34 deletions(-) create mode 100644 ext/xmlwriter/LICENSE (limited to 'ext/xmlwriter') diff --git a/ext/xmlwriter/LICENSE b/ext/xmlwriter/LICENSE new file mode 100644 index 0000000000..0857ccefa4 --- /dev/null +++ b/ext/xmlwriter/LICENSE @@ -0,0 +1,22 @@ +Redistribution and use in source and binary forms, with or without modification +, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, th + is list of conditions and the following disclaimer. + +2. 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. + +3. 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 AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WA +RRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABIL +ITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR C +ONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE +GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOW +EVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILI +TY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE U +SE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/ext/xmlwriter/package.xml b/ext/xmlwriter/package.xml index bc104a470a..4c3e102340 100644 --- a/ext/xmlwriter/package.xml +++ b/ext/xmlwriter/package.xml @@ -3,12 +3,9 @@ xmlwriter Provides fast, non-cached, forward-only means to write XML data. - - This extension wraps the libxml xmlWriter API. Represents a writer that - provides a non-cached, forward-only means of generating streams or files - containing XML data. - - PHP License + This extension wraps the libxml xmlWriter API. Represents a writer that provides a non-cached, forward-only means of generating streams or files containing XML data. + + BSD rrichards @@ -20,9 +17,18 @@ pajoye Pierre-Alain Joye - pierre.dev@gmail.com + pajoye@php.net developer + + 2.0.1 + 2005-11-15 + stable + - Switch from PHP License to BSD-like license +- Allow recursive calls to __get/__set for different properties (ilia) + + + 2.0.0 2005-08-07 @@ -33,7 +39,6 @@ - 1.1.0 2005-05-24 @@ -76,6 +81,7 @@ + diff --git a/ext/xmlwriter/package2.xml b/ext/xmlwriter/package2.xml index c1871f0260..15c4086107 100644 --- a/ext/xmlwriter/package2.xml +++ b/ext/xmlwriter/package2.xml @@ -3,11 +3,8 @@ xmlwriter pecl.php.net Provides fast, non-cached, forward-only means to write XML data. - - This extension wraps the libxml xmlWriter API. Represents a writer that - provides a non-cached, forward-only means of generating streams or files - containing XML data. - + This extension wraps the libxml xmlWriter API. Represents a writer that provides a non-cached, forward-only means of generating streams or files containing XML data. + Rob Richards rrichards @@ -20,20 +17,22 @@ pajoye@php.net yes - 2005-08-07 - + 2005-11-15 - 2.0.0 + 2.0.1 2.0.0 stable stable - PHP - Promote to stable + BSD + - Switch from PHP License to BSD-like license +- Allow recursive calls to __get/__set for different properties (ilia) + + @@ -62,4 +61,20 @@ xmlwriter + + + 2005-08-07 + + + 2.0.0 + 2.0.0 + + + stable + stable + + PHP License + Promote to stable + + diff --git a/ext/xmlwriter/php_xmlwriter.c b/ext/xmlwriter/php_xmlwriter.c index 8cb9718dc7..5a65e02664 100644 --- a/ext/xmlwriter/php_xmlwriter.c +++ b/ext/xmlwriter/php_xmlwriter.c @@ -2,17 +2,18 @@ +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2004 The PHP Group | + | Copyright (c) 1997-2005 Rob Richards, Pierre-Alain Joye | +----------------------------------------------------------------------+ - | This source file is subject to version 3.0 of the PHP license, | - | that is bundled with this package in the file LICENSE, and is | - | available through the world-wide-web at the following url: | - | http://www.php.net/license/3_0.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 | - | license@php.net so we can mail you a copy immediately. | + | This source file is subject to the New BSD license, That is bundled | + | with this package in the file LICENSE, and is available through | + | the world-wide-web at | + | http://www.opensource.org/licenses/bsd-license.php | + | If you did not receive a copy of the new BSDlicense and are unable | + | to obtain it through the world-wide-web, please send a note to | + | pecl-dev@lists.php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Rob Richards | + | Pierre-A. Joye | +----------------------------------------------------------------------+ */ diff --git a/ext/xmlwriter/php_xmlwriter.h b/ext/xmlwriter/php_xmlwriter.h index 1c3687e181..e7c8a3f6ed 100644 --- a/ext/xmlwriter/php_xmlwriter.h +++ b/ext/xmlwriter/php_xmlwriter.h @@ -2,17 +2,18 @@ +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2004 The PHP Group | + | Copyright (c) 1997-2005 Rob Richards, Pierre-Alain Joye | +----------------------------------------------------------------------+ - | This source file is subject to version 3.0 of the PHP license, | - | that is bundled with this package in the file LICENSE, and is | - | available through the world-wide-web at the following url: | - | http://www.php.net/license/3_0.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 | - | license@php.net so we can mail you a copy immediately. | + | This source file is subject to the New BSD license, That is bundled | + | with this package in the file LICENSE, and is available through | + | the world-wide-web at | + | http://www.opensource.org/licenses/bsd-license.php | + | If you did not receive a copy of the new BSDlicense and are unable | + | to obtain it through the world-wide-web, please send a note to | + | pecl-dev@lists.php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Rob Richards | + | Pierre-A. Joye | +----------------------------------------------------------------------+ */ -- cgit v1.2.1