Sophie

Sophie

distrib > Fedora > 13 > x86_64 > by-pkgid > a99bdeb09d0c7c923881941421e963a8 > files > 2

php-pear-XML-Parser-1.3.2-3.fc12.noarch.rpm

*** Version 1.3.2 (stable) - API 1.3.0 (stable) - 2009-01-21

- Fix Bug #9328: assigned by reference error in XML_RSS parse
- add an AllTests.php for PHPUnit usage

*** Version 1.1.0beta1 (beta) - API 1.1.0beta1 (beta) - 2004-04-16

- Fixed memory leaks parsing many documents or big files (mroch)
- Fixed setInput() url detection regex (mroch)
- Added setInputString() method, allowing strings to be passed as input (schst)
- Error handling rewritten (cox)
- Increased the overall parsing speed (cox)
- Added free() method (schst
- Added reset() method, that is called when parsing a document so it is possible to parse more than one document per instance (schst)
- Added error codes (schst)
- revamped documentation (cox, schst)
- Fixed bug #516 (url fopen and safe mode) (schst)
- Fixed bug #637 (dependency on PEAR) (schst)
- improved parse() and parseString() to be able to parse more than one document (schst)
- added PHP5 constructor (schst)
- moved xml_parser_create() to _create() for PHP5 compatibility (schst)
- added dependency on PHP 4.2

Thanks to Marshall Roch for commments and contributions and Tomas V.V. Cox
for applying a lot of fixes and improvements.

*** Version 1.1.0beta2 (beta) - API 1.1.0beta2 (beta) - 2004-04-18

beta2:
- Fixed calling of __construct

beta1:
- Fixed memory leaks parsing many documents or big files (mroch)
- Fixed setInput() url detection regex (mroch)
- Added setInputString() method, allowing strings to be passed as input (schst)
- Error handling rewritten (cox)
- Increased the overall parsing speed (cox)
- Added free() method (schst
- Added reset() method, that is called when parsing a document so it is possible to parse more than one document per instance (schst)
- Added error codes (schst)
- revamped documentation (cox, schst)
- Fixed bug #516 (url fopen and safe mode) (schst)
- Fixed bug #637 (dependency on PEAR) (schst)
- improved parse() and parseString() to be able to parse more than one document (schst)
- added PHP5 constructor (schst)
- moved xml_parser_create() to _create() for PHP5 compatibility (schst)
- added dependency on PHP 4.2

Thanks to Marshall Roch for commments and contributions and Tomas V.V. Cox
for applying a lot of fixes and improvements.

*** Version 1.1.0 (stable) - API 1.1.0 (stable) - 2004-04-23

- Fixed memory leaks parsing many documents or big files (mroch)
- Fixed setInput() url detection regex (mroch)
- Added setInputString() method, allowing strings to be passed as input (schst)
- Error handling rewritten (cox)
- Increased the overall parsing speed (cox)
- Added free() method (schst
- Added reset() method, that is called when parsing a document so it is possible to parse more than one document per instance (schst)
- Added error codes (schst)
- revamped documentation (cox, schst)
- Fixed bug #516 (url fopen and safe mode) (schst)
- Fixed bug #637 (dependency on PEAR) (schst)
- improved parse() and parseString() to be able to parse more than one document (schst)
- added PHP5 constructor (schst)
- moved xml_parser_create() to _create() for PHP5 compatibility (schst)
- added dependency on PHP 4.2

Thanks to Marshall Roch for commments and contributions and Tomas V.V. Cox
for applying a lot of fixes and improvements.

*** Version 1.2.0beta1 (beta) - API 1.2.0beta1 (beta) - 2004-05-17

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.

*** Version 1.2.0beta2 (beta) - API 1.2.0beta2 (beta) - 2004-05-24

XML_Parser:
- fixed bug with setMode()
- moved the init routines for the handlers in _initHandlers()
XML_Parser_Simple:
- fixed bug with character data (did not get parsed)
- fixed bug with setMode()
- some refactoring
- added getCurrentDepth() to retrieve the tag depth
- added addToData()
- added new example

*** Version 1.2.0beta3 (beta) - API 1.2.0beta3 (beta) - 2004-05-25

- added setHandlerObj() which allows you to have the parser separate from the handler methods

*** Version 1.2.0 (stable) - API 1.2.0 (stable) - 2004-05-28

- added setHandlerObj() which allows you to have the parser separate from the handler methods
- fixed bug with setMode()
- moved the init routines for the handlers in _initHandlers()
- added new examples
- fixed test files so they do not fail because of different resource ids
XML_Parser_Simple:
- 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.

*** Version 1.2.1 (stable) - API 1.2.1 (stable) - 2004-10-04

fixed bug #2442: Call to "xmltag_ELEMENT_" not correctly managed in function funcEndHandler

*** Version 1.2.2beta1 (beta) - API 1.2.2beta1 (beta) - 2004-12-22

- fixed small notice in XML_Parser::free(),
- fixed Bug #2939: bug in error routine leads to segmentation fault (raiseError does not free the internal resources anymore)

*** Version 1.2.2 (stable) - API 1.2.2 (stable) - 2004-12-22

- fixed small notice in XML_Parser::free(),
- fixed Bug #2939: bug in error routine leads to segmentation fault (raiseError does not free the internal resources anymore)

*** Version 1.2.3 (stable) - API 1.2.3 (stable) - 2005-01-17

- fixed a bug that occured when using 'func' mode and setHandlerObj() (schst)
- added default handlers for 'func' mode (schst)

*** Version 1.2.4 (stable) - API 1.2.4 (stable) - 2005-01-18

- fixed a bug in XML_Parser_Simple when trying to register more than the default handlers and a separate callback object (schst)

*** Version 1.2.5 (stable) - API 1.2.5 (stable) - 2005-02-26

- fixed Bug #3557 (removed $attribs parameter, which caused a notice)
- fixed Bug #3277 (remove obsolete ini_set('allow_url_fopen'))

*** Version 1.2.6 (stable) - API 1.2.6 (stable) - 2005-03-25

- fixed Bug #3949: reset does not return true on success as the documentation states
- implement Request #3905: replace "." with "_" in tagnames when using func mode

*** Version 1.2.7 (stable) - API 1.2.7 (stable) - 2005-09-24

- implemented request #4774: Error message contains column number

*** Version 1.2.8 (stable) - API 1.2.8 (stable) - 2006-12-01

- fixed bug #5557: Raise a more useful error message when using invalid source encoding
- fixed bug #6078: func-mode does not handle all allowed letters in tags

*** Version 1.3.0a1 (alpha) - API 1.3.0a1 (alpha) - 2008-08-24

- switch to BSD License
- switch to package.xml v2
- PEAR CS cleanup
- Fix Doc #13120:  Mistake in example code

*** Version 1.3.0 (stable) - API 1.3.0 (stable) - 2008-08-24

- switch to BSD License
- switch to package.xml v2
- PEAR CS cleanup
- Fix Doc #13120:  Mistake in example code

*** Version 1.3.1 (stable) - API 1.3.0 (stable) - 2008-09-15

- correct package.xml to reflect switch to BSD License