Class: REXML::Element
- Includes:
- Namespace
- Defined in:
- lib/rexml/element.rb
Overview
Represents a tagged XML element. Elements are characterized by having children, attributes, and names, and can themselves be children.
Direct Known Subclasses
Constant Summary collapse
- UNDEFINED =
The default name
"UNDEFINED"
Constants included from Namespace
Constants included from XMLTokens
XMLTokens::NAME, XMLTokens::NAMECHAR, XMLTokens::NAME_CHAR, XMLTokens::NAME_START_CHAR, XMLTokens::NAME_STR, XMLTokens::NCNAME_STR, XMLTokens::NMTOKEN, XMLTokens::NMTOKENS, XMLTokens::REFERENCE
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Mechanisms for accessing attributes and child elements of this element.
-
#context ⇒ Object
The context holds information about the processing environment, such as whitespace handling.
-
#elements ⇒ Object
readonly
Mechanisms for accessing attributes and child elements of this element.
Attributes included from Namespace
#expanded_name, #name, #prefix
Attributes inherited from Child
Instance Method Summary collapse
-
#[](name_or_index) ⇒ Object
Fetches an attribute value or a child.
-
#add_attribute(key, value = nil) ⇒ Object
Adds an attribute to this element, overwriting any existing attribute by the same name.
-
#add_attributes(hash) ⇒ Object
Add multiple attributes to this element.
-
#add_element(element, attrs = nil) ⇒ Object
Adds a child to this element, optionally setting attributes in the element.
-
#add_namespace(prefix, uri = nil) ⇒ Object
Adds a namespace to this element.
-
#add_text(text) ⇒ Object
A helper method to add a Text child.
- #attribute(name, namespace = nil) ⇒ Object
-
#cdatas ⇒ Object
Get an array of all CData children.
-
#clone ⇒ Object
Creates a shallow copy of self.
-
#comments ⇒ Object
Get an array of all Comment children.
-
#delete_attribute(key) ⇒ Object
- Removes an attribute key
-
either an Attribute or a String.
-
#delete_element(element) ⇒ Object
Deletes a child element.
-
#delete_namespace(namespace = "xmlns") ⇒ Object
Removes a namespace from this node.
-
#document ⇒ Object
Evaluates to the document to which this element belongs, or nil if this element doesn’t belong to a document.
-
#each_element(xpath = nil, &block) ⇒ Object
Synonym for Element.elements.each.
-
#each_element_with_attribute(key, value = nil, max = 0, name = nil, &block) ⇒ Object
Iterates through the child elements, yielding for each Element that has a particular attribute set.
-
#each_element_with_text(text = nil, max = 0, name = nil, &block) ⇒ Object
Iterates through the children, yielding for each Element that has a particular text set.
-
#get_elements(xpath) ⇒ Object
Synonym for Element.to_a This is a little slower than calling elements.each directly.
-
#get_text(path = nil) ⇒ Object
Returns the first child Text node, if any, or
nil
otherwise. -
#has_attributes? ⇒ Boolean
Evaluates to
true
if this element has any attributes set, false otherwise. -
#has_elements? ⇒ Boolean
Evaluates to
true
if this element has at least one child Element doc = Document.new “<a><b/><c>Text</c></a>” doc.root.has_elements # -> true doc.elements.has_elements # -> false doc.elements.has_elements # -> false. -
#has_text? ⇒ Boolean
Evaluates to
true
if this element has at least one Text child. - #ignore_whitespace_nodes ⇒ Object
-
#initialize(arg = UNDEFINED, parent = nil, context = nil) ⇒ Element
constructor
- Constructor arg
-
if not supplied, will be set to the default value.
- #inspect ⇒ Object
-
#instructions ⇒ Object
Get an array of all Instruction children.
-
#namespace(prefix = nil) ⇒ Object
Evaluates to the URI for a prefix, or the empty string if no such namespace is declared for this element.
- #namespaces ⇒ Object
-
#next_element ⇒ Object
Returns the next sibling that is an element, or nil if there is no Element sibling after this one doc = Document.new ‘<a><b/>text<c/></a>’ doc.root.elements.next_element #-> <c/> doc.root.elements.next_element #-> nil.
- #node_type ⇒ Object
-
#prefixes ⇒ Object
Evaluates to an
Array
containing the prefixes (names) of all defined namespaces at this context node. -
#previous_element ⇒ Object
Returns the previous sibling that is an element, or nil if there is no Element sibling prior to this one doc = Document.new ‘<a><b/>text<c/></a>’ doc.root.elements.previous_element #-> <b/> doc.root.elements.previous_element #-> nil.
-
#raw ⇒ Object
Evaluates to
true
if raw mode is set for this element. - #root ⇒ Object
-
#root_node ⇒ Object
Evaluates to the root node of the document that this element belongs to.
-
#text(path = nil) ⇒ Object
A convenience method which returns the String value of the first child text element, if one exists, and
nil
otherwise. -
#text=(text) ⇒ Object
Sets the first Text child of this object.
-
#texts ⇒ Object
Get an array of all Text children.
-
#whitespace ⇒ Object
Evaluates to
true
if whitespace is respected for this element. -
#write(output = $stdout, indent = -1,, transitive = false, ie_hack = false) ⇒ Object
DEPRECATED See REXML::Formatters.
- #xpath ⇒ Object
Methods included from Namespace
#fully_expanded_name, #has_name?
Methods inherited from Parent
#[]=, #add, #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, #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(arg = UNDEFINED, parent = nil, context = nil) ⇒ Element
Constructor
- arg
-
if not supplied, will be set to the default value. If a String, the name of this object will be set to the argument. If an Element, the object will be shallowly cloned; name, attributes, and namespaces will be copied. Children will
not
be copied. - parent
-
if supplied, must be a Parent, and will be used as the parent of this object.
- context
-
If supplied, must be a hash containing context items. Context items include:
-
:respect_whitespace
the value of this is :all
or an array of strings being the names of the elements to respect whitespace for. Defaults to :all
. -
:compress_whitespace
the value can be :all
or an array of strings being the names of the elements to ignore whitespace on. Overrides :respect_whitespace
. -
:ignore_whitespace_nodes
the value can be :all
or an array of strings being the names of the elements in which to ignore whitespace-only nodes. If this is set, Text nodes which contain only whitespace will not be added to the document tree. -
:raw
can be :all
, or an array of strings being the names of the elements to process in raw mode. In raw mode, special characters in text is not converted to or from entities.
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/rexml/element.rb', line 59 def initialize( arg = UNDEFINED, parent=nil, context=nil ) super(parent) @elements = Elements.new(self) @attributes = Attributes.new(self) @context = context if arg.kind_of? String self.name = arg elsif arg.kind_of? Element self.name = arg. arg.attributes.each_attribute{ |attribute| @attributes << Attribute.new( attribute ) } @context = arg.context end end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Mechanisms for accessing attributes and child elements of this element.
28 29 30 |
# File 'lib/rexml/element.rb', line 28 def attributes @attributes end |
#context ⇒ Object
The context holds information about the processing environment, such as whitespace handling.
31 32 33 |
# File 'lib/rexml/element.rb', line 31 def context @context end |
#elements ⇒ Object (readonly)
Mechanisms for accessing attributes and child elements of this element.
28 29 30 |
# File 'lib/rexml/element.rb', line 28 def elements @elements end |
Instance Method Details
#[](name_or_index) ⇒ Object
Fetches an attribute value or a child.
If String or Symbol is specified, it’s treated as attribute name. Attribute value as String or nil
is returned. This case is shortcut of attributes[name]
.
If Integer is specified, it’s treated as the index of child. It returns Nth child.
doc = REXML::Document.new("<a attr='1'><b/><c/></a>")
doc.root["attr"] # => "1"
doc.root.attributes["attr"] # => "1"
doc.root[1] # => <c/>
567 568 569 570 571 572 573 574 575 576 |
# File 'lib/rexml/element.rb', line 567 def [](name_or_index) case name_or_index when String attributes[name_or_index] when Symbol attributes[name_or_index.to_s] else super end end |
#add_attribute(key, value = nil) ⇒ Object
Adds an attribute to this element, overwriting any existing attribute by the same name.
- key
-
can be either an Attribute or a String. If an Attribute, the attribute is added to the list of Element attributes. If String, the argument is used as the name of the new attribute, and the value parameter must be supplied.
- value
-
Required if
key
is a String, and ignored if the first argument is an Attribute. This is a String, and is used as the value of the new Attribute. This should be the unnormalized value of the attribute (without entities). - Returns
-
the Attribute added
e = Element.new 'e'
e.add_attribute( 'a', 'b' ) #-> <e a='b'/>
e.add_attribute( 'x:a', 'c' ) #-> <e a='b' x:a='c'/>
e.add_attribute Attribute.new('b', 'd') #-> <e a='b' x:a='c' b='d'/>
624 625 626 627 628 629 630 |
# File 'lib/rexml/element.rb', line 624 def add_attribute( key, value=nil ) if key.kind_of? Attribute @attributes << key else @attributes[key] = value end end |
#add_attributes(hash) ⇒ Object
Add multiple attributes to this element.
- hash
-
is either a hash, or array of arrays
el.add_attributes( {"name1"=>"value1", "name2"=>"value2"} )
el.add_attributes( [ ["name1","value1"], ["name2"=>"value2"] ] )
636 637 638 639 640 641 642 |
# File 'lib/rexml/element.rb', line 636 def add_attributes hash if hash.kind_of? Hash hash.each_pair {|key, value| @attributes[key] = value } elsif hash.kind_of? Array hash.each { |value| @attributes[ value[0] ] = value[1] } end end |
#add_element(element, attrs = nil) ⇒ Object
Adds a child to this element, optionally setting attributes in the element.
- element
-
optional. If Element, the element is added. Otherwise, a new Element is constructed with the argument (see Element.initialize).
- attrs
-
If supplied, must be a Hash containing String name,value pairs, which will be used to set the attributes of the new Element.
- Returns
-
the Element that was added
el = doc.add_element 'my-tag'
el = doc.add_element 'my-tag', {'attr1'=>'val1', 'attr2'=>'val2'}
el = Element.new 'my-tag'
doc.add_element el
296 297 298 299 300 301 302 303 |
# File 'lib/rexml/element.rb', line 296 def add_element element, attrs=nil raise "First argument must be either an element name, or an Element object" if element.nil? el = @elements.add(element) attrs.each do |key, value| el.attributes[key]=value end if attrs.kind_of? Hash el end |
#add_namespace(prefix, uri = nil) ⇒ Object
Adds a namespace to this element.
- prefix
-
the prefix string, or the namespace URI if
uri
is not supplied - uri
-
the namespace URI. May be nil, in which
prefix
is used as the URI
Evaluates to: this Element
a = Element.new("a")
a.add_namespace("xmlns:foo", "bar" )
a.add_namespace("foo", "bar") # shorthand for previous line
a.add_namespace("twiddle")
puts a #-> <a xmlns:foo='bar' xmlns='twiddle'/>
251 252 253 254 255 256 257 258 259 |
# File 'lib/rexml/element.rb', line 251 def add_namespace( prefix, uri=nil ) unless uri @attributes["xmlns"] = prefix else prefix = "xmlns:#{prefix}" unless prefix =~ /^xmlns:/ @attributes[ prefix ] = uri end self end |
#add_text(text) ⇒ Object
A helper method to add a Text child. Actual Text instances can be added with regular Parent methods, such as add() and <<()
- text
-
if a String, a new Text instance is created and added to the parent. If Text, the object is added directly.
- Returns
-
this Element
e = Element.new('a') #-> <e/>
e.add_text 'foo' #-> <e>foo</e>
e.add_text Text.new(' bar') #-> <e>foo bar</e>
Note that at the end of this example, the branch has 3 nodes; the ‘e’ element and 2 Text node children.
523 524 525 526 527 528 529 530 531 532 533 |
# File 'lib/rexml/element.rb', line 523 def add_text( text ) if text.kind_of? String if @children[-1].kind_of? Text @children[-1] << text return end text = Text.new( text, whitespace(), nil, raw() ) end self << text unless text.nil? return self end |
#attribute(name, namespace = nil) ⇒ Object
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 |
# File 'lib/rexml/element.rb', line 578 def attribute( name, namespace=nil ) prefix = nil if namespaces.respond_to? :key prefix = namespaces.key(namespace) if namespace else prefix = namespaces.index(namespace) if namespace end prefix = nil if prefix == 'xmlns' ret_val = attributes.get_attribute( "#{prefix ? prefix + ':' : ''}#{name}" ) return ret_val unless ret_val.nil? return nil if prefix.nil? # now check that prefix'es namespace is not the same as the # default namespace return nil unless ( namespaces[ prefix ] == namespaces[ 'xmlns' ] ) attributes.get_attribute( name ) end |
#cdatas ⇒ Object
Get an array of all CData children. IMMUTABLE
668 669 670 |
# File 'lib/rexml/element.rb', line 668 def cdatas find_all { |child| child.kind_of? CData }.freeze end |
#comments ⇒ Object
Get an array of all Comment children. IMMUTABLE
674 675 676 |
# File 'lib/rexml/element.rb', line 674 def comments find_all { |child| child.kind_of? Comment }.freeze end |
#delete_attribute(key) ⇒ Object
Removes an attribute
- key
-
either an Attribute or a String. In either case, the attribute is found by matching the attribute name to the argument, and then removed. If no attribute is found, no action is taken.
- Returns
-
the attribute removed, or nil if this Element did not contain a matching attribute
e = Element.new('E')
e.add_attribute( 'name', 'Sean' ) #-> <E name='Sean'/>
r = e.add_attribute( 'sur:name', 'Russell' ) #-> <E name='Sean' sur:name='Russell'/>
e.delete_attribute( 'name' ) #-> <E sur:name='Russell'/>
e.delete_attribute( r ) #-> <E/>
657 658 659 660 |
# File 'lib/rexml/element.rb', line 657 def delete_attribute(key) attr = @attributes.get_attribute(key) attr.remove unless attr.nil? end |
#delete_element(element) ⇒ Object
Deletes a child element.
- element
-
Must be an
Element
,String
, orInteger
. If Element, the element is removed. If String, the element is found (via XPath) and removed. <em>This means that any parent can remove any descendant.<em> If Integer, the Element indexed by that number will be removed. - Returns
-
the element that was removed.
doc.delete_element "/a/b/c[@id='4']"
doc.delete_element doc.elements["//k"]
doc.delete_element 1
316 317 318 |
# File 'lib/rexml/element.rb', line 316 def delete_element element @elements.delete element end |
#delete_namespace(namespace = "xmlns") ⇒ Object
Removes a namespace from this node. This only works if the namespace is actually declared in this node. If no argument is passed, deletes the default namespace.
Evaluates to: this element
doc = Document.new "<a xmlns:foo='bar' xmlns='twiddle'/>"
doc.root.delete_namespace
puts doc # -> <a xmlns:foo='bar'/>
doc.root.delete_namespace 'foo'
puts doc # -> <a/>
271 272 273 274 275 276 |
# File 'lib/rexml/element.rb', line 271 def delete_namespace namespace="xmlns" namespace = "xmlns:#{namespace}" unless namespace == 'xmlns' attribute = attributes.get_attribute(namespace) attribute.remove unless attribute.nil? self end |
#document ⇒ Object
Evaluates to the document to which this element belongs, or nil if this element doesn’t belong to a document.
132 133 134 135 |
# File 'lib/rexml/element.rb', line 132 def document rt = root rt.parent if rt end |
#each_element(xpath = nil, &block) ⇒ Object
Synonym for Element.elements.each
393 394 395 |
# File 'lib/rexml/element.rb', line 393 def each_element( xpath=nil, &block ) # :yields: Element @elements.each( xpath, &block ) end |
#each_element_with_attribute(key, value = nil, max = 0, name = nil, &block) ⇒ Object
Iterates through the child elements, yielding for each Element that has a particular attribute set.
- key
-
the name of the attribute to search for
- value
-
the value of the attribute
- max
-
(optional) causes this method to return after yielding for this number of matching children
- name
-
(optional) if supplied, this is an XPath that filters the children to check.
doc = Document.new "<a><b @id='1'/><c @id='2'/><d @id='1'/><e/></a>"
# Yields b, c, d
doc.root.each_element_with_attribute( 'id' ) {|e| p e}
# Yields b, d
doc.root.each_element_with_attribute( 'id', '1' ) {|e| p e}
# Yields b
doc.root.each_element_with_attribute( 'id', '1', 1 ) {|e| p e}
# Yields d
doc.root.each_element_with_attribute( 'id', '1', 0, 'd' ) {|e| p e}
351 352 353 354 355 356 357 358 359 |
# File 'lib/rexml/element.rb', line 351 def each_element_with_attribute( key, value=nil, max=0, name=nil, &block ) # :yields: Element each_with_something( proc {|child| if value.nil? child.attributes[key] != nil else child.attributes[key]==value end }, max, name, &block ) end |
#each_element_with_text(text = nil, max = 0, name = nil, &block) ⇒ Object
Iterates through the children, yielding for each Element that has a particular text set.
- text
-
the text to search for. If nil, or not supplied, will iterate over all
Element
children that contain at least oneText
node. - max
-
(optional) causes this method to return after yielding for this number of matching children
- name
-
(optional) if supplied, this is an XPath that filters the children to check.
doc = Document.new '<a><b>b</b><c>b</c><d>d</d><e/></a>'
# Yields b, c, d
doc.each_element_with_text {|e|p e}
# Yields b, c
doc.each_element_with_text('b'){|e|p e}
# Yields b
doc.each_element_with_text('b', 1){|e|p e}
# Yields d
doc.each_element_with_text(nil, 0, 'd'){|e|p e}
382 383 384 385 386 387 388 389 390 |
# File 'lib/rexml/element.rb', line 382 def each_element_with_text( text=nil, max=0, name=nil, &block ) # :yields: Element each_with_something( proc {|child| if text.nil? child.has_text? else child.text == text end }, max, name, &block ) end |
#get_elements(xpath) ⇒ Object
Synonym for Element.to_a This is a little slower than calling elements.each directly.
- xpath
-
any XPath by which to search for elements in the tree
- Returns
-
an array of Elements that match the supplied path
401 402 403 |
# File 'lib/rexml/element.rb', line 401 def get_elements( xpath ) @elements.to_a( xpath ) end |
#get_text(path = nil) ⇒ Object
Returns the first child Text node, if any, or nil
otherwise. This method returns the actual Text
node, rather than the String content.
doc = Document.new "<p>some text <b>this is bold!</b> more text</p>"
# The element 'p' has two text elements, "some text " and " more text".
doc.root.get_text.value #-> "some text "
462 463 464 465 466 467 468 469 470 471 |
# File 'lib/rexml/element.rb', line 462 def get_text path = nil rv = nil if path element = @elements[ path ] rv = element.get_text unless element.nil? else rv = @children.find { |node| node.kind_of? Text } end return rv end |
#has_attributes? ⇒ Boolean
Evaluates to true
if this element has any attributes set, false otherwise.
603 604 605 |
# File 'lib/rexml/element.rb', line 603 def has_attributes? return !@attributes.empty? end |
#has_elements? ⇒ Boolean
325 326 327 |
# File 'lib/rexml/element.rb', line 325 def has_elements? !@elements.empty? end |
#has_text? ⇒ Boolean
Evaluates to true
if this element has at least one Text child
433 434 435 |
# File 'lib/rexml/element.rb', line 433 def has_text? not text().nil? end |
#ignore_whitespace_nodes ⇒ Object
162 163 164 165 166 167 168 169 170 171 |
# File 'lib/rexml/element.rb', line 162 def ignore_whitespace_nodes @ignore_whitespace_nodes = false if @context if @context[:ignore_whitespace_nodes] @ignore_whitespace_nodes = (@context[:ignore_whitespace_nodes] == :all or @context[:ignore_whitespace_nodes].include? ) end end end |
#inspect ⇒ Object
77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/rexml/element.rb', line 77 def inspect rv = "<#@expanded_name" @attributes.each_attribute do |attr| rv << " " attr.write( rv, 0 ) end if children.size > 0 rv << "> ... </>" else rv << "/>" end end |
#instructions ⇒ Object
Get an array of all Instruction children. IMMUTABLE
680 681 682 |
# File 'lib/rexml/element.rb', line 680 def instructions find_all { |child| child.kind_of? Instruction }.freeze end |
#namespace(prefix = nil) ⇒ Object
Evaluates to the URI for a prefix, or the empty string if no such namespace is declared for this element. Evaluates recursively for ancestors. Returns the default namespace, if there is one.
- prefix
-
the prefix to search for. If not supplied, returns the default namespace if one exists
- Returns
-
the namespace URI as a String, or nil if no such namespace exists. If the namespace is undefined, returns an empty string
doc = Document.new("<a xmlns='1' xmlns:y='2'><b/><c xmlns:z='3'/></a>")
b = doc.elements['//b']
b.namespace # -> '1'
b.namespace("y") # -> '2'
223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'lib/rexml/element.rb', line 223 def namespace(prefix=nil) if prefix.nil? prefix = prefix() end if prefix == '' prefix = "xmlns" else prefix = "xmlns:#{prefix}" unless prefix[0,5] == 'xmlns' end ns = attributes[ prefix ] ns = parent.namespace(prefix) if ns.nil? and parent ns = '' if ns.nil? and prefix == 'xmlns' return ns end |
#namespaces ⇒ Object
203 204 205 206 207 208 |
# File 'lib/rexml/element.rb', line 203 def namespaces namespaces = {} namespaces = parent.namespaces if parent namespaces = namespaces.merge( attributes.namespaces ) return namespaces end |
#next_element ⇒ Object
410 411 412 413 414 |
# File 'lib/rexml/element.rb', line 410 def next_element element = next_sibling element = element.next_sibling until element.nil? or element.kind_of? Element return element end |
#node_type ⇒ Object
535 536 537 |
# File 'lib/rexml/element.rb', line 535 def node_type :element end |
#prefixes ⇒ Object
196 197 198 199 200 201 |
# File 'lib/rexml/element.rb', line 196 def prefixes prefixes = [] prefixes = parent.prefixes if parent prefixes |= attributes.prefixes return prefixes end |
#previous_element ⇒ Object
421 422 423 424 425 |
# File 'lib/rexml/element.rb', line 421 def previous_element element = previous_sibling element = element.previous_sibling until element.nil? or element.kind_of? Element return element end |
#raw ⇒ Object
Evaluates to true
if raw mode is set for this element. This is the case if the context has :raw
set to :all
or an array containing the name of this element.
The evaluation is tested against expanded_name
, and so is namespace sensitive.
179 180 181 182 183 184 |
# File 'lib/rexml/element.rb', line 179 def raw @raw = (@context and @context[:raw] and (@context[:raw] == :all or @context[:raw].include? )) @raw end |
#root ⇒ Object
124 125 126 127 128 |
# File 'lib/rexml/element.rb', line 124 def root return elements[1] if self.kind_of? Document return self if parent.kind_of? Document or parent.nil? return parent.root end |
#root_node ⇒ Object
Evaluates to the root node of the document that this element belongs to. If this element doesn’t belong to a document, but does belong to another Element, the parent’s root will be returned, until the earliest ancestor is found.
Note that this is not the same as the document element. In the following example, <a> is the document element, and the root node is the parent node of the document element. You may ask yourself why the root node is useful: consider the doctype and XML declaration, and any processing instructions before the document element… they are children of the root node, or siblings of the document element. The only time this isn’t true is when an Element is created that is not part of any Document. In this case, the ancestor that has no parent acts as the root node.
d = Document.new '<a><b><c/></b></a>'
a = d[1] ; c = a[1][1]
d.root_node == d # TRUE
a.root_node # namely, d
c.root_node # again, d
120 121 122 |
# File 'lib/rexml/element.rb', line 120 def root_node parent.nil? ? self : parent.root_node end |
#text(path = nil) ⇒ Object
A convenience method which returns the String value of the first child text element, if one exists, and nil
otherwise.
Note that an element may have multiple Text elements, perhaps separated by other children. Be aware that this method only returns the first Text node.
This method returns the value
of the first text child node, which ignores the raw
setting, so always returns normalized text. See the Text::value documentation.
doc = Document.new "<p>some text <b>this is bold!</b> more text</p>"
# The element 'p' has two text elements, "some text " and " more text".
doc.root.text #-> "some text "
451 452 453 454 455 |
# File 'lib/rexml/element.rb', line 451 def text( path = nil ) rv = get_text(path) return rv.value unless rv.nil? nil end |
#text=(text) ⇒ Object
Sets the first Text child of this object. See text() for a discussion about Text children.
If a Text child already exists, the child is replaced by this content. This means that Text content can be deleted by calling this method with a nil argument. In this case, the next Text child becomes the first Text child. In no case is the order of any siblings disturbed.
- text
-
If a String, a new Text child is created and added to this Element as the first Text child. If Text, the text is set as the first Child element. If nil, then any existing first Text child is removed.
- Returns
-
this Element.
doc = Document.new '<a><b/></a>'
doc.root.text = 'Sean' #-> '<a><b/>Sean</a>'
doc.root.text = 'Elliott' #-> '<a><b/>Elliott</a>'
doc.root.add_element 'c' #-> '<a><b/>Elliott<c/></a>'
doc.root.text = 'Russell' #-> '<a><b/>Russell<c/></a>'
doc.root.text = nil #-> '<a><b/><c/></a>'
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 |
# File 'lib/rexml/element.rb', line 493 def text=( text ) if text.kind_of? String text = Text.new( text, whitespace(), nil, raw() ) elsif !text.nil? and !text.kind_of? Text text = Text.new( text.to_s, whitespace(), nil, raw() ) end old_text = get_text if text.nil? old_text.remove unless old_text.nil? else if old_text.nil? self << text else old_text.replace_with( text ) end end return self end |
#texts ⇒ Object
Get an array of all Text children. IMMUTABLE
686 687 688 |
# File 'lib/rexml/element.rb', line 686 def texts find_all { |child| child.kind_of? Text }.freeze end |
#whitespace ⇒ Object
Evaluates to true
if whitespace is respected for this element. This is the case if:
-
Neither :
respect_whitespace
nor :compress_whitespace
has any value -
The context has :
respect_whitespace
set to :all
or an array containing the name of this element, and :compress_whitespace
isn’t set to :all
or an array containing the name of this element.
The evaluation is tested against expanded_name
, and so is namespace sensitive.
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'lib/rexml/element.rb', line 146 def whitespace @whitespace = nil if @context if @context[:respect_whitespace] @whitespace = (@context[:respect_whitespace] == :all or @context[:respect_whitespace].include? ) end @whitespace = false if (@context[:compress_whitespace] and (@context[:compress_whitespace] == :all or @context[:compress_whitespace].include? ) ) end @whitespace = true unless @whitespace == false @whitespace end |
#write(output = $stdout, indent = -1,, transitive = false, ie_hack = false) ⇒ Object
DEPRECATED
See REXML::Formatters
Writes out this element, and recursively, all children.
- 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 this number of spaces, and children will be indented an additional amount. Defaults to -1
- transitive
-
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 parse tree of the document
- ie_hack
-
This hack inserts a space before the /> on empty tags to address a limitation of Internet Explorer. Defaults to false
out = ''
doc.write( out ) #-> doc is written to the string 'out'
doc.write( $stdout ) #-> doc written to the console
712 713 714 715 716 717 718 719 720 721 722 723 724 725 |
# File 'lib/rexml/element.rb', line 712 def write(output=$stdout, indent=-1, transitive=false, ie_hack=false) Kernel.warn("#{self.class.name}.write is deprecated. See REXML::Formatters", uplevel: 1) formatter = if indent > -1 if transitive require_relative "formatters/transitive" 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 |
#xpath ⇒ Object
539 540 541 542 543 544 545 546 547 548 |
# File 'lib/rexml/element.rb', line 539 def xpath path_elements = [] cur = self path_elements << __to_xpath_helper( self ) while cur.parent cur = cur.parent path_elements << __to_xpath_helper( cur ) end return path_elements.reverse.join( "/" ) end |