File: control

package info (click to toggle)
libxml-filter-saxt-perl 0.01-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge
  • size: 52 kB
  • ctags: 5
  • sloc: perl: 79; makefile: 35
file content (25 lines) | stat: -rw-r--r-- 1,017 bytes parent folder | download
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-filter-saxt-perl
Section: perl
Priority: optional
Maintainer: Jay Bonci <jaybonci@debian.org>
Standards-Version: 3.6.1.0
Build-Depends-Indep: debhelper (>= 4.1), perl

Package: libxml-filter-saxt-perl
Section: perl
Priority: optional
Architecture: all
Depends: ${perl:Depends}
Conflicts: libxml-enno-perl
Replaces: libxml-enno-perl
Description: Perl module for replicating events to several event handlers
 This 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.