Constants
No documentation available
Instance Methods
lib/xmlrpc/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/xmlrpc/parser.rb, line 806
def method_missing(*a)
end
No documentation available
lib/xmlrpc/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/xmlrpc/parser.rb, line 785
def on_cdata(str)
character(str)
end
No documentation available
lib/xmlrpc/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/xmlrpc/parser.rb, line 781
def on_chardata(str)
character(str)
end
No documentation available
lib/xmlrpc/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/xmlrpc/parser.rb, line 798
def on_charref(code)
character(code.chr)
end
No documentation available
lib/xmlrpc/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/xmlrpc/parser.rb, line 802
def on_charref_hex(code)
character(code.chr)
end
No documentation available
lib/xmlrpc/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/xmlrpc/parser.rb, line 789
def on_entityref(ent)
str = Entities[ent]
if str
character(str)
else
raise "unknown entity"
end
end
No documentation available
lib/xmlrpc/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/xmlrpc/parser.rb, line 774
def on_stag_end(name); end
No documentation available
lib/xmlrpc/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/xmlrpc/parser.rb, line 776
def on_stag_end_empty(name)
startElement(name)
endElement(name)
end
No documentation available
lib/xmlrpc/parser.rb
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/xmlrpc/parser.rb, line 766
def parse(str)
parser = XMLScan::XMLParser.new(self)
parser.parse(str)
end
No documentation available