Methods
- M
- O
- P
Included Modules
Constants
| Entities | = | { "lt" => "<", "gt" => ">", "amp" => "&", "quot" => '"', "apos" => "'" } |
Instance Public methods
method_missing(*a)
Link
Source: show
# File lib/xmlrpc/parser.rb, line 805 def method_missing(*a) end
on_cdata(str)
Link
Source: show
# File lib/xmlrpc/parser.rb, line 784 def on_cdata(str) character(str) end
on_chardata(str)
Link
Source: show
# File lib/xmlrpc/parser.rb, line 780 def on_chardata(str) character(str) end
on_charref(code)
Link
Source: show
# File lib/xmlrpc/parser.rb, line 797 def on_charref(code) character(code.chr) end
on_charref_hex(code)
Link
Source: show
# File lib/xmlrpc/parser.rb, line 801 def on_charref_hex(code) character(code.chr) end
on_entityref(ent)
Link
Source: show
# File lib/xmlrpc/parser.rb, line 788 def on_entityref(ent) str = Entities[ent] if str character(str) else raise "unknown entity" end end
on_stag_end(name)
Link
Source: show
# File lib/xmlrpc/parser.rb, line 773 def on_stag_end(name); end