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
|
Source: libxml-sax-expat-incremental-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 7)
Build-Depends-Indep: perl, libxml-parser-perl, libxml-sax-expat-perl, libtest-exception-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>
Standards-Version: 3.9.2
Homepage: http://search.cpan.org/dist/XML-SAX-Expat-Incremental/
Vcs-Git: git://git.debian.org/pkg-perl/packages/libxml-sax-expat-incremental-perl.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libxml-sax-expat-incremental-perl.git
Package: libxml-sax-expat-incremental-perl
Architecture: all
Depends: ${misc: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.
|