Nokogiri::XML::SAX::Document
# File lib/fog/core/parser.rb, line 13 def attr_value(name, attrs) (entry = attrs.detect {|a, v| a == name }) && entry.last end
# File lib/fog/core/parser.rb, line 21 def characters(string) @value ||= '' @value << string end
# File lib/fog/core/parser.rb, line 33 def end_element_namespace name, prefix = nil, uri = nil end_element name end
# File lib/fog/core/parser.rb, line 39 def start_element(name, attrs = []) @value = nil end
############################################################################### This is a workaround. Original implementation from Nokogiri is overwritten with one that does not join namespace prefix with local name.
# File lib/fog/core/parser.rb, line 29 def start_element_namespace name, attrs = [], prefix = nil, uri = nil, ns = [] start_element name, attrs end
Generated with the Darkfish Rdoc Generator 2.