Skip to content

Commit

Permalink
prepared new release
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/XML_Parser/trunk@158768 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Stephan Schmidt committed May 17, 2004
1 parent 6fcf1c8 commit c8bdc32
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 17 deletions.
9 changes: 5 additions & 4 deletions package.php
Expand Up @@ -18,7 +18,7 @@
/**
* current version
*/
$version = '1.2.0';
$version = '1.2.0beta1';

/**
* current state
Expand All @@ -29,7 +29,7 @@
* release notes
*/
$notes = <<<EOT
- added new class XML_Parser_Simple that provides a stack for the elements so the user only needs to implement one method to handle the tag and cdata.
added new class XML_Parser_Simple that provides a stack for the elements so the user only needs to implement one method to handle the tag and cdata.
EOT;

/**
Expand All @@ -38,7 +38,8 @@
$description = <<<EOT
This is an XML parser based on PHPs built-in xml extension.
It supports two basic modes of operation: "func" and "event". In "func" mode, it will look for a function named after each element (xmltag_ELEMENT for start tags and xmltag_ELEMENT_ for end tags), and in "event" mode it uses a set of generic callbacks.
Furthemore this package contains some specialized parsers that help you solve common XML parsing tasks.
Since version 1.2.0 there's a new XML_Parser_Simple class that makes parsing of most XML documents easier, by automatically providing a stack for the elements.
EOT;

$package = new PEAR_PackageFileManager();
Expand Down Expand Up @@ -67,8 +68,8 @@
die();
}

$package->addMaintainer('ssb', 'developer', 'Stig Sæther Bakken', 'stig@php.net');
$package->addMaintainer('schst', 'lead', 'Stephan Schmidt', 'schst@php-tools.net');
$package->addMaintainer('ssb', 'developer', 'Stig Sæther Bakken', 'stig@php.net');
$package->addMaintainer('cox', 'developer', 'Tomas V.V.Cox', 'cox@php.net');

$package->addDependency('PEAR', '', 'has', 'pkg', false);
Expand Down
36 changes: 23 additions & 13 deletions package.xml
Expand Up @@ -5,20 +5,21 @@
<summary>XML parsing class based on PHP's bundled expat</summary>
<description>This is an XML parser based on PHPs built-in xml extension.
It supports two basic modes of operation: &quot;func&quot; and &quot;event&quot;. In &quot;func&quot; mode, it will look for a function named after each element (xmltag_ELEMENT for start tags and xmltag_ELEMENT_ for end tags), and in &quot;event&quot; mode it uses a set of generic callbacks.
Furthemore this package contains some specialized parsers that help you solve common XML parsing tasks.</description>

Since version 1.2.0 there's a new XML_Parser_Simple class that makes parsing of most XML documents easier, by automatically providing a stack for the elements.</description>
<maintainers>
<maintainer>
<user>ssb</user>
<name>Stig Sæther Bakken</name>
<email>stig@php.net</email>
<role>developer</role>
</maintainer>
<maintainer>
<user>schst</user>
<name>Stephan Schmidt</name>
<email>schst@php-tools.net</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>ssb</user>
<name>Stig Sæther Bakken</name>
<email>stig@php.net</email>
<role>developer</role>
</maintainer>
<maintainer>
<user>cox</user>
<name>Tomas V.V.Cox</name>
Expand All @@ -27,19 +28,21 @@ Furthemore this package contains some specialized parsers that help you solve co
</maintainer>
</maintainers>
<release>
<version>1.2.0</version>
<date>2004-04-23</date>
<version>1.2.0beta1</version>
<date>2004-05-17</date>
<license>PHP License</license>
<state>beta</state>
<notes>- added new class XML_Parser_Simple that provides a stack for the elements so the user only needs to implement one method to handle the tag and cdata.</notes>
<notes>added new class XML_Parser_Simple that provides a stack for the elements so the user only needs to implement one method to handle the tag and cdata.</notes>
<deps>
<dep type="php" rel="ge" version="4.2.0" optional="no"/>
<dep type="pkg" rel="has" optional="no">PEAR</dep>
</deps>
<filelist>
<dir baseinstalldir="XML" name="/">
<dir name="examples">
<file role="doc" name=" xml_parser_simple1.php"/>
<file role="doc" name="xml_parser_file.php"/>
<file role="doc" name="xml_parser_file.xml"/>
<file role="doc" name="xml_parser_simple1.php"/>
<file role="doc" name="xml_parser_simple1.xml"/>
</dir> <!-- examples -->
<dir name="Parser">
Expand Down Expand Up @@ -135,12 +138,19 @@ for applying a lot of fixes and improvements.</notes>
Thanks to Marshall Roch for commments and contributions and Tomas V.V. Cox
for applying a lot of fixes and improvements.</notes>
</release>
<release>
<version>1.2.0beta1</version>
<date>2004-05-17</date>
<license>PHP License</license>
<state>beta</state>
<notes>added new class XML_Parser_Simple that provides a stack for the elements so the user only needs to implement one method to handle the tag and cdata.</notes>
</release>
<release>
<version>1.2.0</version>
<date>2004-04-23</date>
<date>2004-05-17</date>
<license>PHP License</license>
<state>beta</state>
<notes>- added new class XML_Parser_Simple that provides a stack for the elements so the user only needs to implement one method to handle the tag and cdata.</notes>
<notes>added new class XML_Parser_Simple that provides a stack for the elements so the user only needs to implement one method to handle the tag and cdata.</notes>
</release>
</changelog>
</package>

0 comments on commit c8bdc32

Please sign in to comment.