The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "dist:libxml-enno XML::Parser"

XML::DOM::Parser - An XML::Parser that builds XML::DOM document structures River stage zero No dependents

XML::DOM::Parser extends XML::Parser The XML::Parser module was written by Clark Cooper and is built on top of XML::Parser::Expat, which is a lower level interface to James Clark's expat library. XML::DOM::Parser parses XML strings or files and build...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::Checker::Parser - an XML::Parser that validates at parse time River stage zero No dependents

XML::Checker::Parser extends XML::Parser I hope the example in the SYNOPSIS says it all, just use XML::Checker::Parser as if it were an XML::Parser. See XML::Parser for the supported (expat) options. You can also derive your parser from XML::Checker:...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::DOM - A perl module for building DOM Level 1 compliant document structures River stage zero No dependents

This module extends the XML::Parser module by Clark Cooper. The XML::Parser module is built on top of XML::Parser::Expat, which is a lower level interface to James Clark's expat library. XML::DOM::Parser is derived from XML::Parser. It parses XML str...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XQLParser/Parser.pm River stage zero No dependents

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::DOM::ValParser - an XML::DOM::Parser that validates at parse time River stage zero No dependents

Use XML::DOM::ValParser wherever you would use XML::DOM::Parser and your XML will be checked using XML::Checker at parse time. See XML::DOM for details on XML::DOM::Parser options. See XML::Checker for details on setting the fail handler (my_fail.) T...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::XQL - A perl module for querying XML tree structures with XQL River stage zero No dependents

The XML::XQL module implements the XQL (XML Query Language) proposal submitted to the XSL Working Group in September 1998. The spec can be found at: <http://www.w3.org/TandS/QL/QL98/pp/xql.html> Most of the contents related to the XQL syntax can also...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::DOM::Attr - An XML attribute in XML::DOM River stage zero No dependents

XML::DOM::Attr extends XML::DOM::Node. The Attr nodes built by the XML::DOM::Parser always have one child node which is a Text node containing the expanded string value (i.e. EntityReferences are always expanded.) EntityReferences may be added when m...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::XQL::DOM - Adds XQL support to XML::DOM nodes River stage zero No dependents

XML::XQL::DOM adds methods to XML::DOM nodes to support XQL queries on XML::DOM document structures. See XML::XQL and XML::XQL::Query for more details. XML::DOM::Node describes the xql() method....

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::Checker - A perl module for validating XML River stage zero No dependents

XML::Checker can be used in different ways to validate XML. See the manual pages of XML::Checker::Parser and XML::DOM::ValParser for more information. This document only describes common topics like error handling and the XML::Checker class itself. W...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::DOM::Notation - An XML NOTATION in XML::DOM River stage zero No dependents

XML::DOM::Notation extends XML::DOM::Node. This node represents a Notation, e.g. <!NOTATION gs SYSTEM "GhostScript"> <!NOTATION name PUBLIC "pubId"> <!NOTATION name PUBLIC "pubId" "sysId"> <!NOTATION name SYSTEM "sysId"> METHODS getName and setName (...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::DOM::Document - An XML document node in XML::DOM River stage zero No dependents

XML::DOM::Document extends XML::DOM::Node. It is the main root of the XML document structure as returned by XML::DOM::Parser::parse and XML::DOM::Parser::parsefile. Since elements, text nodes, comments, processing instructions, etc. cannot exist outs...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::DOM::CDATASection - Escaping XML text blocks in XML::DOM River stage zero No dependents

XML::DOM::CDATASection extends XML::DOM::CharacterData which extends XML::DOM::Node. CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. The only delimiter that is recognized in a CDATA s...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::DOM::DocumentType - An XML document type (DTD) in XML::DOM River stage zero No dependents

XML::DOM::DocumentType extends XML::DOM::Node. Each Document has a doctype attribute whose value is either null or a DocumentType object. The DocumentType interface in the DOM Level 1 Core provides an interface to the list of entities that are define...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::Handler::Composer - Another XML printer/writer/generator River stage zero No dependents

XML::Handler::Composer is similar to XML::Writer, XML::Handler::XMLWriter, XML::Handler::YAWriter etc. in that it generates XML output. This implementation may not be fast and it may not be the best solution for your particular problem, but it has so...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::Filter::SAXT - Replicates SAX events to several SAX event handlers River stage zero No dependents

SAXT 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 ...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::Filter::Reindent - Reformats whitespace for pretty printing XML River stage zero No dependents

XML::Filter::Reindent is a sub class of XML::Filter::DetectWS. XML::Filter::Reindent can be used as a PerlSAX filter to reformat an XML document before sending it to a PerlSAX handler that prints it (like XML::Handler::Composer.) Like XML::Filter::De...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::XQL::Query - Creates an XQL query evaluater from a XQL expression River stage zero No dependents

To perform XQL queries on an XML::DOM document (or, in the future, on other XML storage structures), you first have to create an XML::XQL::Query object and pass it a valid XQL query expression. You can then perform queries on one or more documents by...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC

XML::Handler::BuildDOM - PerlSAX handler that creates XML::DOM document structures River stage zero No dependents

XML::Handler::BuildDOM creates XML::DOM document structures (i.e. XML::DOM::Document) from PerlSAX events. This class used to be called XML::PerlSAX::DOM prior to libxml-enno 1.0.1. CONSTRUCTOR OPTIONS The XML::Handler::BuildDOM constructor supports ...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC
18 results (0.032 seconds)