1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Source: libxml-sax-expat-incremental-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 4.0.2)
Build-Depends-Indep: perl (>= 5.8.0-7), libxml-parser-perl, libxml-sax-expat-perl, libtest-exception-perl
Maintainer: Florian Ragwitz <rafl@debianforum.de>
Standards-Version: 3.6.2
Package: libxml-sax-expat-incremental-perl
Architecture: all
Depends: ${perl:Depends}, libxml-parser-perl, libxml-sax-expat-perl
Description: XML::SAX::Expat subclass for non-blocking (incremental) parsing
Most XML parsers give a callback interface within an encapsulated loop and
eventually, when the XML source is depleted by the parser, the parse function
will return.
.
Sometimes you don't want the parser to control the loop for you. For example,
if you need to retrieve your XML in chunks in a funny way, you might need to
use a kind of iterator to get your XML data.
.
This module provides this possibility.
|