Represents a full XML document, including PIs, a doctype, etc. A Document has a single child that can be accessed
by root(). Note that if you want to have an XML declaration written for a
document you create, you must add one; REXML
documents do not write a default declaration for you. See |DECLARATION| and
|write|.
Constructor @param source if supplied, must be a Document, String, or IO. Documents have their
context and Element attributes cloned. Strings
are expected to be valid XML documents. IOs are expected to be sources of
valid XML documents. @param context if supplied, contains the context of
the document; this should be a Hash. NOTE that I'm not sure what the
context is for; I cloned it out of the Electric XML API (in which it also
seems to do nothing), and it is now legacy. It may do something, someday...
it may disappear.
Stream parser. The source will be parsed as a Stream. If a block is
supplied, yield will be called for tag starts, ends, and text. If a
listener is supplied, the listener will also be notified, by calling the
appropriate methods on events. The arguments to the block will be: IF TAG
START: "tag name", { attributes } (possibly empty) IF TEXT:
"text" IF TAG END: "/tag name" The listener must supply
the following methods: tag_start(
"name", { attributes } ) tag_end( "name" ) text(
"text" ) instruction( "name", "instruction" )
comment( "comment" ) doctype( "name", *contents )
Write the XML tree out, optionally with indent. This writes out the entire
processing instructions (if any are given). A controversial point is
whether Document should always write the XML
the user (or source document). REXML does not
write one if one was not specified, because it adds unneccessary bandwidth
to applications such as XML-RPC. @param output an object which supports
'<< string'; this is where the document will be written @param indent
(optional) if given, the starting indent for the lines in the document.