Object
# File xmlrpc/parser.rb, line 779
def method_missing(*a)
end
# File xmlrpc/parser.rb, line 758
def on_cdata(str)
character(str)
end
# File xmlrpc/parser.rb, line 754
def on_chardata(str)
character(str)
end
# File xmlrpc/parser.rb, line 771
def on_charref(code)
character(code.chr)
end
# File xmlrpc/parser.rb, line 775
def on_charref_hex(code)
character(code.chr)
end
# File xmlrpc/parser.rb, line 762
def on_entityref(ent)
str = Entities[ent]
if str
character(str)
else
raise "unknown entity"
end
end
# File xmlrpc/parser.rb, line 747
def on_stag_end(name); end
Commenting is here to help enhance the documentation. For example, sample code, or clarification of the documentation.
If you are posting code samples in your comments, please wrap them in "<pre><code class="ruby" > ... </code></pre>" markup in order to get syntax highlighting.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file a bug report so that it can be corrected for the next release. Thank you.