module LibXML::XML::SaxParser::Callbacks
Public Instance Methods
Source
# File lib/libxml/sax_callbacks.rb, line 8 def on_cdata_block(cdata) end
Called for a CDATA block event.
Source
# File lib/libxml/sax_callbacks.rb, line 12 def on_characters(chars) end
Called for a characters event.
Source
# File lib/libxml/sax_callbacks.rb, line 16 def on_comment(msg) end
Called for a comment event.
Source
# File lib/libxml/sax_callbacks.rb, line 20 def on_end_document end
Called for a end document event.
Source
# File lib/libxml/sax_callbacks.rb, line 24 def on_end_element_ns(name, prefix, uri) end
Called for a end element event.
Source
# File lib/libxml/sax_callbacks.rb, line 28 def on_error(msg) end
Called for parser errors.
Source
# File lib/libxml/sax_callbacks.rb, line 32 def on_external_subset(name, external_id, system_id) end
Called for an external subset event.
Source
# File lib/libxml/sax_callbacks.rb, line 36 def on_has_external_subset end
Called for an external subset notification event.
Source
# File lib/libxml/sax_callbacks.rb, line 40 def on_has_internal_subset end
Called for an internal subset notification event.
Source
# File lib/libxml/sax_callbacks.rb, line 44 def on_internal_subset(name, external_id, system_id) end
Called for an internal subset event.
Source
# File lib/libxml/sax_callbacks.rb, line 48 def on_is_standalone end
Called for ‘is standalone’ event.
Source
# File lib/libxml/sax_callbacks.rb, line 52 def on_processing_instruction(target, data) end
Called for an processing instruction event.
Source
# File lib/libxml/sax_callbacks.rb, line 56 def on_reference(name) end
Called for a reference event.
Source
# File lib/libxml/sax_callbacks.rb, line 60 def on_start_document end
Called for a start document event.
Source
# File lib/libxml/sax_callbacks.rb, line 64 def on_start_element_ns(name, attributes, prefix, uri, namespaces) end
Called for a start element event.