Class | RSS::XMLScanListener |
In: |
rss/xmlscanner.rb
|
Parent: | BaseListener |
ENTITIES | = | { 'lt' => '<', 'gt' => '>', 'amp' => '&', 'quot' => '"', 'apos' => '\'' |
instruction | -> | on_pi |
text | -> | on_chardata |
text | -> | on_cdata |
# File rss/xmlscanner.rb, line 95 def on_stag_end_empty(name) tag_start(name, @attrs) tag_end(name) end
# File rss/xmlscanner.rb, line 47 def on_xmldecl_end xmldecl(@version, @encoding, @standalone == "yes") end