Go to file
su-fang 651f7b946b Description: The Debian way of handling ParserDetails.ini
Use update-perl-sax-parsers(8) instead.
 .
 * SAX.pm: the meat of the modifications
   + add XML::SAX->save_parsers_debian(), used by update-perl-sax-parsers
   + disable XML::SAX->save_parsers() with a helpful error message for
     users trying to install SAX parsers manually from CPAN
 * Makefile.PL: Don't try to modify ParserDetails.ini when building the package
 * t/01known.t, t/99cleanup.t: Skip tests related to XML::SAX->save_parsers()
Author: Originally by Ardo van Rangelrooij <ardo@debian.org>
Author: Cleanups and quilt conversion by Niko Tyni <ntyni@iki.fi>
Author: Ansgar Burchardt <ansgar@43-1.org> (XML::SAX::Debian)
2022-09-14 14:51:14 +08:00
debian Description: The Debian way of handling ParserDetails.ini 2022-09-14 14:51:14 +08:00
lib/XML Description: The Debian way of handling ParserDetails.ini 2022-09-14 14:51:14 +08:00
t Description: The Debian way of handling ParserDetails.ini 2022-09-14 14:51:14 +08:00
testfiles Import Upstream version 1.02 2022-09-14 14:44:12 +08:00
Changes Import Upstream version 1.02 2022-09-14 14:44:12 +08:00
LICENSE Import Upstream version 1.02 2022-09-14 14:44:12 +08:00
MANIFEST Import Upstream version 1.02 2022-09-14 14:44:12 +08:00
META.json Import Upstream version 1.02 2022-09-14 14:44:12 +08:00
META.yml Import Upstream version 1.02 2022-09-14 14:44:12 +08:00
Makefile.PL Description: The Debian way of handling ParserDetails.ini 2022-09-14 14:51:14 +08:00
README Import Upstream version 1.02 2022-09-14 14:44:12 +08:00

README

XML::SAX
========

XML::SAX consists of several framework classes for using and building
Perl SAX2 XML parsers, filters, and drivers. It is designed around the
need to be able to "plug in" different SAX parsers to an application
without requiring programmer intervention. Those of you familiar with
the DBI will be right at home. Some of the designs come from the Java
JAXP specification (SAX part), only without the javaness.

INSTALLATION
============

All of this is 100% perl, so installation should be a breeze:

On Unix and Unix-like platforms:

  $ perl Makefile.PL
  $ make
  $ make test
  $ make install

On ActivePerl, or Perl's built with MSVC:

  $ perl Makefile.PL
  $ nmake
  $ nmake test
  $ nmake install

USAGE
=====

For usage, please read the included documentation after installation:

  $ perldoc XML::SAX
  $ perldoc XML::SAX::ParserFactory

And other documents leading off those pages.

LICENSE/COPYRIGHT
=================

Please see the LICENSE file for licensing issues.

The files in this distribution are copyrighted their respective authors
as detailed in the POD documentation of each module.