--
This module aims to comply exactly to the XPath specification at
http://www.w3.org/TR/xpath and yet allow extensions to be added in
the form of functions.
Modules such as XSLT and XPointer may need to do this as they support
functionality beyond XPath.
--
This is a Perl module to parse XSL Transformational sheets. For a
description of the XSLT, see http://www.w3.org/TR/xslt. Other
useful resources can be found at http://www.xslt.com
--
This is a Perl extension to XML::Parser. It adds a new 'Style' to
XML::Parser, called 'Dom', that allows XML::Parser to build an
Object Oriented datastructure with a DOM Level 1 compliant interface.
For a description of the DOM (Document Object Model), see
http://www.w3.org/DOM/
--
XML::Simple is a Perl module that makes it really easy to read and
write XML files. You can get a full rundown of the module's
capabilities and limitations in the manual page.
XML::Simple was originally developed for the purpose of reading and
writing config files in XML format (which offers various advantages
over say .INI format). Having said that, many people find it useful
for other purposes.
--
This module provides ways to parse XML documents. It is built on
top of XML::Parser::Expat, which is a lower level interface to James
Clark's expat library. Each call to one of the parsing methods
creates a new instance of XML::Parser::Expat which is then used to
parse the document. Expat options may be provided when the XML::Parser
object is created.
These options are then passed on to the Expat object on each parse
call. They can also be given as extra arguments to the parse methods,
in which case they override options given at XML::Parser creation
time.
--
XML::Writer is a helper module for Perl programs that write an XML
document. The module handles all escaping for attribute values and
character data and constructs different types of markup, such as
tags, comments, and processing instructions.
By default, the module performs several well-formedness checks to
catch errors during output. This behaviour can be extremely useful
during development and debugging, but it can be turned off for
production-grade code.
The module can operate either in regular mode in or Namespace
processing mode. In Namespace mode, the module will generate Namespace
Declarations itself, and will perform additional checks on the
output.
Additional support is available for a simplified data mode with no
mixed content: newlines are automatically inserted around elements
and elements can optionally be indented based as their nesting
level.
was conflicting with docbook-modular as an already-existing version
of docbook) thx to espie@ for the way to solve this
- bump NEED_VERSION
- correct minor typo in DESCR