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"

XML::UM - Convert UTF-8 strings to any encoding supported by XML::Encoding River stage zero No dependents

This module provides methods to convert UTF-8 strings to any XML encoding that XML::Encoding supports. It creates mapping routines from the .xml files that can be found in the maps/ directory in the XML::Encoding distribution. Note that the XML::Enco...

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

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::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::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::DOM::Node - Super class of all nodes in XML::DOM River stage zero No dependents

XML::DOM::Node is the super class of all nodes in an XML::DOM document. This means that all nodes that subclass XML::DOM::Node also inherit all the methods that XML::DOM::Node implements. GLOBAL VARIABLES @NodeNames The variable @XML::DOM::Node::Node...

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

XML::XQL::Date - Adds an XQL::Node type for representing and comparing dates and times River stage zero No dependents

This package uses the Date::Manip package to add an XQL node type (called XML::XQL::Date) that can be used to represent dates and times. The Date::Manip package can parse almost any date or time format imaginable. (I tested it with Date::Manip 5.33 a...

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

XML::DOM::Text - A piece of XML text in XML::DOM River stage zero No dependents

XML::DOM::Text extends XML::DOM::CharacterData, which extends XML::DOM::Node. The Text interface represents the textual content (termed character data in XML) of an Element or Attr. If there is no markup inside an element's content, the text is conta...

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::DOM::Entity - An XML ENTITY in XML::DOM River stage zero No dependents

XML::DOM::Entity extends XML::DOM::Node. This node represents an Entity declaration, e.g. <!ENTITY % draft 'INCLUDE'> <!ENTITY hatch-pic SYSTEM "../grafix/OpenHatch.gif" NDATA gif> The first one is called a parameter entity and is referenced like thi...

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

XML::DOM::AttDef - A single XML attribute definition in an ATTLIST in XML::DOM River stage zero No dependents

XML::DOM::AttDef extends XML::DOM::Node, but is not part of the DOM Level 1 specification. Each object of this class represents one attribute definition in an AttlistDecl. METHODS getName Returns the attribute name. getDefault Returns the default val...

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

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::DOM::Comment - An XML comment in XML::DOM River stage zero No dependents

XML::DOM::Comment extends XML::DOM::CharacterData which extends XML::DOM::Node. This node represents the content of a comment, i.e., all the characters between the starting '<!--' and ending '-->'. Note that this is the definition of a comment in XML...

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

XML::DOM::PerlSAX - Old name of XML::Handler::BuildDOM River stage zero No dependents

XML::DOM::PerlSAX was renamed to XML::Handler::BuildDOM to comply with naming conventions for PerlSAX filters/handlers. For backward compatibility, this package will remain in existence (it simply includes XML::Handler::BuildDOM), but it will print a...

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

XML::DOM::Element - An XML element node in XML::DOM River stage zero No dependents

XML::DOM::Element extends XML::DOM::Node. By far the vast majority of objects (apart from text) that authors encounter when traversing a document are Element nodes. Assume the following XML document: <elementExample id="demo"> <subelement1/> <subelem...

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::DOM::XMLDecl - XML declaration in XML::DOM River stage zero No dependents

XML::DOM::XMLDecl extends XML::DOM::Node, but is not part of the DOM Level 1 specification. It contains the XML declaration, e.g. <?xml version="1.0" encoding="UTF-16" standalone="yes"?> See also XML::DOM::Document::getXMLDecl. METHODS getVersion and...

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::XQL::Tutorial - Describes the XQL query syntax River stage zero No dependents

This document describes basic the features of the XML Query Language (XQL.) A proposal for the XML Query Language (XQL) specification was submitted to the XSL Working Group in September 1998. The spec can be found at <http://www.w3.org/TandS/QL/QL98/...

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