Adapter from the standard SAX events
Methods
|
|
|
|
__init__
|
__init__ (
self,
prefix="",
remap={},
)
|
|
acquire
|
acquire (
self,
obj,
prefix="",
)
|
|
characters
|
characters ( self, s )
|
|
endDocument
|
endDocument ( self )
|
|
endElement
|
endElement ( self, tag )
|
|
get_characters
|
get_characters ( self )
|
|
save_characters
|
save_characters ( self )
Stack-based way for the handlers to get data without
stepping on each other's toes -- so long as the calls
are balanced!
|
|
startDocument
|
startDocument ( self )
Dispatch events to the appropriate handlers
|
|
startElement
|
startElement (
self,
tag,
attrs,
)
|
|
uses_tags
|
uses_tags ( self )
|
|