home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _3da8a2f9559b27ba85949e185d0d3191 < prev    next >
Text File  |  2000-03-23  |  76KB  |  1,678 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>XML::DOM - A perl module for building DOM Level 1 compliant document structures</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> XML::DOM - A perl module for building DOM Level 1 compliant document structures</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#dom api">DOM API</A></LI>
  26.     <UL>
  27.  
  28.         <LI><A HREF="#global variables">Global Variables</A></LI>
  29.         <LI><A HREF="#additional methods not in the dom spec">Additional methods not in the DOM Spec</A></LI>
  30.         <LI><A HREF="#global variables">Global Variables</A></LI>
  31.         <LI><A HREF="#methods">Methods</A></LI>
  32.         <LI><A HREF="#additional methods not in the dom spec">Additional methods not in the DOM Spec</A></LI>
  33.         <LI><A HREF="#additional methods not in the dom spec">Additional methods not in the DOM Spec</A></LI>
  34.         <LI><A HREF="#additional methods not in the dom spec">Additional methods not in the DOM Spec</A></LI>
  35.         <LI><A HREF="#additional methods not in the dom spec">Additional methods not in the DOM Spec</A></LI>
  36.         <LI><A HREF="#additional methods not in the dom spec">Additional methods not in the DOM Spec</A></LI>
  37.         <LI><A HREF="#additional methods not in the dom spec">Additional methods not in the DOM Spec</A></LI>
  38.         <LI><A HREF="#additional methods not in the dom spec">Additional methods not in the DOM Spec</A></LI>
  39.     </UL>
  40.  
  41.     <LI><A HREF="#extra node types">EXTRA NODE TYPES</A></LI>
  42.     <LI><A HREF="#implementation details">IMPLEMENTATION DETAILS</A></LI>
  43.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  44.     <LI><A HREF="#caveats">CAVEATS</A></LI>
  45.     <LI><A HREF="#authors">AUTHORS</A></LI>
  46. </UL>
  47. <!-- INDEX END -->
  48.  
  49. <HR>
  50. <P>
  51. <H1><A NAME="name">NAME</A></H1>
  52. <P>XML::DOM - A perl module for building DOM Level 1 compliant document structures</P>
  53. <P>
  54. <HR>
  55. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  56. <UL>
  57. <LI>Linux</LI>
  58. <LI>Solaris</LI>
  59. <LI>Windows</LI>
  60. </UL>
  61. <HR>
  62. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  63. <PRE>
  64.  use XML::DOM;</PRE>
  65. <PRE>
  66.  my $parser = new XML::DOM::Parser;
  67.  my $doc = $parser->parsefile ("file.xml");</PRE>
  68. <PRE>
  69.  # print all HREF attributes of all CODEBASE elements
  70.  my $nodes = $doc->getElementsByTagName ("CODEBASE");
  71.  my $n = $nodes->getLength;</PRE>
  72. <PRE>
  73.  for (my $i = 0; $i < $n; $i++)
  74.  {
  75.      my $node = $nodes->item ($i);
  76.      my $href = $node->getAttribute ("HREF");
  77.      print $href->getValue . "\n";
  78.  }</PRE>
  79. <PRE>
  80.  $doc->printToFile ("out.xml");</PRE>
  81. <PRE>
  82.  print $doc->toString;</PRE>
  83. <P>
  84. <HR>
  85. <H1><A NAME="description">DESCRIPTION</A></H1>
  86. <P>This module extends the XML::Parser module by Clark Cooper. 
  87. The XML::Parser module is built on top of XML::Parser::Expat, 
  88. which is a lower level interface to James Clark's expat library.</P>
  89. <P>XML::DOM::Parser is derived from XML::Parser. It parses XML strings or files
  90. and builds a data structure that conforms to the API of the Document Object 
  91. Model as described at <A HREF="http://www.w3.org/TR/REC-DOM-Level-1.">http://www.w3.org/TR/REC-DOM-Level-1.</A>
  92. See the XML::Parser manpage for other available features of the 
  93. XML::DOM::Parser class. 
  94. Note that the 'Style' property should not be used (it is set internally.)</P>
  95. <P>The XML::Parser <EM>NoExpand</EM> option is more or less supported, in that it will
  96. generate EntityReference objects whenever an entity reference is encountered
  97. in character data. I'm not sure how useful this is. Any comments are welcome.</P>
  98. <P>As described in the synopsis, when you create an XML::DOM::Parser object, 
  99. the parse and parsefile methods create an <EM>XML::DOM::Document</EM> object
  100. from the specified input. This Document object can then be examined, modified and
  101. written back out to a file or converted to a string.</P>
  102. <P>When using XML::DOM with XML::Parser version 2.19 and up, setting the 
  103. XML::DOM::Parser option <EM>KeepCDATA</EM> to 1 will store CDATASections in
  104. CDATASection nodes, instead of converting them to Text nodes.
  105. Subsequent CDATASection nodes will be merged into one. Let me know if this
  106. is a problem.</P>
  107. <P>A Document has a tree structure consisting of <EM>Node</EM> objects. A Node may contain
  108. other nodes, depending on its type.
  109. A Document may have Element, Text, Comment, and CDATASection nodes. 
  110. Element nodes may have Attr, Element, Text, Comment, and CDATASection nodes. 
  111. The other nodes may not have any child nodes.</P>
  112. <P>This module adds several node types that are not part of the DOM spec (yet.)
  113. These are: ElementDecl (for <!ELEMENT ...> declarations), AttlistDecl (for
  114. <!ATTLIST ...> declarations), XMLDecl (for <?xml ...?> declarations) and AttDef
  115. (for attribute definitions in an AttlistDecl.)</P>
  116. <P>
  117. <HR>
  118. <H1><A NAME="dom api">DOM API</A></H1>
  119. <DL>
  120. <DT><STRONG><A NAME="item_XML%3A%3ADOM">XML::DOM</A></STRONG><BR>
  121. <DD>
  122. <DL>
  123. <DT><STRONG><A NAME="item_Constant_definitions">Constant definitions</A></STRONG><BR>
  124. <DD>
  125. The following predefined constants indicate which type of node it is.
  126. <P></P></DL>
  127. <PRE>
  128.  UNKNOWN_NODE (0)                The node type is unknown (not part of DOM)</PRE>
  129. <PRE>
  130.  ELEMENT_NODE (1)                The node is an Element.
  131.  ATTRIBUTE_NODE (2)              The node is an Attr.
  132.  TEXT_NODE (3)                   The node is a Text node.
  133.  CDATA_SECTION_NODE (4)          The node is a CDATASection.
  134.  ENTITY_REFERENCE_NODE (5)       The node is an EntityReference.
  135.  ENTITY_NODE (6)                 The node is an Entity.
  136.  PROCESSING_INSTRUCTION_NODE (7) The node is a ProcessingInstruction.
  137.  COMMENT_NODE (8)                The node is a Comment.
  138.  DOCUMENT_NODE (9)               The node is a Document.
  139.  DOCUMENT_TYPE_NODE (10)         The node is a DocumentType.
  140.  DOCUMENT_FRAGMENT_NODE (11)     The node is a DocumentFragment.
  141.  NOTATION_NODE (12)              The node is a Notation.</PRE>
  142. <PRE>
  143.  ELEMENT_DECL_NODE (13)          The node is an ElementDecl (not part of DOM)
  144.  ATT_DEF_NODE (14)               The node is an AttDef (not part of DOM)
  145.  XML_DECL_NODE (15)              The node is an XMLDecl (not part of DOM)
  146.  ATTLIST_DECL_NODE (16)          The node is an AttlistDecl (not part of DOM)</PRE>
  147. <PRE>
  148.  Usage:</PRE>
  149. <PRE>
  150.    if ($node->getNodeType == ELEMENT_NODE)
  151.    {
  152.        print "It's an Element";
  153.    }</PRE>
  154. <P><STRONG>Not In DOM Spec</STRONG>: The DOM Spec does not mention UNKNOWN_NODE and, 
  155. quite frankly, you should never encounter it. The last 4 node types were added
  156. to support the 4 added node classes.</P>
  157. </DL>
  158. <P>
  159. <H2><A NAME="global variables">Global Variables</A></H2>
  160. <DL>
  161. <DT><STRONG><A NAME="item_%24VERSION">$VERSION</A></STRONG><BR>
  162. <DD>
  163. The variable $XML::DOM::VERSION contains the version number of this 
  164. implementation, e.g. ``1.07''.
  165. <P></P></DL>
  166. <P>
  167. <H2><A NAME="additional methods not in the dom spec">Additional methods not in the DOM Spec</A></H2>
  168. <DL>
  169. <DT><STRONG><A NAME="item_ignoreReadOnly">getIgnoreReadOnly and ignoreReadOnly (readOnly)</A></STRONG><BR>
  170. <DD>
  171. The DOM Level 1 Spec does not allow you to edit certain sections of the document,
  172. e.g. the DocumentType, so by default this implementation throws DOMExceptions
  173. (i.e. NO_MODIFICATION_ALLOWED_ERR) when you try to edit a readonly node. 
  174. These readonly checks can be disabled by (temporarily) setting the global 
  175. IgnoreReadOnly flag.
  176. <P>The ignoreReadOnly method sets the global IgnoreReadOnly flag and returns its
  177. previous value. The getIgnoreReadOnly method simply returns its current value.</P>
  178. <PRE>
  179.  my $oldIgnore = XML::DOM::ignoreReadOnly (1);
  180.  eval {
  181.  ... do whatever you want, catching any other exceptions ...
  182.  };
  183.  XML::DOM::ignoreReadOnly ($oldIgnore);     # restore previous value</PRE>
  184. <P></P>
  185. <DT><STRONG><A NAME="item_isValidName">isValidName (name)</A></STRONG><BR>
  186. <DD>
  187. Whether the specified name is a valid ``Name'' as specified in the XML spec.
  188. Characters with Unicode values > 127 are now also supported.
  189. <P></P>
  190. <DT><STRONG><A NAME="item_allowReservedNames">getAllowReservedNames and allowReservedNames (boolean)</A></STRONG><BR>
  191. <DD>
  192. The first method returns whether reserved names are allowed. 
  193. The second takes a boolean argument and sets whether reserved names are allowed.
  194. The initial value is 1 (i.e. allow reserved names.)
  195. <P>The XML spec states that ``Names'' starting with (X|x)(M|m)(L|l)
  196. are reserved for future use. (Amusingly enough, the XML version of the XML spec
  197. (REC-xml-19980210.xml) breaks that very rule by defining an ENTITY with the name 
  198. 'xmlpio'.)
  199. A ``Name'' in this context means the Name token as found in the BNF rules in the
  200. XML spec.</P>
  201. <P>XML::DOM only checks for errors when you modify the DOM tree, not when the
  202. DOM tree is built by the XML::DOM::Parser.</P>
  203. <P></P>
  204. <DT><STRONG><A NAME="item_setTagCompression">setTagCompression (funcref)</A></STRONG><BR>
  205. <DD>
  206. There are 3 possible styles for printing empty Element tags:
  207. <DL>
  208. <DT><STRONG><A NAME="item_Style_0">Style 0</A></STRONG><BR>
  209. <DD>
  210. <PRE>
  211.  <empty/> or <empty attr="val"/></PRE>
  212. <P>XML::DOM uses this style by default for all Elements.</P>
  213. <DT><STRONG><A NAME="item_Style_1">Style 1</A></STRONG><BR>
  214. <DD>
  215. <PRE>
  216.   <empty></empty> or <empty attr="val"></empty></PRE>
  217. <DT><STRONG><A NAME="item_Style_2">Style 2</A></STRONG><BR>
  218. <DD>
  219. <PRE>
  220.   <empty /> or <empty attr="val" /></PRE>
  221. <P>This style is sometimes desired when using XHTML. 
  222. (Note the extra space before the slash ``/'')
  223. See <A HREF="http://www.w3.org/TR/WD-html-in-xml">http://www.w3.org/TR/WD-html-in-xml</A> Appendix C for more details.</P>
  224. </DL>
  225. <P>By default XML::DOM compresses all empty Element tags (style 0.)
  226. You can control which style is used for a particular Element by calling
  227. XML::DOM::setTagCompression with a reference to a function that takes
  228. 2 arguments. The first is the tag name of the Element, the second is the
  229. XML::DOM::Element that is being printed. 
  230. The function should return 0, 1 or 2 to indicate which style should be used to
  231. print the empty tag. E.g.</P>
  232. <PRE>
  233.  XML::DOM::setTagCompression (\&my_tag_compression);</PRE>
  234. <PRE>
  235.  sub my_tag_compression
  236.  {
  237.     my ($tag, $elem) = @_;</PRE>
  238. <PRE>
  239.     # Print empty br, hr and img tags like this: <br />
  240.     return 2 if $tag =~ /^(br|hr|img)$/;</PRE>
  241. <PRE>
  242.     # Print other empty tags like this: <empty></empty>
  243.     return 1;
  244.  }</PRE>
  245. </DL>
  246. <DL>
  247. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3ANode">XML::DOM::Node</A></STRONG><BR>
  248. <DD>
  249. </DL>
  250. <P>
  251. <H2><A NAME="global variables">Global Variables</A></H2>
  252. <DL>
  253. <DT><STRONG><A NAME="item_%40NodeNames">@NodeNames</A></STRONG><BR>
  254. <DD>
  255. The variable @XML::DOM::Node::NodeNames maps the node type constants to strings.
  256. It is used by XML::DOM::Node::getNodeTypeName.
  257. <P></P></DL>
  258. <P>
  259. <H2><A NAME="methods">Methods</A></H2>
  260. <DL>
  261. <DT><STRONG><A NAME="item_getNodeType">getNodeType</A></STRONG><BR>
  262. <DD>
  263. Return an integer indicating the node type. See XML::DOM constants.
  264. <P></P>
  265. <DT><STRONG><A NAME="item_getNodeName">getNodeName</A></STRONG><BR>
  266. <DD>
  267. Return a property or a hardcoded string, depending on the node type.
  268. Here are the corresponding functions or values:
  269. <PRE>
  270.  Attr                   getName
  271.  AttDef                 getName
  272.  AttlistDecl            getName
  273.  CDATASection           "#cdata-section"
  274.  Comment                "#comment"
  275.  Document               "#document"
  276.  DocumentType           getNodeName
  277.  DocumentFragment       "#document-fragment"
  278.  Element                getTagName
  279.  ElementDecl            getName
  280.  EntityReference        getEntityName
  281.  Entity                 getNotationName
  282.  Notation               getName
  283.  ProcessingInstruction  getTarget
  284.  Text                   "#text"
  285.  XMLDecl                "#xml-declaration"</PRE>
  286. <P><STRONG>Not In DOM Spec</STRONG>: AttDef, AttlistDecl, ElementDecl and XMLDecl were added for
  287. completeness.</P>
  288. <P></P>
  289. <DT><STRONG><A NAME="item_setNodeValue">getNodeValue and setNodeValue (value)</A></STRONG><BR>
  290. <DD>
  291. Returns a string or undef, depending on the node type. This method is provided 
  292. for completeness. In other languages it saves the programmer an upcast.
  293. The value is either available thru some other method defined in the subclass, or
  294. else undef is returned. Here are the corresponding methods: 
  295. Attr::getValue, Text::getData, CDATASection::getData, Comment::getData, 
  296. ProcessingInstruction::getData.
  297. <P></P>
  298. <DT><STRONG><A NAME="item_setParentNode">getParentNode and setParentNode (parentNode)</A></STRONG><BR>
  299. <DD>
  300. The parent of this node. All nodes, except Document,
  301. DocumentFragment, and Attr may have a parent. However, if a
  302. node has just been created and not yet added to the tree, or
  303. if it has been removed from the tree, this is undef.
  304. <P></P>
  305. <DT><STRONG><A NAME="item_getChildNodes">getChildNodes</A></STRONG><BR>
  306. <DD>
  307. A NodeList that contains all children of this node. If there
  308. are no children, this is a NodeList containing no nodes. The
  309. content of the returned NodeList is ``live'' in the sense that,
  310. for instance, changes to the children of the node object that
  311. it was created from are immediately reflected in the nodes
  312. returned by the NodeList accessors; it is not a static
  313. snapshot of the content of the node. This is true for every
  314. NodeList, including the ones returned by the
  315. getElementsByTagName method.
  316. <P>NOTE: this implementation does not return a ``live'' NodeList for
  317. getElementsByTagName. See <EM>CAVEATS</EM>.</P>
  318. <P>When this method is called in a list context, it returns a regular perl list
  319. containing the child nodes. Note that this list is not ``live''. E.g.</P>
  320. <PRE>
  321.  @list = $node->getChildNodes;        # returns a perl list
  322.  $nodelist = $node->getChildNodes;    # returns a NodeList (object reference)
  323.  for my $kid ($node->getChildNodes)   # iterate over the children of $node</PRE>
  324. <P></P>
  325. <DT><STRONG><A NAME="item_getFirstChild">getFirstChild</A></STRONG><BR>
  326. <DD>
  327. The first child of this node. If there is no such node, this returns undef.
  328. <P></P>
  329. <DT><STRONG><A NAME="item_getLastChild">getLastChild</A></STRONG><BR>
  330. <DD>
  331. The last child of this node. If there is no such node, this returns undef.
  332. <P></P>
  333. <DT><STRONG><A NAME="item_getPreviousSibling">getPreviousSibling</A></STRONG><BR>
  334. <DD>
  335. The node immediately preceding this node. If there is no such 
  336. node, this returns undef.
  337. <P></P>
  338. <DT><STRONG><A NAME="item_getNextSibling">getNextSibling</A></STRONG><BR>
  339. <DD>
  340. The node immediately following this node. If there is no such node, this returns 
  341. undef.
  342. <P></P>
  343. <DT><STRONG><A NAME="item_getAttributes">getAttributes</A></STRONG><BR>
  344. <DD>
  345. A NamedNodeMap containing the attributes (Attr nodes) of this node 
  346. (if it is an Element) or undef otherwise.
  347. Note that adding/removing attributes from the returned object, also adds/removes
  348. attributes from the Element node that the NamedNodeMap came from.
  349. <P></P>
  350. <DT><STRONG><A NAME="item_getOwnerDocument">getOwnerDocument</A></STRONG><BR>
  351. <DD>
  352. The Document object associated with this node. This is also
  353. the Document object used to create new nodes. When this node
  354. is a Document this is undef.
  355. <P></P>
  356. <DT><STRONG><A NAME="item_insertBefore">insertBefore (newChild, refChild)</A></STRONG><BR>
  357. <DD>
  358. Inserts the node newChild before the existing child node
  359. refChild. If refChild is undef, insert newChild at the end of
  360. the list of children.
  361. <P>If newChild is a DocumentFragment object, all of its children
  362. are inserted, in the same order, before refChild. If the
  363. newChild is already in the tree, it is first removed.</P>
  364. <P>Return Value: The node being inserted.</P>
  365. <P>DOMExceptions:</P>
  366. <UL>
  367. <LI><STRONG><A NAME="item_HIERARCHY_REQUEST_ERR">HIERARCHY_REQUEST_ERR</A></STRONG><BR>
  368.  
  369. Raised if this node is of a type that does not allow children of the type of
  370. the newChild node, or if the node to insert is one of this node's ancestors.
  371. <P></P>
  372. <LI><STRONG><A NAME="item_WRONG_DOCUMENT_ERR">WRONG_DOCUMENT_ERR</A></STRONG><BR>
  373.  
  374. Raised if newChild was created from a different document than the one that 
  375. created this node.
  376. <P></P>
  377. <LI><STRONG><A NAME="item_NO_MODIFICATION_ALLOWED_ERR">NO_MODIFICATION_ALLOWED_ERR</A></STRONG><BR>
  378.  
  379. Raised if this node is readonly.
  380. <P></P>
  381. <LI><STRONG><A NAME="item_NOT_FOUND_ERR">NOT_FOUND_ERR</A></STRONG><BR>
  382.  
  383. Raised if refChild is not a child of this node.
  384. <P></P></UL>
  385. <DT><STRONG><A NAME="item_replaceChild">replaceChild (newChild, oldChild)</A></STRONG><BR>
  386. <DD>
  387. Replaces the child node oldChild with newChild in the list of
  388. children, and returns the oldChild node. If the newChild is
  389. already in the tree, it is first removed.
  390. <P>Return Value: The node replaced.</P>
  391. <P>DOMExceptions:</P>
  392. <UL>
  393. <LI><STRONG>HIERARCHY_REQUEST_ERR</STRONG><BR>
  394.  
  395. Raised if this node is of a type that does not allow children of the type of
  396. the newChild node, or it the node to put in is one of this node's ancestors.
  397. <P></P>
  398. <LI><STRONG>WRONG_DOCUMENT_ERR</STRONG><BR>
  399.  
  400. Raised if newChild was created from a different document than the one that 
  401. created this node.
  402. <P></P>
  403. <LI><STRONG>NO_MODIFICATION_ALLOWED_ERR</STRONG><BR>
  404.  
  405. Raised if this node is readonly.
  406. <P></P>
  407. <LI><STRONG>NOT_FOUND_ERR</STRONG><BR>
  408.  
  409. Raised if oldChild is not a child of this node.
  410. <P></P></UL>
  411. <DT><STRONG><A NAME="item_removeChild">removeChild (oldChild)</A></STRONG><BR>
  412. <DD>
  413. Removes the child node indicated by oldChild from the list of
  414. children, and returns it.
  415. <P>Return Value: The node removed.</P>
  416. <P>DOMExceptions:</P>
  417. <UL>
  418. <LI><STRONG>NO_MODIFICATION_ALLOWED_ERR</STRONG><BR>
  419.  
  420. Raised if this node is readonly.
  421. <P></P>
  422. <LI><STRONG>NOT_FOUND_ERR</STRONG><BR>
  423.  
  424. Raised if oldChild is not a child of this node.
  425. <P></P></UL>
  426. <DT><STRONG><A NAME="item_appendChild">appendChild (newChild)</A></STRONG><BR>
  427. <DD>
  428. Adds the node newChild to the end of the list of children of
  429. this node. If the newChild is already in the tree, it is
  430. first removed. If it is a DocumentFragment object, the entire contents of 
  431. the document fragment are moved into the child list of this node
  432. <P>Return Value: The node added.</P>
  433. <P>DOMExceptions:</P>
  434. <UL>
  435. <LI><STRONG>HIERARCHY_REQUEST_ERR</STRONG><BR>
  436.  
  437. Raised if this node is of a type that does not allow children of the type of
  438. the newChild node, or if the node to append is one of this node's ancestors.
  439. <P></P>
  440. <LI><STRONG>WRONG_DOCUMENT_ERR</STRONG><BR>
  441.  
  442. Raised if newChild was created from a different document than the one that 
  443. created this node.
  444. <P></P>
  445. <LI><STRONG>NO_MODIFICATION_ALLOWED_ERR</STRONG><BR>
  446.  
  447. Raised if this node is readonly.
  448. <P></P></UL>
  449. <DT><STRONG><A NAME="item_hasChildNodes">hasChildNodes</A></STRONG><BR>
  450. <DD>
  451. This is a convenience method to allow easy determination of
  452. whether a node has any children.
  453. <P>Return Value: 1 if the node has any children, 0 otherwise.</P>
  454. <P></P>
  455. <DT><STRONG><A NAME="item_cloneNode">cloneNode (deep)</A></STRONG><BR>
  456. <DD>
  457. Returns a duplicate of this node, i.e., serves as a generic
  458. copy constructor for nodes. The duplicate node has no parent
  459. (parentNode returns undef.).
  460. <P>Cloning an Element copies all attributes and their values,
  461. including those generated by the XML processor to represent
  462. defaulted attributes, but this method does not copy any text
  463. it contains unless it is a deep clone, since the text is
  464. contained in a child Text node. Cloning any other type of
  465. node simply returns a copy of this node.</P>
  466. <P>Parameters: 
  467.  <EM>deep</EM>   If true, recursively clone the subtree under the specified node.
  468. If false, clone only the node itself (and its attributes, if it is an Element).</P>
  469. <P>Return Value: The duplicate node.</P>
  470. <P></P>
  471. <DT><STRONG><A NAME="item_normalize">normalize</A></STRONG><BR>
  472. <DD>
  473. Puts all Text nodes in the full depth of the sub-tree
  474. underneath this Element into a ``normal'' form where only
  475. markup (e.g., tags, comments, processing instructions, CDATA
  476. sections, and entity references) separates Text nodes, i.e.,
  477. there are no adjacent Text nodes. This can be used to ensure
  478. that the DOM view of a document is the same as if it were
  479. saved and re-loaded, and is useful when operations (such as
  480. XPointer lookups) that depend on a particular document tree
  481. structure are to be used.
  482. <P><STRONG>Not In DOM Spec</STRONG>: In the DOM Spec this method is defined in the Element and 
  483. Document class interfaces only, but it doesn't hurt to have it here...</P>
  484. <P></P>
  485. <DT><STRONG><A NAME="item_getElementsByTagName">getElementsByTagName (name [, recurse])</A></STRONG><BR>
  486. <DD>
  487. Returns a NodeList of all descendant elements with a given
  488. tag name, in the order in which they would be encountered in
  489. a preorder traversal of the Element tree.
  490. <P>Parameters:
  491.  <EM>name</EM>  The name of the tag to match on. The special value ``*'' matches all tags.
  492.  <EM>recurse</EM>  Whether it should return only direct child nodes (0) or any descendant that matches the tag name (1). This argument is optional and defaults to 1. It is not part of the DOM spec.</P>
  493. <P>Return Value: A list of matching Element nodes.</P>
  494. <P>NOTE: this implementation does not return a ``live'' NodeList for
  495. getElementsByTagName. See <EM>CAVEATS</EM>.</P>
  496. <P>When this method is called in a list context, it returns a regular perl list
  497. containing the result nodes. E.g.</P>
  498. <PRE>
  499.  @list = $node->getElementsByTagName("tag");       # returns a perl list
  500.  $nodelist = $node->getElementsByTagName("tag");   # returns a NodeList (object ref.)
  501.  for my $elem ($node->getElementsByTagName("tag")) # iterate over the result nodes</PRE>
  502. <P></P></DL>
  503. <P>
  504. <H2><A NAME="additional methods not in the dom spec">Additional methods not in the DOM Spec</A></H2>
  505. <DL>
  506. <DT><STRONG><A NAME="item_getNodeTypeName">getNodeTypeName</A></STRONG><BR>
  507. <DD>
  508. Return the string describing the node type. 
  509. E.g. returns ``ELEMENT_NODE'' if getNodeType returns ELEMENT_NODE.
  510. It uses @XML::DOM::Node::NodeNames.
  511. <P></P>
  512. <DT><STRONG><A NAME="item_toString">toString</A></STRONG><BR>
  513. <DD>
  514. Returns the entire subtree as a string.
  515. <P></P>
  516. <DT><STRONG><A NAME="item_printToFile">printToFile (filename)</A></STRONG><BR>
  517. <DD>
  518. Prints the entire subtree to the file with the specified filename.
  519. <P>Croaks: if the file could not be opened for writing.</P>
  520. <P></P>
  521. <DT><STRONG><A NAME="item_printToFileHandle">printToFileHandle (handle)</A></STRONG><BR>
  522. <DD>
  523. Prints the entire subtree to the file handle.
  524. E.g. to print to STDOUT:
  525. <PRE>
  526.  $node->printToFileHandle (\*STDOUT);</PRE>
  527. <P></P>
  528. <DT><STRONG><A NAME="item_print">print (obj)</A></STRONG><BR>
  529. <DD>
  530. Prints the entire subtree using the object's print method. E.g to print to a
  531. FileHandle object:
  532. <PRE>
  533.  $f = new FileHandle ("file.out", "w");
  534.  $node->print ($f);</PRE>
  535. <P></P>
  536. <DT><STRONG><A NAME="item_getChildIndex">getChildIndex (child)</A></STRONG><BR>
  537. <DD>
  538. Returns the index of the child node in the list returned by getChildNodes.
  539. <P>Return Value: the index or -1 if the node is not found.</P>
  540. <P></P>
  541. <DT><STRONG><A NAME="item_getChildAtIndex">getChildAtIndex (index)</A></STRONG><BR>
  542. <DD>
  543. Returns the child node at the specifed index or undef.
  544. <P></P>
  545. <DT><STRONG><A NAME="item_addText">addText (text)</A></STRONG><BR>
  546. <DD>
  547. Appends the specified string to the last child if it is a Text node, or else 
  548. appends a new Text node (with the specified text.)
  549. <P>Return Value: the last child if it was a Text node or else the new Text node.</P>
  550. <P></P>
  551. <DT><STRONG><A NAME="item_dispose">dispose</A></STRONG><BR>
  552. <DD>
  553. Removes all circular references in this node and its descendants so the 
  554. objects can be claimed for garbage collection. The objects should not be used
  555. afterwards.
  556. <P></P>
  557. <DT><STRONG><A NAME="item_setOwnerDocument">setOwnerDocument (doc)</A></STRONG><BR>
  558. <DD>
  559. Sets the ownerDocument property of this node and all its children (and 
  560. attributes etc.) to the specified document.
  561. This allows the user to cut and paste document subtrees between different
  562. XML::DOM::Documents. The node should be removed from the original document
  563. first, before calling setOwnerDocument.
  564. <P>This method does nothing when called on a Document node.</P>
  565. <P></P>
  566. <DT><STRONG><A NAME="item_isAncestor">isAncestor (parent)</A></STRONG><BR>
  567. <DD>
  568. Returns 1 if parent is an ancestor of this node or if it is this node itself.
  569. <P></P>
  570. <DT><STRONG><A NAME="item_expandEntityRefs">expandEntityRefs (str)</A></STRONG><BR>
  571. <DD>
  572. Expands all the entity references in the string and returns the result.
  573. The entity references can be character references (e.g. ``&#123;'' or ``&#x1fc2''),
  574. default entity references (``&quot;'', ``&gt;'', ``&lt;'', ``&apos;'' and ``&amp;'') or
  575. entity references defined in Entity objects as part of the DocumentType of
  576. the owning Document. Character references are expanded into UTF-8.
  577. Parameter entity references (e.g. %ent;) are not expanded.
  578. <P></P></DL>
  579. <DL>
  580. <DT><STRONG><A NAME="item_Interface_XML%3A%3ADOM%3A%3ANodeList">Interface XML::DOM::NodeList</A></STRONG><BR>
  581. <DD>
  582. The NodeList interface provides the abstraction of an ordered
  583. collection of nodes, without defining or constraining how this
  584. collection is implemented.
  585. <P>The items in the NodeList are accessible via an integral index,
  586. starting from 0.</P>
  587. <P>Although the DOM spec states that all NodeLists are ``live'' in that they
  588. allways reflect changes to the DOM tree, the NodeList returned by
  589. getElementsByTagName is not live in this implementation. See <EM>CAVEATS</EM>
  590. for details.</P>
  591. <DL>
  592. <DT><STRONG><A NAME="item_item">item (index)</A></STRONG><BR>
  593. <DD>
  594. Returns the indexth item in the collection. If index is
  595. greater than or equal to the number of nodes in the list,
  596. this returns undef.
  597. <P></P>
  598. <DT><STRONG><A NAME="item_getLength">getLength</A></STRONG><BR>
  599. <DD>
  600. The number of nodes in the list. The range of valid child
  601. node indices is 0 to length-1 inclusive.
  602. <P></P></DL>
  603. </DL>
  604. <P>
  605. <H2><A NAME="additional methods not in the dom spec">Additional methods not in the DOM Spec</A></H2>
  606. <DL>
  607. <DT><STRONG>dispose</STRONG><BR>
  608. <DD>
  609. Removes all circular references in this NodeList and its descendants so the 
  610. objects can be claimed for garbage collection. The objects should not be used
  611. afterwards.
  612. <P></P></DL>
  613. <DL>
  614. <DT><STRONG><A NAME="item_Interface_XML%3A%3ADOM%3A%3ANamedNodeMap">Interface XML::DOM::NamedNodeMap</A></STRONG><BR>
  615. <DD>
  616. Objects implementing the NamedNodeMap interface are used to represent
  617. collections of nodes that can be accessed by name. Note that
  618. NamedNodeMap does not inherit from NodeList; NamedNodeMaps are not
  619. maintained in any particular order. Objects contained in an object
  620. implementing NamedNodeMap may also be accessed by an ordinal index, but
  621. this is simply to allow convenient enumeration of the contents of a
  622. NamedNodeMap, and does not imply that the DOM specifies an order to
  623. these Nodes.
  624. <P>Note that in this implementation, the objects added to a NamedNodeMap
  625. are kept in order.</P>
  626. <DL>
  627. <DT><STRONG><A NAME="item_getNamedItem">getNamedItem (name)</A></STRONG><BR>
  628. <DD>
  629. Retrieves a node specified by name.
  630. <P>Return Value: A Node (of any type) with the specified name, or undef if
  631. the specified name did not identify any node in the map.</P>
  632. <P></P>
  633. <DT><STRONG><A NAME="item_setNamedItem">setNamedItem (arg)</A></STRONG><BR>
  634. <DD>
  635. Adds a node using its nodeName attribute.
  636. <P>As the nodeName attribute is used to derive the name which
  637. the node must be stored under, multiple nodes of certain
  638. types (those that have a ``special'' string value) cannot be
  639. stored as the names would clash. This is seen as preferable
  640. to allowing nodes to be aliased.</P>
  641. <P>Parameters:
  642.  <EM>arg</EM>  A node to store in a named node map.</P>
  643. <P>The node will later be accessible using the value of the nodeName
  644. attribute of the node. If a node with that name is
  645. already present in the map, it is replaced by the new one.</P>
  646. <P>Return Value: If the new Node replaces an existing node with the same
  647. name the previously existing Node is returned, otherwise undef is returned.</P>
  648. <P>DOMExceptions:</P>
  649. <UL>
  650. <LI><STRONG>WRONG_DOCUMENT_ERR</STRONG><BR>
  651.  
  652. Raised if arg was created from a different document than the one that 
  653. created the NamedNodeMap.
  654. <P></P>
  655. <LI><STRONG>NO_MODIFICATION_ALLOWED_ERR</STRONG><BR>
  656.  
  657. Raised if this NamedNodeMap is readonly.
  658. <P></P>
  659. <LI><STRONG><A NAME="item_INUSE_ATTRIBUTE_ERR">INUSE_ATTRIBUTE_ERR</A></STRONG><BR>
  660.  
  661. Raised if arg is an Attr that is already an attribute of another Element object.
  662. The DOM user must explicitly clone Attr nodes to re-use them in other elements.
  663. <P></P></UL>
  664. <DT><STRONG><A NAME="item_removeNamedItem">removeNamedItem (name)</A></STRONG><BR>
  665. <DD>
  666. Removes a node specified by name. If the removed node is an
  667. Attr with a default value it is immediately replaced.
  668. <P>Return Value: The node removed from the map or undef if no node with
  669. such a name exists.</P>
  670. <P>DOMException:</P>
  671. <UL>
  672. <LI><STRONG>NOT_FOUND_ERR</STRONG><BR>
  673.  
  674. Raised if there is no node named name in the map.
  675. <P></P></UL>
  676. <DT><STRONG>item (index)</STRONG><BR>
  677. <DD>
  678. Returns the indexth item in the map. If index is greater than
  679. or equal to the number of nodes in the map, this returns undef.
  680. <P>Return Value: The node at the indexth position in the NamedNodeMap, or
  681. undef if that is not a valid index.</P>
  682. <P></P>
  683. <DT><STRONG>getLength</STRONG><BR>
  684. <DD>
  685. Returns the number of nodes in the map. The range of valid child node
  686. indices is 0 to length-1 inclusive.
  687. <P></P></DL>
  688. </DL>
  689. <P>
  690. <H2><A NAME="additional methods not in the dom spec">Additional methods not in the DOM Spec</A></H2>
  691. <DL>
  692. <DT><STRONG><A NAME="item_getValues">getValues</A></STRONG><BR>
  693. <DD>
  694. Returns a NodeList with the nodes contained in the NamedNodeMap.
  695. The NodeList is ``live'', in that it reflects changes made to the NamedNodeMap.
  696. <P>When this method is called in a list context, it returns a regular perl list
  697. containing the values. Note that this list is not ``live''. E.g.</P>
  698. <PRE>
  699.  @list = $map->getValues;        # returns a perl list
  700.  $nodelist = $map->getValues;    # returns a NodeList (object ref.)
  701.  for my $val ($map->getValues)   # iterate over the values</PRE>
  702. <P></P>
  703. <DT><STRONG>getChildIndex (node)</STRONG><BR>
  704. <DD>
  705. Returns the index of the node in the NodeList as returned by getValues, or -1
  706. if the node is not in the NamedNodeMap.
  707. <P></P>
  708. <DT><STRONG>dispose</STRONG><BR>
  709. <DD>
  710. Removes all circular references in this NamedNodeMap and its descendants so the 
  711. objects can be claimed for garbage collection. The objects should not be used
  712. afterwards.
  713. <P></P></DL>
  714. <DL>
  715. <DT><STRONG><A NAME="item_Interface_XML%3A%3ADOM%3A%3ACharacterData_extends_">Interface XML::DOM::CharacterData extends XML::DOM::Node</A></STRONG><BR>
  716. <DD>
  717. The CharacterData interface extends Node with a set of attributes and
  718. methods for accessing character data in the DOM. For clarity this set
  719. is defined here rather than on each object that uses these attributes
  720. and methods. No DOM objects correspond directly to CharacterData,
  721. though Text, Comment and CDATASection do inherit the interface from it. 
  722. All offsets in this interface start from 0.
  723. <DL>
  724. <DT><STRONG><A NAME="item_setData">getData and setData (data)</A></STRONG><BR>
  725. <DD>
  726. The character data of the node that implements this
  727. interface. The DOM implementation may not put arbitrary
  728. limits on the amount of data that may be stored in a
  729. CharacterData node. However, implementation limits may mean
  730. that the entirety of a node's data may not fit into a single
  731. DOMString. In such cases, the user may call substringData to
  732. retrieve the data in appropriately sized pieces.
  733. <P></P>
  734. <DT><STRONG>getLength</STRONG><BR>
  735. <DD>
  736. The number of characters that are available through data and
  737. the substringData method below. This may have the value zero,
  738. i.e., CharacterData nodes may be empty.
  739. <P></P>
  740. <DT><STRONG><A NAME="item_substringData">substringData (offset, count)</A></STRONG><BR>
  741. <DD>
  742. Extracts a range of data from the node.
  743. <P>Parameters:
  744.  <EM>offset</EM>  Start offset of substring to extract.
  745.  <EM>count</EM>   The number of characters to extract.</P>
  746. <P>Return Value: The specified substring. If the sum of offset and count
  747. exceeds the length, then all characters to the end of
  748. the data are returned.</P>
  749. <P></P>
  750. <DT><STRONG><A NAME="item_appendData">appendData (str)</A></STRONG><BR>
  751. <DD>
  752. Appends the string to the end of the character data of the
  753. node. Upon success, data provides access to the concatenation
  754. of data and the DOMString specified.
  755. <P></P>
  756. <DT><STRONG><A NAME="item_insertData">insertData (offset, arg)</A></STRONG><BR>
  757. <DD>
  758. Inserts a string at the specified character offset.
  759. <P>Parameters:
  760.  <EM>offset</EM>  The character offset at which to insert.
  761.  <EM>arg</EM>     The DOMString to insert.</P>
  762. <P></P>
  763. <DT><STRONG><A NAME="item_deleteData">deleteData (offset, count)</A></STRONG><BR>
  764. <DD>
  765. Removes a range of characters from the node. 
  766. Upon success, data and length reflect the change.
  767. If the sum of offset and count exceeds length then all characters 
  768. from offset to the end of the data are deleted.
  769. <P>Parameters: 
  770.  <EM>offset</EM>  The offset from which to remove characters. 
  771.  <EM>count</EM>   The number of characters to delete.</P>
  772. <P></P>
  773. <DT><STRONG><A NAME="item_replaceData">replaceData (offset, count, arg)</A></STRONG><BR>
  774. <DD>
  775. Replaces the characters starting at the specified character
  776. offset with the specified string.
  777. <P>Parameters:
  778.  <EM>offset</EM>  The offset from which to start replacing.
  779.  <EM>count</EM>   The number of characters to replace. 
  780.  <EM>arg</EM>     The DOMString with which the range must be replaced.</P>
  781. <P>If the sum of offset and count exceeds length, then all characters to the end of
  782. the data are replaced (i.e., the effect is the same as a remove method call with 
  783. the same range, followed by an append method invocation).</P>
  784. <P></P></DL>
  785. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3AAttr_extends_XML%3A%3ADOM%3A%3AN">XML::DOM::Attr extends XML::DOM::Node</A></STRONG><BR>
  786. <DD>
  787. <P>The Attr nodes built by the XML::DOM::Parser always have one child node
  788. which is a Text node containing the expanded string value (i.e. EntityReferences
  789. are always expanded.) EntityReferences may be added when modifying or creating
  790. a new Document.</P>
  791. <P>The Attr interface represents an attribute in an Element object.
  792. Typically the allowable values for the attribute are defined in a
  793. document type definition.</P>
  794. <P>Attr objects inherit the Node interface, but since they are not
  795. actually child nodes of the element they describe, the DOM does not
  796. consider them part of the document tree. Thus, the Node attributes
  797. parentNode, previousSibling, and nextSibling have a undef value for Attr
  798. objects. The DOM takes the view that attributes are properties of
  799. elements rather than having a separate identity from the elements they
  800. are associated with; this should make it more efficient to implement
  801. such features as default attributes associated with all elements of a
  802. given type. Furthermore, Attr nodes may not be immediate children of a
  803. DocumentFragment. However, they can be associated with Element nodes
  804. contained within a DocumentFragment. In short, users and implementors
  805. of the DOM need to be aware that Attr nodes have some things in common
  806. with other objects inheriting the Node interface, but they also are
  807. quite distinct.</P>
  808. <P>The attribute's effective value is determined as follows: if this
  809. attribute has been explicitly assigned any value, that value is the
  810. attribute's effective value; otherwise, if there is a declaration for
  811. this attribute, and that declaration includes a default value, then
  812. that default value is the attribute's effective value; otherwise, the
  813. attribute does not exist on this element in the structure model until
  814. it has been explicitly added. Note that the nodeValue attribute on the
  815. Attr instance can also be used to retrieve the string version of the
  816. attribute's value(s).</P>
  817. <P>In XML, where the value of an attribute can contain entity references,
  818. the child nodes of the Attr node provide a representation in which
  819. entity references are not expanded. These child nodes may be either
  820. Text or EntityReference nodes. Because the attribute type may be
  821. unknown, there are no tokenized attribute values.</P>
  822. <DL>
  823. <DT><STRONG><A NAME="item_getValue">getValue</A></STRONG><BR>
  824. <DD>
  825. On retrieval, the value of the attribute is returned as a string. 
  826. Character and general entity references are replaced with their values.
  827. <P></P>
  828. <DT><STRONG><A NAME="item_setValue">setValue (str)</A></STRONG><BR>
  829. <DD>
  830. DOM Spec: On setting, this creates a Text node with the unparsed contents of the 
  831. string.
  832. <P></P>
  833. <DT><STRONG><A NAME="item_getName">getName</A></STRONG><BR>
  834. <DD>
  835. Returns the name of this attribute.
  836. <P></P></DL>
  837. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3AElement_extends_XML%3A%3ADOM%3A%">XML::DOM::Element extends XML::DOM::Node</A></STRONG><BR>
  838. <DD>
  839. By far the vast majority of objects (apart from text) that authors
  840. encounter when traversing a document are Element nodes. Assume the
  841. following XML document:
  842. <PRE>
  843.      <elementExample id="demo">
  844.        <subelement1/>
  845.        <subelement2><subsubelement/></subelement2>
  846.      </elementExample></PRE>
  847. <P>When represented using DOM, the top node is an Element node for
  848. ``elementExample'', which contains two child Element nodes, one for
  849. ``subelement1'' and one for ``subelement2''. ``subelement1'' contains no
  850. child nodes.</P>
  851. <P>Elements may have attributes associated with them; since the Element
  852. interface inherits from Node, the generic Node interface method
  853. getAttributes may be used to retrieve the set of all attributes for an
  854. element. There are methods on the Element interface to retrieve either
  855. an Attr object by name or an attribute value by name. In XML, where an
  856. attribute value may contain entity references, an Attr object should be
  857. retrieved to examine the possibly fairly complex sub-tree representing
  858. the attribute value. On the other hand, in HTML, where all attributes
  859. have simple string values, methods to directly access an attribute
  860. value can safely be used as a convenience.</P>
  861. <DL>
  862. <DT><STRONG><A NAME="item_getTagName">getTagName</A></STRONG><BR>
  863. <DD>
  864. The name of the element. For example, in:
  865. <PRE>
  866.                <elementExample id="demo">
  867.                        ...
  868.                </elementExample></PRE>
  869. <P>tagName has the value ``elementExample''. Note that this is
  870. case-preserving in XML, as are all of the operations of the
  871. DOM.</P>
  872. <P></P>
  873. <DT><STRONG><A NAME="item_getAttribute">getAttribute (name)</A></STRONG><BR>
  874. <DD>
  875. Retrieves an attribute value by name.
  876. <P>Return Value: The Attr value as a string, or the empty string if that
  877. attribute does not have a specified or default value.</P>
  878. <P></P>
  879. <DT><STRONG><A NAME="item_setAttribute">setAttribute (name, value)</A></STRONG><BR>
  880. <DD>
  881. Adds a new attribute. If an attribute with that name is
  882. already present in the element, its value is changed to be
  883. that of the value parameter. This value is a simple string,
  884. it is not parsed as it is being set. So any markup (such as
  885. syntax to be recognized as an entity reference) is treated as
  886. literal text, and needs to be appropriately escaped by the
  887. implementation when it is written out. In order to assign an
  888. attribute value that contains entity references, the user
  889. must create an Attr node plus any Text and EntityReference
  890. nodes, build the appropriate subtree, and use
  891. setAttributeNode to assign it as the value of an attribute.
  892. <P>DOMExceptions:</P>
  893. <UL>
  894. <LI><STRONG><A NAME="item_INVALID_CHARACTER_ERR">INVALID_CHARACTER_ERR</A></STRONG><BR>
  895.  
  896. Raised if the specified name contains an invalid character.
  897. <P></P>
  898. <LI><STRONG>NO_MODIFICATION_ALLOWED_ERR</STRONG><BR>
  899.  
  900. Raised if this node is readonly.
  901. <P></P></UL>
  902. <DT><STRONG><A NAME="item_removeAttribute">removeAttribute (name)</A></STRONG><BR>
  903. <DD>
  904. Removes an attribute by name. If the removed attribute has a
  905. default value it is immediately replaced.
  906. <P>DOMExceptions:</P>
  907. <UL>
  908. <LI><STRONG>NO_MODIFICATION_ALLOWED_ERR</STRONG><BR>
  909.  
  910. Raised if this node is readonly.
  911. <P></P></UL>
  912. <DT><STRONG><A NAME="item_getAttributeNode">getAttributeNode</A></STRONG><BR>
  913. <DD>
  914. Retrieves an Attr node by name.
  915. <P>Return Value: The Attr node with the specified attribute name or undef
  916. if there is no such attribute.</P>
  917. <P></P>
  918. <DT><STRONG><A NAME="item_setAttributeNode">setAttributeNode (attr)</A></STRONG><BR>
  919. <DD>
  920. Adds a new attribute. If an attribute with that name is
  921. already present in the element, it is replaced by the new one.
  922. <P>Return Value: If the newAttr attribute replaces an existing attribute
  923. with the same name, the previously existing Attr node is
  924. returned, otherwise undef is returned.</P>
  925. <P>DOMExceptions:</P>
  926. <UL>
  927. <LI><STRONG>WRONG_DOCUMENT_ERR</STRONG><BR>
  928.  
  929. Raised if newAttr was created from a different document than the one that created
  930. the element.
  931. <P></P>
  932. <LI><STRONG>NO_MODIFICATION_ALLOWED_ERR</STRONG><BR>
  933.  
  934. Raised if this node is readonly.
  935. <P></P>
  936. <LI><STRONG>INUSE_ATTRIBUTE_ERR</STRONG><BR>
  937.  
  938. Raised if newAttr is already an attribute of another Element object. The DOM
  939. user must explicitly clone Attr nodes to re-use them in other elements.
  940. <P></P></UL>
  941. <DT><STRONG><A NAME="item_removeAttributeNode">removeAttributeNode (oldAttr)</A></STRONG><BR>
  942. <DD>
  943. Removes the specified attribute. If the removed Attr has a default value it is
  944. immediately replaced. If the Attr already is the default value, nothing happens
  945. and nothing is returned.
  946. <P>Parameters:
  947.  <EM>oldAttr</EM>  The Attr node to remove from the attribute list.</P>
  948. <P>Return Value: The Attr node that was removed.</P>
  949. <P>DOMExceptions:</P>
  950. <UL>
  951. <LI><STRONG>NO_MODIFICATION_ALLOWED_ERR</STRONG><BR>
  952.  
  953. Raised if this node is readonly.
  954. <P></P>
  955. <LI><STRONG>NOT_FOUND_ERR</STRONG><BR>
  956.  
  957. Raised if oldAttr is not an attribute of the element.
  958. <P></P></UL>
  959. </DL>
  960. </DL>
  961. <P>
  962. <H2><A NAME="additional methods not in the dom spec">Additional methods not in the DOM Spec</A></H2>
  963. <DL>
  964. <DT><STRONG><A NAME="item_setTagName">setTagName (newTagName)</A></STRONG><BR>
  965. <DD>
  966. Sets the tag name of the Element. Note that this method is not portable
  967. between DOM implementations.
  968. <P>DOMExceptions:</P>
  969. <UL>
  970. <LI><STRONG>INVALID_CHARACTER_ERR</STRONG><BR>
  971.  
  972. Raised if the specified name contains an invalid character.
  973. <P></P></UL>
  974. </DL>
  975. <DL>
  976. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3AText_extends_XML%3A%3ADOM%3A%3AC">XML::DOM::Text extends XML::DOM::CharacterData</A></STRONG><BR>
  977. <DD>
  978. The Text interface represents the textual content (termed character
  979. data in XML) of an Element or Attr. If there is no markup inside an
  980. element's content, the text is contained in a single object
  981. implementing the Text interface that is the only child of the element.
  982. If there is markup, it is parsed into a list of elements and Text nodes
  983. that form the list of children of the element.
  984. <P>When a document is first made available via the DOM, there is only one
  985. Text node for each block of text. Users may create adjacent Text nodes
  986. that represent the contents of a given element without any intervening
  987. markup, but should be aware that there is no way to represent the
  988. separations between these nodes in XML or HTML, so they will not (in
  989. general) persist between DOM editing sessions. The <A HREF="#item_normalize"><CODE>normalize()</CODE></A> method
  990. on Element merges any such adjacent Text objects into a single node for
  991. each block of text; this is recommended before employing operations
  992. that depend on a particular document structure, such as navigation with
  993. XPointers.</P>
  994. <P><STRONG>Not Implemented</STRONG>: The XML::DOM::Parser converts all CDATASections to regular 
  995. text, so as far as I know, there is know way to preserve them. 
  996. If you add CDATASection nodes to a Document yourself, they will be preserved.</P>
  997. <DL>
  998. <DT><STRONG><A NAME="item_splitText">splitText (offset)</A></STRONG><BR>
  999. <DD>
  1000. Breaks this Text node into two Text nodes at the specified
  1001. offset, keeping both in the tree as siblings. This node then
  1002. only contains all the content up to the offset point. And a
  1003. new Text node, which is inserted as the next sibling of this
  1004. node, contains all the content at and after the offset point.
  1005. <P>Parameters:
  1006.  <EM>offset</EM>  The offset at which to split, starting from 0.</P>
  1007. <P>Return Value: The new Text node.</P>
  1008. <P>DOMExceptions:</P>
  1009. <UL>
  1010. <LI><STRONG><A NAME="item_INDEX_SIZE_ERR">INDEX_SIZE_ERR</A></STRONG><BR>
  1011.  
  1012. Raised if the specified offset is negative or greater than the number of 
  1013. characters in data.
  1014. <P></P>
  1015. <LI><STRONG>NO_MODIFICATION_ALLOWED_ERR</STRONG><BR>
  1016.  
  1017. Raised if this node is readonly.
  1018. <P></P></UL>
  1019. </DL>
  1020. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3AComment_extends_XML%3A%3ADOM%3A%">XML::DOM::Comment extends XML::DOM::CharacterData</A></STRONG><BR>
  1021. <DD>
  1022. This represents the content of a comment, i.e., all the characters
  1023. between the starting '<!--' and ending '-->'. Note that this is the
  1024. definition of a comment in XML, and, in practice, HTML, although some
  1025. HTML tools may implement the full SGML comment structure.
  1026. <P></P>
  1027. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3ACDATASection_extends_XML%3A%3ADO">XML::DOM::CDATASection extends XML::DOM::CharacterData</A></STRONG><BR>
  1028. <DD>
  1029. CDATA sections are used to escape blocks of text containing characters
  1030. that would otherwise be regarded as markup. The only delimiter that is
  1031. recognized in a CDATA section is the ``]]>'' string that ends the CDATA
  1032. section. CDATA sections can not be nested. The primary purpose is for
  1033. including material such as XML fragments, without needing to escape all
  1034. the delimiters.
  1035. <P>The DOMString attribute of the Text node holds the text that is
  1036. contained by the CDATA section. Note that this may contain characters
  1037. that need to be escaped outside of CDATA sections and that, depending
  1038. on the character encoding (``charset'') chosen for serialization, it may
  1039. be impossible to write out some characters as part of a CDATA section.</P>
  1040. <P>The CDATASection interface inherits the CharacterData interface through
  1041. the Text interface. Adjacent CDATASections nodes are not merged by use
  1042. of the Element.normalize() method.</P>
  1043. <P><STRONG>Not Implemented</STRONG>: see Text node comments about CDATASections being converted 
  1044. to Text nodes when parsing XML input.</P>
  1045. <P></P>
  1046. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3AProcessingInstruction_extends_XM">XML::DOM::ProcessingInstruction extends XML::DOM::Node</A></STRONG><BR>
  1047. <DD>
  1048. The ProcessingInstruction interface represents a ``processing
  1049. instruction'', used in XML as a way to keep processor-specific
  1050. information in the text of the document. An example:
  1051. <PRE>
  1052.  <?PI processing instruction?></PRE>
  1053. <P>Here, ``PI'' is the target and ``processing instruction'' is the data.</P>
  1054. <DL>
  1055. <DT><STRONG><A NAME="item_getTarget">getTarget</A></STRONG><BR>
  1056. <DD>
  1057. The target of this processing instruction. XML defines this
  1058. as being the first token following the markup that begins the
  1059. processing instruction.
  1060. <P></P>
  1061. <DT><STRONG>getData and setData (data)</STRONG><BR>
  1062. <DD>
  1063. The content of this processing instruction. This is from the
  1064. first non white space character after the target to the
  1065. character immediately preceding the ?>.
  1066. <P></P></DL>
  1067. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3ANotation_extends_XML%3A%3ADOM%3A">XML::DOM::Notation extends XML::DOM::Node</A></STRONG><BR>
  1068. <DD>
  1069. This node represents a Notation, e.g.
  1070. <PRE>
  1071.  <!NOTATION gs SYSTEM "GhostScript"></PRE>
  1072. <PRE>
  1073.  <!NOTATION name PUBLIC "pubId"></PRE>
  1074. <PRE>
  1075.  <!NOTATION name PUBLIC "pubId" "sysId"></PRE>
  1076. <PRE>
  1077.  <!NOTATION name SYSTEM "sysId"></PRE>
  1078. <DL>
  1079. <DT><STRONG><A NAME="item_setName">getName and setName (name)</A></STRONG><BR>
  1080. <DD>
  1081. Returns (or sets) the Notation name, which is the first token after the 
  1082. NOTATION keyword.
  1083. <P></P>
  1084. <DT><STRONG><A NAME="item_setSysId">getSysId and setSysId (sysId)</A></STRONG><BR>
  1085. <DD>
  1086. Returns (or sets) the system ID, which is the token after the optional
  1087. SYSTEM keyword.
  1088. <P></P>
  1089. <DT><STRONG><A NAME="item_setPubId">getPubId and setPubId (pubId)</A></STRONG><BR>
  1090. <DD>
  1091. Returns (or sets) the public ID, which is the token after the optional
  1092. PUBLIC keyword.
  1093. <P></P>
  1094. <DT><STRONG><A NAME="item_getBase">getBase</A></STRONG><BR>
  1095. <DD>
  1096. This is passed by XML::Parser in the Notation handler. 
  1097. I don't know what it is yet.
  1098. <P></P>
  1099. <DT><STRONG>getNodeName</STRONG><BR>
  1100. <DD>
  1101. Returns the same as getName.
  1102. <P></P></DL>
  1103. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3AEntity_extends_XML%3A%3ADOM%3A%3">XML::DOM::Entity extends XML::DOM::Node</A></STRONG><BR>
  1104. <DD>
  1105. This node represents an Entity declaration, e.g.
  1106. <PRE>
  1107.  <!ENTITY % draft 'INCLUDE'></PRE>
  1108. <PRE>
  1109.  <!ENTITY hatch-pic SYSTEM "../grafix/OpenHatch.gif" NDATA gif></PRE>
  1110. <P>The first one is called a parameter entity and is referenced like this: %draft;
  1111. The 2nd is a (regular) entity and is referenced like this: &hatch-pic;</P>
  1112. <DL>
  1113. <DT><STRONG><A NAME="item_getNotationName">getNotationName</A></STRONG><BR>
  1114. <DD>
  1115. Returns the name of the notation for the entity.
  1116. <P><EM>Not Implemented</EM> The DOM Spec says: For unparsed entities, the name of the 
  1117. notation for the entity. For parsed entities, this is null.
  1118. (This implementation does not support unparsed entities.)</P>
  1119. <P></P>
  1120. <DT><STRONG><A NAME="item_getSysId">getSysId</A></STRONG><BR>
  1121. <DD>
  1122. Returns the system id, or undef.
  1123. <P></P>
  1124. <DT><STRONG><A NAME="item_getPubId">getPubId</A></STRONG><BR>
  1125. <DD>
  1126. Returns the public id, or undef.
  1127. <P></P></DL>
  1128. </DL>
  1129. <P>
  1130. <H2><A NAME="additional methods not in the dom spec">Additional methods not in the DOM Spec</A></H2>
  1131. <DL>
  1132. <DT><STRONG><A NAME="item_isParameterEntity">isParameterEntity</A></STRONG><BR>
  1133. <DD>
  1134. Whether it is a parameter entity (%ent;) or not (&ent;)
  1135. <P></P>
  1136. <DT><STRONG>getValue</STRONG><BR>
  1137. <DD>
  1138. Returns the entity value.
  1139. <P></P>
  1140. <DT><STRONG><A NAME="item_getNdata">getNdata</A></STRONG><BR>
  1141. <DD>
  1142. Returns the NDATA declaration (for general unparsed entities), or undef.
  1143. <P></P></DL>
  1144. <DL>
  1145. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3ADocumentType_extends_XML%3A%3ADO">XML::DOM::DocumentType extends XML::DOM::Node</A></STRONG><BR>
  1146. <DD>
  1147. Each Document has a doctype attribute whose value is either null or a
  1148. DocumentType object. The DocumentType interface in the DOM Level 1 Core
  1149. provides an interface to the list of entities that are defined for the
  1150. document, and little else because the effect of namespaces and the
  1151. various XML scheme efforts on DTD representation are not clearly
  1152. understood as of this writing. 
  1153. The DOM Level 1 doesn't support editing DocumentType nodes.
  1154. <P><STRONG>Not In DOM Spec</STRONG>: This implementation has added a lot of extra 
  1155. functionality to the DOM Level 1 interface. 
  1156. To allow editing of the DocumentType nodes, see XML::DOM::ignoreReadOnly.</P>
  1157. <DL>
  1158. <DT><STRONG>getName</STRONG><BR>
  1159. <DD>
  1160. Returns the name of the DTD, i.e. the name immediately following the
  1161. DOCTYPE keyword.
  1162. <P></P>
  1163. <DT><STRONG><A NAME="item_getEntities">getEntities</A></STRONG><BR>
  1164. <DD>
  1165. A NamedNodeMap containing the general entities, both external
  1166. and internal, declared in the DTD. Duplicates are discarded.
  1167. For example in:
  1168. <PRE>
  1169.  <!DOCTYPE ex SYSTEM "ex.dtd" [
  1170.   <!ENTITY foo "foo">
  1171.   <!ENTITY bar "bar">
  1172.   <!ENTITY % baz "baz">
  1173.  ]>
  1174.  <ex/></PRE>
  1175. <P>the interface provides access to foo and bar but not baz.
  1176. Every node in this map also implements the Entity interface.</P>
  1177. <P>The DOM Level 1 does not support editing entities, therefore
  1178. entities cannot be altered in any way.</P>
  1179. <P><STRONG>Not In DOM Spec</STRONG>: See XML::DOM::ignoreReadOnly to edit the DocumentType etc.</P>
  1180. <P></P>
  1181. <DT><STRONG><A NAME="item_getNotations">getNotations</A></STRONG><BR>
  1182. <DD>
  1183. A NamedNodeMap containing the notations declared in the DTD.
  1184. Duplicates are discarded. Every node in this map also
  1185. implements the Notation interface.
  1186. <P>The DOM Level 1 does not support editing notations, therefore
  1187. notations cannot be altered in any way.</P>
  1188. <P><STRONG>Not In DOM Spec</STRONG>: See XML::DOM::ignoreReadOnly to edit the DocumentType etc.</P>
  1189. <P></P></DL>
  1190. </DL>
  1191. <P>
  1192. <H2><A NAME="additional methods not in the dom spec">Additional methods not in the DOM Spec</A></H2>
  1193. <DL>
  1194. <DT><STRONG><A NAME="item_Creating_and_setting_the_DocumentType">Creating and setting the DocumentType</A></STRONG><BR>
  1195. <DD>
  1196. A new DocumentType can be created with:
  1197. <PRE>
  1198.         $doctype = $doc->createDocumentType ($name, $sysId, $pubId, $internal);</PRE>
  1199. <P>To set (or replace) the DocumentType for a particular document, use:</P>
  1200. <PRE>
  1201.         $doc->setDocType ($doctype);</PRE>
  1202. <P></P>
  1203. <DT><STRONG>getSysId and setSysId (sysId)</STRONG><BR>
  1204. <DD>
  1205. Returns or sets the system id.
  1206. <P></P>
  1207. <DT><STRONG>getPubId and setPubId (pudId)</STRONG><BR>
  1208. <DD>
  1209. Returns or sets the public id.
  1210. <P></P>
  1211. <DT><STRONG>setName (name)</STRONG><BR>
  1212. <DD>
  1213. Sets the name of the DTD, i.e. the name immediately following the
  1214. DOCTYPE keyword. Note that this should always be the same as the element
  1215. tag name of the root element.
  1216. <P></P>
  1217. <DT><STRONG><A NAME="item_getAttlistDecl">getAttlistDecl (elemName)</A></STRONG><BR>
  1218. <DD>
  1219. Returns the AttlistDecl for the Element with the specified name, or undef.
  1220. <P></P>
  1221. <DT><STRONG><A NAME="item_getElementDecl">getElementDecl (elemName)</A></STRONG><BR>
  1222. <DD>
  1223. Returns the ElementDecl for the Element with the specified name, or undef.
  1224. <P></P>
  1225. <DT><STRONG><A NAME="item_getEntity">getEntity (entityName)</A></STRONG><BR>
  1226. <DD>
  1227. Returns the Entity with the specified name, or undef.
  1228. <P></P>
  1229. <DT><STRONG><A NAME="item_addAttlistDecl">addAttlistDecl (elemName)</A></STRONG><BR>
  1230. <DD>
  1231. Adds a new AttDecl node with the specified elemName if one doesn't exist yet.
  1232. Returns the AttlistDecl (new or existing) node.
  1233. <P></P>
  1234. <DT><STRONG><A NAME="item_addElementDecl">addElementDecl (elemName, model)</A></STRONG><BR>
  1235. <DD>
  1236. Adds a new ElementDecl node with the specified elemName and model if one doesn't 
  1237. exist yet.
  1238. Returns the AttlistDecl (new or existing) node. The model is ignored if one
  1239. already existed.
  1240. <P></P>
  1241. <DT><STRONG><A NAME="item_addEntity">addEntity (parameter, notationName, value, sysId, pubId, ndata)</A></STRONG><BR>
  1242. <DD>
  1243. Adds a new Entity node. Don't use createEntity and appendChild, because it should
  1244. be added to the internal NamedNodeMap containing the entities.
  1245. <P>Parameters:
  1246.  <EM>parameter</EM>     whether it is a parameter entity (%ent;) or not (&ent;).
  1247.  <EM>notationName</EM> the entity name.
  1248.  <EM>value</EM>        the entity value.
  1249.  <EM>sysId</EM>        the system id (if any.)
  1250.  <EM>pubId</EM>        the public id (if any.)
  1251.  <EM>ndata</EM>        the NDATA declaration (if any, for general unparsed entities.)</P>
  1252. <P>SysId, pubId and ndata may be undefined.</P>
  1253. <P>DOMExceptions:</P>
  1254. <UL>
  1255. <LI><STRONG>INVALID_CHARACTER_ERR</STRONG><BR>
  1256.  
  1257. Raised if the notationName does not conform to the XML spec.
  1258. <P></P></UL>
  1259. <DT><STRONG><A NAME="item_addNotation">addNotation (name, base, sysId, pubId)</A></STRONG><BR>
  1260. <DD>
  1261. Adds a new Notation object.
  1262. <P>Parameters:
  1263.  <EM>name</EM>   the notation name.
  1264.  <EM>base</EM>   the base to be used for resolving a relative URI.
  1265.  <EM>sysId</EM>  the system id.
  1266.  <EM>pubId</EM>  the public id.</P>
  1267. <P>Base, sysId, and pubId may all be undefined.
  1268. (These parameters are passed by the XML::Parser Notation handler.)</P>
  1269. <P>DOMExceptions:</P>
  1270. <UL>
  1271. <LI><STRONG>INVALID_CHARACTER_ERR</STRONG><BR>
  1272.  
  1273. Raised if the notationName does not conform to the XML spec.
  1274. <P></P></UL>
  1275. <DT><STRONG><A NAME="item_addAttDef">addAttDef (elemName, attrName, type, default, fixed)</A></STRONG><BR>
  1276. <DD>
  1277. Adds a new attribute definition. It will add the AttDef node to the AttlistDecl
  1278. if it exists. If an AttDef with the specified attrName already exists for the
  1279. given elemName, this function only generates a warning.
  1280. <P>See XML::DOM::AttDef::new for the other parameters.</P>
  1281. <P></P>
  1282. <DT><STRONG><A NAME="item_getDefaultAttrValue">getDefaultAttrValue (elem, attr)</A></STRONG><BR>
  1283. <DD>
  1284. Returns the default attribute value as a string or undef, if none is available.
  1285. <P>Parameters:
  1286.  <EM>elem</EM>    The element tagName.
  1287.  <EM>attr</EM>    The attribute name.</P>
  1288. <P></P>
  1289. <DT><STRONG><A NAME="item_expandEntity">expandEntity (entity [, parameter])</A></STRONG><BR>
  1290. <DD>
  1291. Expands the specified entity or parameter entity (if parameter=1) and returns
  1292. its value as a string, or undef if the entity does not exist.
  1293. (The entity name should not contain the '%', '&' or ';' delimiters.)
  1294. <P></P></DL>
  1295. <DL>
  1296. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3ADocumentFragment_extends_XML%3A%">XML::DOM::DocumentFragment extends XML::DOM::Node</A></STRONG><BR>
  1297. <DD>
  1298. DocumentFragment is a ``lightweight'' or ``minimal'' Document object. It is
  1299. very common to want to be able to extract a portion of a document's
  1300. tree or to create a new fragment of a document. Imagine implementing a
  1301. user command like cut or rearranging a document by moving fragments
  1302. around. It is desirable to have an object which can hold such fragments
  1303. and it is quite natural to use a Node for this purpose. While it is
  1304. true that a Document object could fulfil this role, a Document object
  1305. can potentially be a heavyweight object, depending on the underlying
  1306. implementation. What is really needed for this is a very lightweight
  1307. object. DocumentFragment is such an object.
  1308. <P>Furthermore, various operations -- such as inserting nodes as children
  1309. of another Node -- may take DocumentFragment objects as arguments; this
  1310. results in all the child nodes of the DocumentFragment being moved to
  1311. the child list of this node.</P>
  1312. <P>The children of a DocumentFragment node are zero or more nodes
  1313. representing the tops of any sub-trees defining the structure of the
  1314. document. DocumentFragment nodes do not need to be well-formed XML
  1315. documents (although they do need to follow the rules imposed upon
  1316. well-formed XML parsed entities, which can have multiple top nodes).
  1317. For example, a DocumentFragment might have only one child and that
  1318. child node could be a Text node. Such a structure model represents
  1319. neither an HTML document nor a well-formed XML document.</P>
  1320. <P>When a DocumentFragment is inserted into a Document (or indeed any
  1321. other Node that may take children) the children of the DocumentFragment
  1322. and not the DocumentFragment itself are inserted into the Node. This
  1323. makes the DocumentFragment very useful when the user wishes to create
  1324. nodes that are siblings; the DocumentFragment acts as the parent of
  1325. these nodes so that the user can use the standard methods from the Node
  1326. interface, such as <A HREF="#item_insertBefore"><CODE>insertBefore()</CODE></A> and appendChild().</P>
  1327. <P></P>
  1328. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3ADOMImplementation">XML::DOM::DOMImplementation</A></STRONG><BR>
  1329. <DD>
  1330. The DOMImplementation interface provides a number of methods for
  1331. performing operations that are independent of any particular instance
  1332. of the document object model.
  1333. <P>The DOM Level 1 does not specify a way of creating a document instance,
  1334. and hence document creation is an operation specific to an
  1335. implementation. Future Levels of the DOM specification are expected to
  1336. provide methods for creating documents directly.</P>
  1337. <DL>
  1338. <DT><STRONG><A NAME="item_hasFeature">hasFeature (feature, version)</A></STRONG><BR>
  1339. <DD>
  1340. Returns 1 if and only if feature equals ``XML'' and version equals ``1.0''.
  1341. <P></P></DL>
  1342. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3ADocument_extends_XML%3A%3ADOM%3A">XML::DOM::Document extends XML::DOM::Node</A></STRONG><BR>
  1343. <DD>
  1344. This is the main root of the document structure as returned by 
  1345. XML::DOM::Parser::parse and XML::DOM::Parser::parsefile.
  1346. <P>Since elements, text nodes, comments, processing instructions, etc.
  1347. cannot exist outside the context of a Document, the Document interface
  1348. also contains the factory methods needed to create these objects. The
  1349. Node objects created have a getOwnerDocument method which associates
  1350. them with the Document within whose context they were created.</P>
  1351. <DL>
  1352. <DT><STRONG><A NAME="item_getDocumentElement">getDocumentElement</A></STRONG><BR>
  1353. <DD>
  1354. This is a convenience method that allows direct access to
  1355. the child node that is the root Element of the document.
  1356. <P></P>
  1357. <DT><STRONG><A NAME="item_getDoctype">getDoctype</A></STRONG><BR>
  1358. <DD>
  1359. The Document Type Declaration (see DocumentType) associated
  1360. with this document. For HTML documents as well as XML
  1361. documents without a document type declaration this returns
  1362. undef. The DOM Level 1 does not support editing the Document
  1363. Type Declaration.
  1364. <P><STRONG>Not In DOM Spec</STRONG>: This implementation allows editing the doctype. 
  1365. See <EM>XML::DOM::ignoreReadOnly</EM> for details.</P>
  1366. <P></P>
  1367. <DT><STRONG><A NAME="item_getImplementation">getImplementation</A></STRONG><BR>
  1368. <DD>
  1369. The DOMImplementation object that handles this document. A
  1370. DOM application may use objects from multiple implementations.
  1371. <P></P>
  1372. <DT><STRONG><A NAME="item_createElement">createElement (tagName)</A></STRONG><BR>
  1373. <DD>
  1374. Creates an element of the type specified. Note that the
  1375. instance returned implements the Element interface, so
  1376. attributes can be specified directly on the returned object.
  1377. <P>DOMExceptions:</P>
  1378. <UL>
  1379. <LI><STRONG>INVALID_CHARACTER_ERR</STRONG><BR>
  1380.  
  1381. Raised if the tagName does not conform to the XML spec.
  1382. <P></P></UL>
  1383. <DT><STRONG><A NAME="item_createTextNode">createTextNode (data)</A></STRONG><BR>
  1384. <DD>
  1385. Creates a Text node given the specified string.
  1386. <P></P>
  1387. <DT><STRONG><A NAME="item_createComment">createComment (data)</A></STRONG><BR>
  1388. <DD>
  1389. Creates a Comment node given the specified string.
  1390. <P></P>
  1391. <DT><STRONG><A NAME="item_createCDATASection">createCDATASection (data)</A></STRONG><BR>
  1392. <DD>
  1393. Creates a CDATASection node given the specified string.
  1394. <P></P>
  1395. <DT><STRONG><A NAME="item_createAttribute">createAttribute (name [, value [, specified ]])</A></STRONG><BR>
  1396. <DD>
  1397. Creates an Attr of the given name. Note that the Attr
  1398. instance can then be set on an Element using the setAttribute method.
  1399. <P><STRONG>Not In DOM Spec</STRONG>: The DOM Spec does not allow passing the value or the 
  1400. specified property in this method. In this implementation they are optional.</P>
  1401. <P>Parameters:
  1402.  <EM>value</EM>     The attribute's value. See Attr::setValue for details.
  1403.               If the value is not supplied, the specified property is set to 0.
  1404.  <EM>specified</EM> Whether the attribute value was specified or whether the default
  1405.               value was used. If not supplied, it's assumed to be 1.</P>
  1406. <P>DOMExceptions:</P>
  1407. <UL>
  1408. <LI><STRONG>INVALID_CHARACTER_ERR</STRONG><BR>
  1409.  
  1410. Raised if the name does not conform to the XML spec.
  1411. <P></P></UL>
  1412. <DT><STRONG><A NAME="item_createProcessingInstruction">createProcessingInstruction (target, data)</A></STRONG><BR>
  1413. <DD>
  1414. Creates a ProcessingInstruction node given the specified name and data strings.
  1415. <P>Parameters:
  1416.  <EM>target</EM>  The target part of the processing instruction.
  1417.  <EM>data</EM>    The data for the node.</P>
  1418. <P>DOMExceptions:</P>
  1419. <UL>
  1420. <LI><STRONG>INVALID_CHARACTER_ERR</STRONG><BR>
  1421.  
  1422. Raised if the target does not conform to the XML spec.
  1423. <P></P></UL>
  1424. <DT><STRONG><A NAME="item_createDocumentFragment">createDocumentFragment</A></STRONG><BR>
  1425. <DD>
  1426. Creates an empty DocumentFragment object.
  1427. <P></P>
  1428. <DT><STRONG><A NAME="item_createEntityReference">createEntityReference (name)</A></STRONG><BR>
  1429. <DD>
  1430. Creates an EntityReference object.
  1431. <P></P></DL>
  1432. </DL>
  1433. <P>
  1434. <H2><A NAME="additional methods not in the dom spec">Additional methods not in the DOM Spec</A></H2>
  1435. <DL>
  1436. <DT><STRONG><A NAME="item_setXMLDecl">getXMLDecl and setXMLDecl (xmlDecl)</A></STRONG><BR>
  1437. <DD>
  1438. Returns the XMLDecl for this Document or undef if none was specified.
  1439. Note that XMLDecl is not part of the list of child nodes.
  1440. <P></P>
  1441. <DT><STRONG><A NAME="item_setDoctype">setDoctype (doctype)</A></STRONG><BR>
  1442. <DD>
  1443. Sets or replaces the DocumentType. 
  1444. <STRONG>NOTE</STRONG>: Don't use appendChild or insertBefore to set the DocumentType.
  1445. Even though doctype will be part of the list of child nodes, it is handled
  1446. specially.
  1447. <P></P>
  1448. <DT><STRONG>getDefaultAttrValue (elem, attr)</STRONG><BR>
  1449. <DD>
  1450. Returns the default attribute value as a string or undef, if none is available.
  1451. <P>Parameters:
  1452.  <EM>elem</EM>    The element tagName.
  1453.  <EM>attr</EM>    The attribute name.</P>
  1454. <P></P>
  1455. <DT><STRONG>getEntity (name)</STRONG><BR>
  1456. <DD>
  1457. Returns the Entity with the specified name.
  1458. <P></P>
  1459. <DT><STRONG><A NAME="item_createXMLDecl">createXMLDecl (version, encoding, standalone)</A></STRONG><BR>
  1460. <DD>
  1461. Creates an XMLDecl object. All parameters may be undefined.
  1462. <P></P>
  1463. <DT><STRONG><A NAME="item_createDocumentType">createDocumentType (name, sysId, pubId)</A></STRONG><BR>
  1464. <DD>
  1465. Creates a DocumentType object. SysId and pubId may be undefined.
  1466. <P></P>
  1467. <DT><STRONG><A NAME="item_createNotation">createNotation (name, base, sysId, pubId)</A></STRONG><BR>
  1468. <DD>
  1469. Creates a new Notation object. Consider using 
  1470. XML::DOM::DocumentType::addNotation!
  1471. <P></P>
  1472. <DT><STRONG><A NAME="item_createEntity">createEntity (parameter, notationName, value, sysId, pubId, ndata)</A></STRONG><BR>
  1473. <DD>
  1474. Creates an Entity object. Consider using XML::DOM::DocumentType::addEntity!
  1475. <P></P>
  1476. <DT><STRONG><A NAME="item_createElementDecl">createElementDecl (name, model)</A></STRONG><BR>
  1477. <DD>
  1478. Creates an ElementDecl object.
  1479. <P>DOMExceptions:</P>
  1480. <UL>
  1481. <LI><STRONG>INVALID_CHARACTER_ERR</STRONG><BR>
  1482.  
  1483. Raised if the element name (tagName) does not conform to the XML spec.
  1484. <P></P></UL>
  1485. <DT><STRONG><A NAME="item_createAttlistDecl">createAttlistDecl (name)</A></STRONG><BR>
  1486. <DD>
  1487. Creates an AttlistDecl object.
  1488. <P>DOMExceptions:</P>
  1489. <UL>
  1490. <LI><STRONG>INVALID_CHARACTER_ERR</STRONG><BR>
  1491.  
  1492. Raised if the element name (tagName) does not conform to the XML spec.
  1493. <P></P></UL>
  1494. <DT><STRONG>expandEntity (entity [, parameter])</STRONG><BR>
  1495. <DD>
  1496. Expands the specified entity or parameter entity (if parameter=1) and returns
  1497. its value as a string, or undef if the entity does not exist.
  1498. (The entity name should not contain the '%', '&' or ';' delimiters.)
  1499. <P></P></DL>
  1500. <P>
  1501. <HR>
  1502. <H1><A NAME="extra node types">EXTRA NODE TYPES</A></H1>
  1503. <DL>
  1504. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3AXMLDecl_extends_XML%3A%3ADOM%3A%">XML::DOM::XMLDecl extends XML::DOM::Node</A></STRONG><BR>
  1505. <DD>
  1506. This node contains the XML declaration, e.g.
  1507. <PRE>
  1508.  <?xml version="1.0" encoding="UTF-16" standalone="yes"?></PRE>
  1509. <P>See also XML::DOM::Document::getXMLDecl.</P>
  1510. <DL>
  1511. <DT><STRONG><A NAME="item_setVersion">getVersion and setVersion (version)</A></STRONG><BR>
  1512. <DD>
  1513. Returns and sets the XML version. At the time of this writing the version should
  1514. always be ``1.0''
  1515. <P></P>
  1516. <DT><STRONG><A NAME="item_setEncoding">getEncoding and setEncoding (encoding)</A></STRONG><BR>
  1517. <DD>
  1518. undef may be specified for the encoding value.
  1519. <P></P>
  1520. <DT><STRONG><A NAME="item_setStandalone">getStandalone and setStandalone (standalone)</A></STRONG><BR>
  1521. <DD>
  1522. undef may be specified for the standalone value.
  1523. <P></P></DL>
  1524. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3AElementDecl_extends_XML%3A%3ADOM">XML::DOM::ElementDecl extends XML::DOM::Node</A></STRONG><BR>
  1525. <DD>
  1526. This node represents an Element declaration, e.g.
  1527. <PRE>
  1528.  <!ELEMENT address (street+, city, state, zip, country?)></PRE>
  1529. <DL>
  1530. <DT><STRONG>getName</STRONG><BR>
  1531. <DD>
  1532. Returns the Element tagName.
  1533. <P></P>
  1534. <DT><STRONG><A NAME="item_setModel">getModel and setModel (model)</A></STRONG><BR>
  1535. <DD>
  1536. Returns and sets the model as a string, e.g. 
  1537. ``(street+, city, state, zip, country?)'' in the above example.
  1538. <P></P></DL>
  1539. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3AAttlistDecl_extends_XML%3A%3ADOM">XML::DOM::AttlistDecl extends XML::DOM::Node</A></STRONG><BR>
  1540. <DD>
  1541. This node represents an ATTLIST declaration, e.g.
  1542. <PRE>
  1543.  <!ATTLIST person
  1544.    sex      (male|female)  #REQUIRED
  1545.    hair     CDATA          "bold"
  1546.    eyes     (none|one|two) "two"
  1547.    species  (human)        #FIXED "human"></PRE>
  1548. <P>Each attribute definition is stored a separate AttDef node. The AttDef nodes can
  1549. be retrieved with getAttDef and added with addAttDef.
  1550. (The AttDef nodes are stored in a NamedNodeMap internally.)</P>
  1551. <DL>
  1552. <DT><STRONG>getName</STRONG><BR>
  1553. <DD>
  1554. Returns the Element tagName.
  1555. <P></P>
  1556. <DT><STRONG><A NAME="item_getAttDef">getAttDef (attrName)</A></STRONG><BR>
  1557. <DD>
  1558. Returns the AttDef node for the attribute with the specified name.
  1559. <P></P>
  1560. <DT><STRONG>addAttDef (attrName, type, default, [ fixed ])</STRONG><BR>
  1561. <DD>
  1562. Adds a AttDef node for the attribute with the specified name.
  1563. <P>Parameters:
  1564.  <EM>attrName</EM> the attribute name.
  1565.  <EM>type</EM>     the attribute type (e.g. ``CDATA'' or ``(male|female)''.)
  1566.  <EM>default</EM>  the default value enclosed in quotes (!), the string #IMPLIED or 
  1567.              the string #REQUIRED.
  1568.  <EM>fixed</EM>    whether the attribute is '#FIXED' (default is 0.)</P>
  1569. <P></P></DL>
  1570. <DT><STRONG><A NAME="item_XML%3A%3ADOM%3A%3AAttDef_extends_XML%3A%3ADOM%3A%3">XML::DOM::AttDef extends XML::DOM::Node</A></STRONG><BR>
  1571. <DD>
  1572. Each object of this class represents one attribute definition in an AttlistDecl.
  1573. <DL>
  1574. <DT><STRONG>getName</STRONG><BR>
  1575. <DD>
  1576. Returns the attribute name.
  1577. <P></P>
  1578. <DT><STRONG><A NAME="item_getDefault">getDefault</A></STRONG><BR>
  1579. <DD>
  1580. Returns the default value, or undef.
  1581. <P></P>
  1582. <DT><STRONG><A NAME="item_isFixed">isFixed</A></STRONG><BR>
  1583. <DD>
  1584. Whether the attribute value is fixed (see #FIXED keyword.)
  1585. <P></P>
  1586. <DT><STRONG><A NAME="item_isRequired">isRequired</A></STRONG><BR>
  1587. <DD>
  1588. Whether the attribute value is required (see #REQUIRED keyword.)
  1589. <P></P>
  1590. <DT><STRONG><A NAME="item_isImplied">isImplied</A></STRONG><BR>
  1591. <DD>
  1592. Whether the attribute value is implied (see #IMPLIED keyword.)
  1593. <P></P></DL>
  1594. </DL>
  1595. <P>
  1596. <HR>
  1597. <H1><A NAME="implementation details">IMPLEMENTATION DETAILS</A></H1>
  1598. <UL>
  1599. <LI><STRONG><A NAME="item_Perl_Mappings">Perl Mappings</A></STRONG><BR>
  1600.  
  1601. The value undef was used when the DOM Spec said null.
  1602. <P>The DOM Spec says: Applications must encode DOMString using UTF-16 (defined in 
  1603. Appendix C.3 of [UNICODE] and Amendment 1 of [ISO-10646]).
  1604. In this implementation we use plain old Perl strings encoded in UTF-8 instead of
  1605. UTF-16.</P>
  1606. <P></P>
  1607. <LI><STRONG><A NAME="item_Text_and_CDATASection_nodes">Text and CDATASection nodes</A></STRONG><BR>
  1608.  
  1609. The Expat parser expands EntityReferences and CDataSection sections to 
  1610. raw strings and does not indicate where it was found. 
  1611. This implementation does therefore convert both to Text nodes at parse time.
  1612. CDATASection and EntityReference nodes that are added to an existing Document 
  1613. (by the user) will be preserved.
  1614. <P>Also, subsequent Text nodes are always merged at parse time. Text nodes that are 
  1615. added later can be merged with the normalize method. Consider using the addText
  1616. method when adding Text nodes.</P>
  1617. <P></P>
  1618. <LI><STRONG><A NAME="item_Printing_and_toString">Printing and toString</A></STRONG><BR>
  1619.  
  1620. When printing (and converting an XML Document to a string) the strings have to 
  1621. encoded differently depending on where they occur. E.g. in a CDATASection all 
  1622. substrings are allowed except for ``]]>''. In regular text, certain characters are
  1623. not allowed, e.g. ``>'' has to be converted to ``&gt;''. 
  1624. These routines should be verified by someone who knows the details.
  1625. <P></P>
  1626. <LI><STRONG><A NAME="item_Quotes">Quotes</A></STRONG><BR>
  1627.  
  1628. Certain sections in XML are quoted, like attribute values in an Element.
  1629. XML::Parser strips these quotes and the print methods in this implementation 
  1630. always uses double quotes, so when parsing and printing a document, single quotes
  1631. may be converted to double quotes. The default value of an attribute definition
  1632. (AttDef) in an AttlistDecl, however, will maintain its quotes.
  1633. <P></P>
  1634. <LI><STRONG><A NAME="item_AttlistDecl">AttlistDecl</A></STRONG><BR>
  1635.  
  1636. Attribute declarations for a certain Element are always merged into a single
  1637. AttlistDecl object.
  1638. <P></P>
  1639. <LI><STRONG><A NAME="item_Comments">Comments</A></STRONG><BR>
  1640.  
  1641. Comments in the DOCTYPE section are not kept in the right place. They will become
  1642. child nodes of the Document.
  1643. <P></P></UL>
  1644. <P>
  1645. <HR>
  1646. <H1><A NAME="see also">SEE ALSO</A></H1>
  1647. <P>The Japanese version of this document by Takanori Kawai (Hippo2000)
  1648. at <A HREF="http://member.nifty.ne.jp/hippo2000/perltips/xml/dom.htm">http://member.nifty.ne.jp/hippo2000/perltips/xml/dom.htm</A></P>
  1649. <P>The DOM Level 1 specification at <A HREF="http://www.w3.org/TR/REC-DOM-Level-1">http://www.w3.org/TR/REC-DOM-Level-1</A></P>
  1650. <P>The XML spec (Extensible Markup Language 1.0) at <A HREF="http://www.w3.org/TR/REC-xml">http://www.w3.org/TR/REC-xml</A></P>
  1651. <P>The XML::Parser and XML::Parser::Expat manual pages.</P>
  1652. <P>
  1653. <HR>
  1654. <H1><A NAME="caveats">CAVEATS</A></H1>
  1655. <P>The method <A HREF="#item_getElementsByTagName"><CODE>getElementsByTagName()</CODE></A> does not return a ``live'' NodeList.
  1656. Whether this is an actual caveat is debatable, but a few people on the 
  1657. www-dom mailing list seemed to think so. I haven't decided yet. It's a pain
  1658. to implement, it slows things down and the benefits seem marginal.
  1659. Let me know what you think.</P>
  1660. <P>(To subscribe to the www-dom mailing list send an email with the subject 
  1661. ``subscribe'' to <A HREF="mailto:www-dom-request@w3.org.">www-dom-request@w3.org.</A> I only look here occasionally, so don't
  1662. send bug reports or suggestions about XML::DOM to this list, send them
  1663. to <A HREF="mailto:enno@att.com">enno@att.com</A> instead.)</P>
  1664. <P>
  1665. <HR>
  1666. <H1><A NAME="authors">AUTHORS</A></H1>
  1667. <P>Enno Derksen <<EM><A HREF="mailto:enno@att.com">enno@att.com</A></EM>> and Clark Cooper <<EM><A HREF="mailto:coopercl@sch.ge.com">coopercl@sch.ge.com</A></EM>>.
  1668. Please send bugs, comments and suggestions to Enno.</P>
  1669. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  1670. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  1671. <STRONG><P CLASS=block> XML::DOM - A perl module for building DOM Level 1 compliant document structures</P></STRONG>
  1672. </TD></TR>
  1673. </TABLE>
  1674.  
  1675. </BODY>
  1676.  
  1677. </HTML>
  1678.