Class: REXML::Document
- Defined in:
- lib/rexml/document.rb
Overview
declaration for you. See |DECLARATION| and |write|.
Constant Summary collapse
Constants inherited from Element
Constants included from Namespace
Constants included from XMLTokens
XMLTokens::NAME, XMLTokens::NAMECHAR, XMLTokens::NAME_STR, XMLTokens::NCNAME_STR, XMLTokens::NMTOKEN, XMLTokens::NMTOKENS, XMLTokens::REFERENCE
Instance Attribute Summary
Attributes inherited from Element
#attributes, #context, #elements
Attributes included from Namespace
Attributes inherited from Child
Class Method Summary collapse
Instance Method Summary collapse
-
#add(child) ⇒ Object
(also: #<<)
We override this, because XMLDecls and DocTypes must go at the start of the document.
- #add_element(arg = nil, arg2 = nil) ⇒ Object
-
#clone ⇒ Object
Should be obvious.
-
#doctype ⇒ Object
and nil otherwise.
-
#encoding ⇒ Object
If no XMLDecl has been set, returns the default encoding.
-
#expanded_name ⇒ Object
(also: #name)
According to the XML spec, a root node has no expanded name.
-
#initialize(source = nil, context = {}) ⇒ Document
constructor
Strings are expected to be valid XML documents.
- #node_type ⇒ Object
-
#root ⇒ Object
has no children.
-
#stand_alone? ⇒ Boolean
If no XMLDecl has been set, returns the default setting.
-
#version ⇒ Object
If no XMLDecl has been set, returns the default version.
-
#write(output = $stdout, indent = -1,, trans = false, ie_hack = false) ⇒ Object
Write the XML tree out, optionally with indent.
-
#xml_decl ⇒ Object
set, the default declaration is returned.
Methods inherited from Element
#add_attribute, #add_attributes, #add_namespace, #add_text, #attribute, #cdatas, #comments, #delete_attribute, #delete_element, #delete_namespace, #document, #each_element, #each_element_with_attribute, #each_element_with_text, #get_elements, #get_text, #has_attributes?, #has_elements?, #has_text?, #ignore_whitespace_nodes, #inspect, #instructions, #namespace, #namespaces, #next_element, #prefixes, #previous_element, #raw, #root_node, #text, #text=, #texts, #whitespace, #xpath
Methods included from Namespace
#fully_expanded_name, #has_name?
Methods inherited from Parent
#[], #[]=, #deep_clone, #delete, #delete_at, #delete_if, #each, #each_index, #index, #insert_after, #insert_before, #parent?, #replace_child, #size, #to_a, #unshift
Methods inherited from Child
#bytes, #document, #next_sibling=, #previous_sibling=, #remove, #replace_with
Methods included from Node
#each_recursive, #find_first_recursive, #indent, #index_in_parent, #next_sibling_node, #parent?, #previous_sibling_node, #to_s
Constructor Details
#initialize(source = nil, context = {}) ⇒ Document
Strings are expected to be valid XML documents. IOs are expected to be sources of valid XML documents. this should be a Hash.
34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/rexml/document.rb', line 34 def initialize( source = nil, context = {} ) super() @context = context return if source.nil? if source.kind_of? Document @context = source.context super source else build( source ) end end |
Class Method Details
Instance Method Details
#add(child) ⇒ Object Also known as: <<
We override this, because XMLDecls and DocTypes must go at the start of the document
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/rexml/document.rb', line 66 def add( child ) if child.kind_of? XMLDecl @children.unshift child child.parent = self elsif child.kind_of? DocType # Find first Element or DocType node and insert the decl right # before it. If there is no such node, just insert the child at the # end. If there is a child and it is an DocType, then replace it. insert_before_index = 0 @children.find { |x| insert_before_index += 1 x.kind_of?(Element) || x.kind_of?(DocType) } if @children[ insert_before_index ] # Not null = not end of list if @children[ insert_before_index ].kind_of DocType @children[ insert_before_index ] = child else @children[ index_before_index-1, 0 ] = child end else # Insert at end of list @children[insert_before_index] = child end child.parent = self else rv = super raise "attempted adding second root element to document" if @elements.size > 1 rv end end |
#add_element(arg = nil, arg2 = nil) ⇒ Object
97 98 99 100 101 |
# File 'lib/rexml/document.rb', line 97 def add_element(arg=nil, arg2=nil) rv = super raise "attempted adding second root element to document" if @elements.size > 1 rv end |
#clone ⇒ Object
Should be obvious
51 52 53 |
# File 'lib/rexml/document.rb', line 51 def clone Document.new self end |
#doctype ⇒ Object
and nil otherwise.
113 114 115 |
# File 'lib/rexml/document.rb', line 113 def doctype @children.find { |item| item.kind_of? DocType } end |
#encoding ⇒ Object
If no XMLDecl has been set, returns the default encoding.
133 134 135 |
# File 'lib/rexml/document.rb', line 133 def encoding xml_decl().encoding end |
#expanded_name ⇒ Object Also known as: name
According to the XML spec, a root node has no expanded name
56 57 58 59 60 |
# File 'lib/rexml/document.rb', line 56 def '' #d = doc_type #d ? d.name : "UNDEFINED" end |
#node_type ⇒ Object
46 47 48 |
# File 'lib/rexml/document.rb', line 46 def node_type :document end |
#root ⇒ Object
has no children.
105 106 107 108 109 |
# File 'lib/rexml/document.rb', line 105 def root elements[1] #self #@children.find { |item| item.kind_of? Element } end |
#stand_alone? ⇒ Boolean
If no XMLDecl has been set, returns the default setting.
139 140 141 |
# File 'lib/rexml/document.rb', line 139 def stand_alone? xml_decl().stand_alone? end |
#version ⇒ Object
If no XMLDecl has been set, returns the default version.
127 128 129 |
# File 'lib/rexml/document.rb', line 127 def version xml_decl().version end |
#write(output = $stdout, indent = -1,, trans = false, ie_hack = false) ⇒ Object
Write the XML tree out, optionally with indent. This writes out the entire XML document, including XML declarations, doctype declarations, and processing instructions (if any are given).
A controversial point is whether Document should always write the XML declaration (<?xml version=‘1.0’?>) whether or not one is given by 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.
See also the classes in the rexml/formatters package for the proper way to change the default formatting of XML output
Examples
Document.new("<a><b/></a>").serialize
output_string = ""
tr = Transitive.new( output_string )
Document.new("<a><b/></a>").serialize( tr )
- output
-
output an object which supports ‘<< string’; this is where the document will be written.
- indent
-
An integer. If -1, no indenting will be used; otherwise, the indentation will be twice this number of spaces, and children will be indented an additional amount. For a value of 3, every item will be indented 3 more levels, or 6 more spaces (2 * 3). Defaults to -1
- trans
-
If transitive is true and indent is >= 0, then the output will be pretty-printed in such a way that the added whitespace does not affect the absolute value of the document – that is, it leaves the value and number of Text nodes in the document unchanged.
- ie_hack
-
Internet Explorer is the worst piece of crap to have ever been written, with the possible exception of Windows itself. Since IE is unable to parse proper XML, we have to provide a hack to generate XML that IE’s limited abilities can handle. This hack inserts a space before the /> on empty tags. Defaults to false
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
# File 'lib/rexml/document.rb', line 182 def write( output=$stdout, indent=-1, trans=false, ie_hack=false ) if xml_decl.encoding != "UTF-8" && !output.kind_of?(Output) output = Output.new( output, xml_decl.encoding ) end formatter = if indent > -1 if trans REXML::Formatters::Transitive.new( indent, ie_hack ) else REXML::Formatters::Pretty.new( indent, ie_hack ) end else REXML::Formatters::Default.new( ie_hack ) end formatter.write( self, output ) end |