| 12
 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-filter-saxt-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jay Bonci <jaybonci@debian.org>,
 Ansgar Burchardt <ansgar@43-1.org>
Standards-Version: 3.8.4
Homepage: http://search.cpan.org/dist/XML-Filter-SAXT/
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libxml-filter-saxt-perl/
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libxml-filter-saxt-perl/
Build-Depends: debhelper (>= 7)
Build-Depends-Indep: perl
Package: libxml-filter-saxt-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends}
Description: Perl module for replicating events to several event handlers
 The XML::Filter::SAXT module is like the Unix 'tee' command in that it
 multiplexes the input stream to several output streams.  In this case, the
 input stream is a PerlSAX event producer (like XML::Parser::PerlSAX) and
 the output streams are PerlSAX handlers or filters.
 .
 The SAXT constructor takes a list of hash references.  Each hash
 specifies an output handler.  The hash keys can be: DocumentHandler,
 DTDHandler, EntityResolver or Handler, where Handler is a combination
 of the previous three and acts as the default handler.  E.g. if
 DocumentHandler is not specified, it will try to use Handler.
 |