• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..11-Apr-2013244

ChangesH A D20-May-20041.5 KiB

LICENSEH A D20-May-2004203

Makefile.PLH A D20-May-2004665

MANIFESTH A D20-May-20041.7 KiB

READMEH A D20-May-20041.1 KiB

SAX/H11-Apr-20137

SAX.pmH A D20-May-20049 KiB

t/H11-Apr-201314

testfiles/H11-Apr-201320

XML-SAX-Base/H11-Apr-20137

README

1XML::SAX
2========
3
4XML::SAX consists of several framework classes for using and building
5Perl SAX2 XML parsers, filters, and drivers. It is designed around the
6need to be able to "plug in" different SAX parsers to an application
7without requiring programmer intervention. Those of you familiar with
8the DBI will be right at home. Some of the designs come from the Java
9JAXP specification (SAX part), only without the javaness.
10
11INSTALLATION
12============
13
14All of this is 100% perl, so installation should be a breeze:
15
16On Unix and Unix-like platforms:
17
18  $ perl Makefile.PL
19  $ make
20  $ make test
21  $ make install
22
23On ActivePerl, or Perl's built with MSVC:
24
25  $ perl Makefile.PL
26  $ nmake
27  $ nmake test
28  $ nmake install
29
30USAGE
31=====
32
33For usage, please read the included documentation after installation:
34
35  $ perldoc XML::SAX
36  $ perldoc XML::SAX::ParserFactory
37
38And other documents leading off those pages.
39
40LICENSE/COPYRIGHT
41=================
42
43Please see the LICENSE file for licensing issues.
44
45The files in this distribution are copyrighted their respective authors
46as detailed in the POD documentation of each module.
47
48