import xmlproc
class Application def __init__(self,parser) string __module__ = 'xmlproc' def doc_end(self) def doc_start(self) def fatal(self,msg) def handle_comment(self,data) def handle_data(self,data,start,end) def handle_doctype(self,root,pubID,sysID) def handle_end_tag(self,name) def handle_ignorable_data(self,data,start,end) def handle_pi(self,target,data) def handle_start_tag(self,name,attrs) def resolve_ent_ref(self,entname) def set_entity_info(self,xmlver,enc,sddecl) def warning(self,msg)
Notifies the application of the end of the document.
Notifies the application of the start of the document.
Handles a fatal error message.
Notifies the application of comments.
Notifies the application of character data.
Notifies the application of the document type declaration.
Notifies the application of end tags (and empty element tags).
Notifies the application of character data that can be ignored.
Notifies the application of processing instructions.
Notifies the application of start tags (and empty element tags).
Resolves an entity reference and returns its contents. The default method only resolves the predefined entities.
Notifies the application of information about the current entity supplied by an XML declaration.
Handles a non-fatal error message.