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

Search results for "dist:XML-DOM"

XML::DOM - A perl module for building DOM Level 1 compliant document structures River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::Attr - An XML attribute in XML::DOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::Text - A piece of XML text in XML::DOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::Node - Super class of all nodes in XML::DOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::Entity - An XML ENTITY in XML::DOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::AttDef - A single XML attribute definition in an ATTLIST in XML::DOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::Parser - An XML::Parser that builds XML::DOM document structures River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::Comment - An XML comment in XML::DOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::PerlSAX - Old name of XML::Handler::BuildDOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::Element - An XML element node in XML::DOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::XMLDecl - XML declaration in XML::DOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::Notation - An XML NOTATION in XML::DOM River stage two • 35 direct dependents • 56 total 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 (...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::Document - An XML document node in XML::DOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::NodeList - A node list as used by XML::DOM River stage two • 35 direct dependents • 56 total dependents

The NodeList interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented. The items in the NodeList are accessible via an integral index, starting from 0. Although the DOM ...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::ElementDecl - An XML ELEMENT declaration in XML::DOM River stage two • 35 direct dependents • 56 total dependents

XML::DOM::ElementDecl extends XML::DOM::Node but is not part of the DOM Level 1 specification. This node represents an Element declaration, e.g. <!ELEMENT address (street+, city, state, zip, country?)> METHODS getName Returns the Element tagName. get...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::AttlistDecl - An XML ATTLIST declaration in XML::DOM River stage two • 35 direct dependents • 56 total dependents

XML::DOM::AttlistDecl extends XML::DOM::Node but is not part of the DOM Level 1 specification. This node represents an ATTLIST declaration, e.g. <!ATTLIST person sex (male|female) #REQUIRED hair CDATA "bold" eyes (none|one|two) "two" species (human) ...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::CDATASection - Escaping XML text blocks in XML::DOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::DocumentType - An XML document type (DTD) in XML::DOM River stage two • 35 direct dependents • 56 total 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...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::DOM::NamedNodeMap - A hash table interface for XML::DOM River stage two • 35 direct dependents • 56 total dependents

Objects implementing the NamedNodeMap interface are used to represent collections of nodes that can be accessed by name. Note that NamedNodeMap does not inherit from NodeList; NamedNodeMaps are not maintained in any particular order. Objects containe...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC

XML::Handler::BuildDOM - PerlSAX handler that creates XML::DOM document structures River stage two • 35 direct dependents • 56 total 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 ...

TJMATHER/XML-DOM-1.46 - 21 Sep 2016 12:42:54 UTC
30 results (0.022 seconds)