|
| def | __init__ (self, spaces=2) |
| |
| def | br_start (self, attrs=None) |
| |
| def | handle_charref (self, number) |
| |
| def | handle_data (self, data) |
| |
| def | handle_endtag (self, tag) |
| |
| def | handle_entityref (self, name) |
| |
| def | handle_pi (self, data) |
| |
| def | handle_starttag (self, tag, attrs) |
| |
| def | meta_start (self, attrs) |
| |
| def | read (self, htmlfile, populator, path=None) |
| |
| def | table_end (self) |
| |
| def | table_start (self, attrs=None) |
| |
| def | td_end (self) |
| |
| def | td_start (self, attrs=None) |
| |
| def | tr_end (self) |
| |
| def | tr_start (self, attrs=None) |
| |
| def | unknown_decl (self, data) |
| |
Definition at line 33 of file htmlreader.py.
◆ __init__()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.__init__ |
( |
|
self, |
|
|
|
spaces = 2 |
|
) |
| |
◆ _decode()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader._decode |
( |
|
self, |
|
|
|
line |
|
) |
| |
|
private |
◆ _get_encoding_from_content_attr()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader._get_encoding_from_content_attr |
( |
|
self, |
|
|
|
value |
|
) |
| |
|
private |
◆ _get_encoding_from_meta()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader._get_encoding_from_meta |
( |
|
self, |
|
|
|
attrs |
|
) |
| |
|
private |
◆ _get_encoding_from_pi()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader._get_encoding_from_pi |
( |
|
self, |
|
|
|
data |
|
) |
| |
|
private |
◆ _handle_charref()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader._handle_charref |
( |
|
self, |
|
|
|
number |
|
) |
| |
|
private |
◆ _handle_entityref()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader._handle_entityref |
( |
|
self, |
|
|
|
name |
|
) |
| |
|
private |
◆ br_start()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.br_start |
( |
|
self, |
|
|
|
attrs = None |
|
) |
| |
◆ handle_charref()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.handle_charref |
( |
|
self, |
|
|
|
number |
|
) |
| |
◆ handle_data()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.handle_data |
( |
|
self, |
|
|
|
data |
|
) |
| |
◆ handle_endtag()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.handle_endtag |
( |
|
self, |
|
|
|
tag |
|
) |
| |
◆ handle_entityref()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.handle_entityref |
( |
|
self, |
|
|
|
name |
|
) |
| |
◆ handle_pi()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.handle_pi |
( |
|
self, |
|
|
|
data |
|
) |
| |
◆ handle_starttag()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.handle_starttag |
( |
|
self, |
|
|
|
tag, |
|
|
|
attrs |
|
) |
| |
◆ meta_start()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.meta_start |
( |
|
self, |
|
|
|
attrs |
|
) |
| |
◆ read()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.read |
( |
|
self, |
|
|
|
htmlfile, |
|
|
|
populator, |
|
|
|
path = None |
|
) |
| |
◆ table_end()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.table_end |
( |
|
self | ) |
|
◆ table_start()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.table_start |
( |
|
self, |
|
|
|
attrs = None |
|
) |
| |
◆ td_end()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.td_end |
( |
|
self | ) |
|
◆ td_start()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.td_start |
( |
|
self, |
|
|
|
attrs = None |
|
) |
| |
◆ tr_end()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.tr_end |
( |
|
self | ) |
|
◆ tr_start()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.tr_start |
( |
|
self, |
|
|
|
attrs = None |
|
) |
| |
◆ unknown_decl()
| def robotide.lib.robot.parsing.htmlreader.HtmlReader.unknown_decl |
( |
|
self, |
|
|
|
data |
|
) |
| |
◆ _encoding
| robotide.lib.robot.parsing.htmlreader.HtmlReader._encoding |
|
private |
◆ _handlers
| robotide.lib.robot.parsing.htmlreader.HtmlReader._handlers |
|
private |
◆ _spaces
| robotide.lib.robot.parsing.htmlreader.HtmlReader._spaces |
|
private |
◆ current_cell
| robotide.lib.robot.parsing.htmlreader.HtmlReader.current_cell |
◆ current_row
| robotide.lib.robot.parsing.htmlreader.HtmlReader.current_row |
◆ IGNORE
| int robotide.lib.robot.parsing.htmlreader.HtmlReader.IGNORE = 0 |
|
static |
◆ INITIAL
| int robotide.lib.robot.parsing.htmlreader.HtmlReader.INITIAL = 1 |
|
static |
◆ populator
| robotide.lib.robot.parsing.htmlreader.HtmlReader.populator |
◆ PROCESS
| int robotide.lib.robot.parsing.htmlreader.HtmlReader.PROCESS = 2 |
|
static |
◆ state
| robotide.lib.robot.parsing.htmlreader.HtmlReader.state |
The documentation for this class was generated from the following file: