• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ChangesH A D26-Aug-2001141 53

MANIFESTH A D26-Aug-200152 76

Makefile.PLH A D26-Aug-2001241 85

READMEH A D26-Aug-2001959 2920

SAXT.pmH A D26-Aug-20014.3 KiB19176

test.plH A D26-Aug-2001497 184

README

1XML::Filter::SAXT version 0.01
2==============================
3
4DESCRIPTION
5
6SAXT is like the Unix 'tee' command in that it multiplexes the input stream to several output streams. In this case, the
7input stream is a PerlSAX event producer (like XML::Parser::PerlSAX) and the output streams are PerlSAX handlers or
8filters.
9
10The SAXT constructor takes a list of hash references. Each hash specifies an output handler. The hash keys can be:
11DocumentHandler, DTDHandler, EntityResolver or Handler, where Handler is a combination of the previous three and
12acts as the default handler. E.g. if DocumentHandler is not specified, it will try to use Handler.
13
14INSTALLATION
15
16To install this module type the following:
17
18   perl Makefile.PL
19   make
20   make test
21   make install
22
23COPYRIGHT AND LICENCE
24
25Copyright (c) 1999,2000 Enno Derksen
26All rights reserved.
27This program is free software; you can redistribute it and/or modify it
28under the same terms as Perl itself.
29