Sha256: 1c8b936f4085ab8faf9afa2d11311c3b42f27c995841ad7e209e303967c65c30
Contents?: true
Size: 1.73 KB
Versions: 42
Compression:
Stored size: 1.73 KB
Contents
# encoding: UTF-8 module LibXML module XML class SaxParser # call-seq: # XML::SaxParser.file(path) -> XML::SaxParser # # Creates a new parser by parsing the specified file or uri. def self.file(path) context = XML::Parser::Context.file(path) self.new(context) end # call-seq: # XML::SaxParser.io(io) -> XML::SaxParser # XML::SaxParser.io(io, :encoding => XML::Encoding::UTF_8) -> XML::SaxParser # # Creates a new reader by parsing the specified io object. # # Parameters: # # encoding - The document encoding, defaults to nil. Valid values # are the encoding constants defined on XML::Encoding. def self.io(io, options = {}) context = XML::Parser::Context.io(io) context.encoding = options[:encoding] if options[:encoding] self.new(context) end # call-seq: # XML::SaxParser.string(string) # # Creates a new parser by parsing the specified string. def self.string(string) context = XML::Parser::Context.string(string) self.new(context) end # :enddoc: def file=(value) warn("XML::SaxParser#file is deprecated. Use XML::SaxParser.file instead") @context = XML::Parser::Context.file(value) end def io=(value) warn("XML::SaxParser#io is deprecated. Use XML::SaxParser.io instead") @context = XML::Parser::Context.io(value) end def string=(value) warn("XML::SaxParser#string is deprecated. Use XML::SaxParser.string instead") @context = XML::Parser::Context.string(value) end end end end
Version data entries
42 entries across 42 versions & 1 rubygems