twisted.web.microdom.MicroDOMParser(XMLParser)
class documentationtwisted.web.microdom
View Source
(View In Hierarchy)
Method | __init__ | Undocumented |
Method | shouldPreserveSpace | Undocumented |
Method | gotDoctype | Encountered DOCTYPE |
Method | gotTagStart | Encountered an opening tag. |
Method | gotText | Encountered text |
Method | gotComment | Encountered comment. |
Method | gotEntityReference | Encountered mnemonic entity reference |
Method | gotCData | Encountered CDATA |
Method | gotTagEnd | Encountered closing tag |
Method | connectionLost | End the last state we were in. |
Method | _getparent | Undocumented |
Method | _fixScriptElement | Undocumented |
Method | _gotStandalone | Undocumented |
Inherited from XMLParser:
Method | connectionMade | Called when a connection is made. |
Method | saveMark | Get the line number and column of the last character parsed |
Method | maybeBodyData | Undocumented |
Method | dataReceived | Called whenever data is received. |
Method | do_begin | Undocumented |
Method | begin_comment | Undocumented |
Method | do_comment | Undocumented |
Method | begin_tagstart | Undocumented |
Method | do_tagstart | Undocumented |
Method | begin_unentity | Undocumented |
Method | do_unentity | Undocumented |
Method | end_unentity | Undocumented |
Method | begin_expectcdata | Undocumented |
Method | do_expectcdata | Undocumented |
Method | do_cdata | Undocumented |
Method | end_cdata | Undocumented |
Method | do_attrs | Undocumented |
Method | begin_doctype | Undocumented |
Method | do_doctype | Undocumented |
Method | end_doctype | Undocumented |
Method | do_waitforgt | Undocumented |
Method | begin_attrname | Undocumented |
Method | do_attrname | Undocumented |
Method | do_beforeattrval | Undocumented |
Method | begin_beforeeq | Undocumented |
Method | do_beforeeq | Undocumented |
Method | begin_attrval | Undocumented |
Method | do_attrval | Undocumented |
Method | end_attrval | Undocumented |
Method | begin_messyattr | Undocumented |
Method | do_messyattr | Undocumented |
Method | end_messyattr | Undocumented |
Method | begin_afterslash | Undocumented |
Method | do_afterslash | Undocumented |
Method | begin_bodydata | Undocumented |
Method | do_bodydata | Undocumented |
Method | end_bodydata | Undocumented |
Method | do_waitforendscript | Undocumented |
Method | begin_waitscriptendtag | Undocumented |
Method | do_waitscriptendtag | Undocumented |
Method | begin_entityref | Undocumented |
Method | do_entityref | Undocumented |
Method | end_entityref | Undocumented |
Method | begin_spacebodydata | Undocumented |
Method | _parseError | Undocumented |
Method | _buildStateTable | Return a dictionary of begin, do, end state function tuples |
Method | _decode | Undocumented |
Inherited from Protocol (via XMLParser):
Method | logPrefix | Return a prefix matching the class name, to identify log messages related to this protocol instance. |
Inherited from BaseProtocol (via XMLParser, Protocol):
Method | makeConnection | Make a connection to a transport and a server. |
Encountered DOCTYPE
This is really grotty: it basically just gives you everything between '<!DOCTYPE' and '>' as an argument.
Encountered an opening tag.
Default behaviour is to print.
Encountered text
Default behaviour is to print.
Encountered comment.
Default behaviour is to ignore.
Encountered mnemonic entity reference
Default behaviour is to print.
Encountered CDATA
Default behaviour is to call the gotText method
Encountered closing tag
Default behaviour is to print.
End the last state we were in.