Prune devel/py-EnthoughtBase
[dports.git] / devel / pear-XML_Parser / pkg-descr
1 This is an XML parser based on PHPs built-in xml extension.
2
3 It supports two basic modes of operation: "func" and "event". In
4 "func" mode, it will look for a function named after each element
5 (xmltag_ELEMENT for start tags and xmltag_ELEMENT_ for end tags),
6 and in "event" mode it uses a set of generic callbacks.
7
8 Since version 1.2.0 there's a new XML_Parser_Simple class that makes
9 parsing of most XML documents easier, by automatically providing a
10 stack for the elements.
11
12 Furthermore its now possible to split the parser from the handler
13 object, so you do not have to extend XML_Parser anymore in order
14 to parse a document with it.
15
16 WWW: http://pear.php.net/package/XML_Parser/