1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
require 'libxml'
module ROXML
module XML # :nodoc:all
class << self
def set_attribute(node, name, value)
node.attributes[name] = value
end
def set_content(node, content)
node.content = content.gsub('&', '&')
end
def new_node(name)
LibXML::XML::Node.new(name)
end
def add_node(parent, name)
add_child(parent, new_node(name))
end
def add_cdata(parent, content)
add_child(parent, LibXML::XML::Node.new_cdata(content))
end
def add_child(parent, child)
parent << child
child
end
def parse_string(str_data)
LibXML::XML::Parser.string(str_data).parse
end
def parse_file(path)
LibXML::XML::Parser.file(path).parse
end
def parse_io(stream)
LibXML::XML::Parser.io(stream).parse
end
def save_doc(doc, path)
doc.save(path)
end
def default_namespace(doc)
doc = doc.doc if doc.respond_to?(:doc)
default = doc.root.namespaces.default
default.prefix || 'xmlns' if default
end
def search(xml, xpath, roxml_namespaces = {})
if xml.namespaces.default
roxml_namespaces = {:xmlns => namespaces.default.href}.merge(roxml_namespaces)
end
if roxml_namespaces.present?
xml.find(xpath, roxml_namespaces.map {|prefix, href| [prefix, href].join(':') })
else
xml.find(xpath)
end
end
end
Document = LibXML::XML::Document
Node = LibXML::XML::Node
end
end
|