Sha256: a7d4ffb9dc89e02c74de92f447ad61ae2f2c3a63cbbd9bf0ca1c75d0a74b1dfd

Contents?: true

Size: 1.55 KB

Versions: 6

Compression:

Stored size: 1.55 KB

Contents

require 'nokogiri'

module ROXML
  module XML # :nodoc:all

    class << self
      def set_attribute(node, name, value)
        node[name] = value
      end

      def set_content(node, content)
        node.content = content
      end

      def new_node(name)
        Nokogiri::XML::Node.new(name, Document.new)
      end

      def add_node(parent, name)
        add_child(parent, Nokogiri::XML::Node.new(name, parent.document))
      end

      def add_cdata(parent, content)
        parent.add_child(Nokogiri::XML::CDATA.new(parent.document, content))
      end

      def add_child(parent, child)
        parent.add_child(child)
      end

      def parse_string(string)
        Nokogiri::XML(string)
      end

      def parse_file(path)
        path = path.sub('file:', '') if path.starts_with?('file:')
        parse_io(open(path))
      end

      def parse_io(stream)
        Nokogiri::XML(stream)
      end

      def save_doc(doc, path)
        open(path, 'w') do |file|
          file << doc.serialize
        end
      end

      def default_namespace(doc)
        doc = doc.document if doc.respond_to?(:document)
        'xmlns' if doc.root.namespaces['xmlns']
      end

      def search(xml, xpath, roxml_namespaces = {})
        case xml
        when Nokogiri::XML::Document
          xml.search(xpath, roxml_namespaces)
        else
          xpath = "./#{xpath}"
          (roxml_namespaces.present? ? xml.search(xpath, roxml_namespaces) : xml.search(xpath))
        end
      end
    end

    Document = Nokogiri::XML::Document
    Node = Nokogiri::XML::Node
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
roxml-4.2.0 lib/roxml/xml/parsers/nokogiri.rb
roxml-4.1.1 lib/roxml/xml/parsers/nokogiri.rb
roxml-4.1.0 lib/roxml/xml/parsers/nokogiri.rb
roxml-4.0.0 lib/roxml/xml/parsers/nokogiri.rb
roxml-3.3.1 lib/roxml/xml/parsers/nokogiri.rb
roxml-3.3.0 lib/roxml/xml/parsers/nokogiri.rb