module LibXML::XML::SaxParser::Callbacks

Public Instance Methods

on_cdata_block(cdata) click to toggle source

Called for a CDATA block event.

# File lib/libxml/sax_callbacks.rb, line 7
def on_cdata_block(cdata)
end
on_characters(chars) click to toggle source

Called for a characters event.

# File lib/libxml/sax_callbacks.rb, line 11
def on_characters(chars)
end
on_comment(msg) click to toggle source

Called for a comment event.

# File lib/libxml/sax_callbacks.rb, line 15
def on_comment(msg)
end
on_end_document() click to toggle source

Called for a end document event.

# File lib/libxml/sax_callbacks.rb, line 19
def on_end_document
end
on_end_element_ns(name, prefix, uri) click to toggle source

Called for a end element event.

# File lib/libxml/sax_callbacks.rb, line 23
def on_end_element_ns(name, prefix, uri)
end
on_error(msg) click to toggle source

Called for parser errors.

# File lib/libxml/sax_callbacks.rb, line 27
def on_error(msg)
end
on_external_subset(name, external_id, system_id) click to toggle source

Called for an external subset event.

# File lib/libxml/sax_callbacks.rb, line 31
def on_external_subset(name, external_id, system_id)
end
on_has_external_subset() click to toggle source

Called for an external subset notification event.

# File lib/libxml/sax_callbacks.rb, line 35
def on_has_external_subset
end
on_has_internal_subset() click to toggle source

Called for an internal subset notification event.

# File lib/libxml/sax_callbacks.rb, line 39
def on_has_internal_subset
end
on_internal_subset(name, external_id, system_id) click to toggle source

Called for an internal subset event.

# File lib/libxml/sax_callbacks.rb, line 43
def on_internal_subset(name, external_id, system_id)
end
on_is_standalone() click to toggle source

Called for 'is standalone' event.

# File lib/libxml/sax_callbacks.rb, line 47
def on_is_standalone
end
on_processing_instruction(target, data) click to toggle source

Called for an processing instruction event.

# File lib/libxml/sax_callbacks.rb, line 51
def on_processing_instruction(target, data)
end
on_reference(name) click to toggle source

Called for a reference event.

# File lib/libxml/sax_callbacks.rb, line 55
def on_reference(name)
end
on_start_document() click to toggle source

Called for a start document event.

# File lib/libxml/sax_callbacks.rb, line 59
def on_start_document
end
on_start_element_ns(name, attributes, prefix, uri, namespaces) click to toggle source

Called for a start element event.

# File lib/libxml/sax_callbacks.rb, line 63
def on_start_element_ns(name, attributes, prefix, uri, namespaces)
end