Sha256: 98aac28ed58331dbdccb5e303a9ed3f99261f463759a590a7fc1af20de8a5d6e

Contents?: true

Size: 1.13 KB

Versions: 38

Compression:

Stored size: 1.13 KB

Contents

# encoding: ASCII-8BIT
# XSD4R - XMLParser XML parser library.
# Copyright (C) 2000-2007  NAKAMURA, Hiroshi <nahi@ruby-lang.org>.

# This program is copyrighted free software by NAKAMURA, Hiroshi.  You can
# redistribute it and/or modify it under the same terms of Ruby's license;
# either the dual license version in 2003, or any later version.


require 'xsd/xmlparser'
require 'xml/parser'


module XSD
module XMLParser


class XMLParser < XSD::XMLParser::Parser
  class Listener < XML::Parser
    begin
      require 'xml/encoding-ja'
      include XML::Encoding_ja
    rescue LoadError
      # uconv may not be installed.
    end
  end

  def do_parse(string_or_readable)
    # XMLParser passes a String in utf-8.
    @charset = 'utf-8'
    @parser = Listener.new
    @parser.parse(string_or_readable) do |type, name, data|
      case type
      when XML::Parser::START_ELEM
	start_element(name, data)
      when XML::Parser::END_ELEM
	end_element(name)
      when XML::Parser::CDATA
	characters(data)
      else
	raise FormatDecodeError.new("Unexpected XML: #{ type }/#{ name }/#{ data }.")
      end
    end
  end

  add_factory(self)
end


end
end

Version data entries

38 entries across 38 versions & 10 rubygems

Version Path
soybean-2.5.5 vendor/soap4r/xsd/xmlparser/xmlparser.rb
malagant-soap4r-1.5.8.20141127181857 lib/xsd/xmlparser/xmlparser.rb
rtiss_soap4r-1.6.1 lib/xsd/xmlparser/xmlparser.rb
rtiss_soap4r-1.6.0 lib/xsd/xmlparser/xmlparser.rb
eSpace_soap4r-1.5.8 lib/xsd/xmlparser/xmlparser.rb
soap4r-ruby19-1.5.9 lib/xsd/xmlparser/xmlparser.rb
tomdz-soap4r-1.5.8.20120202093209 lib/xsd/xmlparser/xmlparser.rb
soap5r-2.0.3 lib/xsd/xmlparser/xmlparser.rb
soap5r-2.0.2 lib/xsd/xmlparser/xmlparser.rb
soap5r-2.0.1 lib/xsd/xmlparser/xmlparser.rb
soap5r-2.0.0 lib/xsd/xmlparser/xmlparser.rb
soap5r-2.0.0.20120130130121 lib/xsd/xmlparser/xmlparser.rb
soap4r-sgonyea-1.5.9 lib/xsd/xmlparser/xmlparser.rb
sunteya-soap4r-1.5.8.0 lib/xsd/xmlparser/xmlparser.rb
soybean-2.5.4 vendor/soap4r/xsd/xmlparser/xmlparser.rb
tomdz-soap4r-1.5.8.20111103171510 lib/xsd/xmlparser/xmlparser.rb
soybean-2.5.3 vendor/soap4r/xsd/xmlparser/xmlparser.rb
soybean-2.5.2 vendor/soap4r/xsd/xmlparser/xmlparser.rb
soybean-2.5.1 vendor/soap4r/xsd/xmlparser/xmlparser.rb
soybean-2.5.0 vendor/soap4r/xsd/xmlparser/xmlparser.rb