Object
# File xmlrpc/parser.rb, line 780
def method_missing(*a)
end
# File xmlrpc/parser.rb, line 759
def on_cdata(str)
character(str)
end
# File xmlrpc/parser.rb, line 755
def on_chardata(str)
character(str)
end
# File xmlrpc/parser.rb, line 772
def on_charref(code)
character(code.chr)
end
# File xmlrpc/parser.rb, line 776
def on_charref_hex(code)
character(code.chr)
end
# File xmlrpc/parser.rb, line 763
def on_entityref(ent)
str = Entities[ent]
if str
character(str)
else
raise "unknown entity"
end
end
# File xmlrpc/parser.rb, line 748
def on_stag_end(name); end