Skip to content

Commit

Permalink
- Release 0.5.2
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/XML_DTD/trunk@279484 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
ifeghali committed Apr 28, 2009
1 parent 25b36b3 commit 3ed14d2
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 28 deletions.
8 changes: 4 additions & 4 deletions package.php
Expand Up @@ -2,12 +2,12 @@

require_once 'PEAR/PackageFileManager.php';

$version = '0.5.1';
$version = '0.5.2';
$state = 'alpha';
$notes = <<<EOT
- Dropped dependency of deprecated XML_Tree
- Introducing the all new XML_DTD_XmlParser
- Added switch to turn folding on/off
- Fixed circular reference which was leaking memory
- Due to PHP 4 and 5 differences in object handling, the XML Parser had to be rewritten to be PHP 4 compatible again.
- Error when parsing empty XML
EOT;

$description = <<<EOT
Expand Down
22 changes: 16 additions & 6 deletions package.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
<package version="1.0" packagerversion="1.7.2">
<package version="1.0" packagerversion="1.8.1">
<name>XML_DTD</name>
<summary>Parsing of DTD files and DTD validation of XML files</summary>
<description>Parsing of DTD files and DTD validation of XML files.
Expand Down Expand Up @@ -35,13 +35,13 @@ Currently supports most of the current XML spec, including entities, elements an
</maintainer>
</maintainers>
<release>
<version>0.5.1</version>
<date>2009-01-24</date>
<version>0.5.2</version>
<date>2009-04-27</date>
<license>BSD License</license>
<state>alpha</state>
<notes>- Dropped dependency of deprecated XML_Tree
- Introducing the all new XML_DTD_XmlParser
- Added switch to turn folding on/off
<notes>- Fixed circular reference which was leaking memory
- Due to PHP 4 and 5 differences in object handling, the XML Parser had to be rewritten to be PHP 4 compatible again.
- Error when parsing empty XML
</notes>
<deps>
<dep type="php" rel="ge" version="4.3.0" optional="no"/>
Expand Down Expand Up @@ -117,5 +117,15 @@ Currently supports most of the current XML spec, including entities, elements an
- Added switch to turn folding on/off
</notes>
</release>
<release>
<version>0.5.2</version>
<date>2009-04-27</date>
<license>BSD License</license>
<state>alpha</state>
<notes>- Fixed circular reference which was leaking memory
- Due to PHP 4 and 5 differences in object handling, the XML Parser had to be rewritten to be PHP 4 compatible again.
- Error when parsing empty XML
</notes>
</release>
</changelog>
</package>
8 changes: 4 additions & 4 deletions package2.php
Expand Up @@ -12,14 +12,14 @@
. "may still be unsupported."
;

$version = '0.5.1';
$version = '0.5.2';
$apiver = '0.5.0';
$state = 'alpha';

$notes = <<<EOT
- Dropped dependency of deprecated XML_Tree
- Introducing the all new XML_DTD_XmlParser
- Added switch to turn folding on/off
- Fixed circular reference which was leaking memory
- Due to PHP 4 and 5 differences in object handling, the XML Parser had to be rewritten to be PHP 4 compatible again.
- Error when parsing empty XML
EOT;

$package = PEAR_PackageFileManager2::importOptions(
Expand Down
55 changes: 41 additions & 14 deletions package2.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.7.2" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<package packagerversion="1.8.1" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>XML_DTD</name>
<channel>pear.php.net</channel>
<summary>Parsing of DTD files and DTD validation of XML files</summary>
Expand Down Expand Up @@ -28,20 +28,22 @@
<email>ifeghali@php.net</email>
<active>yes</active>
</lead>
<date>2009-01-24</date>
<time>10:54:06</time>
<date>2009-04-27</date>
<time>23:13:38</time>
<version>
<release>0.5.1</release>
<release>0.5.2</release>
<api>0.5.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license uri="http://opensource.org/licenses/bsd-license">BSD License</license>
<notes>- Dropped dependency of deprecated XML_Tree
- Introducing the all new XML_DTD_XmlParser
- Added switch to turn folding on/off</notes>
<notes>
- Fixed circular reference which was leaking memory
- Due to PHP 4 and 5 differences in object handling, the XML Parser had to be rewritten to be PHP 4 compatible again.
- Error when parsing empty XML
</notes>
<contents>
<dir baseinstalldir="XML" name="/">
<dir name="DTD">
Expand Down Expand Up @@ -92,6 +94,23 @@
</dependencies>
<phprelease />
<changelog>
<release>
<version>
<release>0.5.2</release>
<api>0.5.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2009-04-27</date>
<license uri="http://opensource.org/licenses/bsd-license">BSD License</license>
<notes>
- Fixed circular reference which was leaking memory
- Due to PHP 4 and 5 differences in object handling, the XML Parser had to be rewritten to be PHP 4 compatible again.
- Error when parsing empty XML
</notes>
</release>
<release>
<version>
<release>0.5.1</release>
Expand All @@ -103,9 +122,11 @@
</stability>
<date>2009-01-24</date>
<license uri="http://opensource.org/licenses/bsd-license">BSD License</license>
<notes>- Dropped dependency of deprecated XML_Tree
<notes>
- Dropped dependency of deprecated XML_Tree
- Introducing the all new XML_DTD_XmlParser
- Added switch to turn folding on/off</notes>
- Added switch to turn folding on/off
</notes>
</release>
<release>
<version>
Expand All @@ -118,9 +139,11 @@
</stability>
<date>2008-08-22</date>
<license uri="http://opensource.org/licenses/bsd-license">BSD License</license>
<notes>- switch to BSD license
<notes>
- switch to BSD license
- add package.xml v2 (while retaining package.xml v1)
- PEAR CS cleanup</notes>
- PEAR CS cleanup
</notes>
</release>
<release>
<version>
Expand All @@ -133,9 +156,11 @@
</stability>
<date>2004-05-17</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>- fixed bug 168: underscores in element names (tuupola)
<notes>
- fixed bug 168: underscores in element names (tuupola)
- fixed bug 1118: missing parameters in calls to _errors() (schst)
- fixed bug 1123: incorrect line numbers in error messages (schst)</notes>
- fixed bug 1123: incorrect line numbers in error messages (schst)
</notes>
</release>
<release>
<version>
Expand All @@ -148,7 +173,9 @@
</stability>
<date>2003-09-11</date>
<license uri="http://www.example.com">PHP 3.0</license>
<notes>Initial release as XML_DTD (previously was DTD)</notes>
<notes>
Initial release as XML_DTD (previously was DTD)
</notes>
</release>
</changelog>
</package>

0 comments on commit 3ed14d2

Please sign in to comment.