1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Source: libxml-tokeparser-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 7)
Build-Depends-Indep: perl (>= 5.6.0-12), libxml-parser-perl (>= 2)
Maintainer: Nathan Scott <nathans@debian.org>
Standards-Version: 3.9.1
Homepage: http://search.cpan.org/dist/XML-TokeParser/
Package: libxml-tokeparser-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends}, libxml-parser-perl (>= 2)
Description: Simplified interface to XML::Parser
XML::TokeParser provides a procedural ("pull mode") interface to XML::Parser
in much the same way that Gisle Aas' HTML::TokeParser provides a procedural
interface to HTML::Parser. XML::TokeParser splits its XML input up into
"tokens," each corresponding to an XML::Parser event.
.
A token is a bless'd|"XML::TokeParser::Token" reference to an array whose
first element is an event-type string and whose last element is the literal
text of the XML input that generated the event, with intermediate elements
varying according to the event type.
.
Each token is an object of type
XML::TokeParser::Token|"XML::TokeParser::Token". Read
"XML::TokeParser::Token"|"XML::TokeParser::Token" to learn what methods are
available for inspecting the token, and retrieving data from it.
|