| 1 | """HTML 2.0 parser.
|
|---|
| 2 |
|
|---|
| 3 | See the HTML 2.0 specification:
|
|---|
| 4 | http://www.w3.org/hypertext/WWW/MarkUp/html-spec/html-spec_toc.html
|
|---|
| 5 | """
|
|---|
| 6 |
|
|---|
| 7 | import sgmllib
|
|---|
| 8 |
|
|---|
| 9 | from formatter import AS_IS
|
|---|
| 10 |
|
|---|
| 11 | __all__ = ["HTMLParser", "HTMLParseError"]
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 | class HTMLParseError(sgmllib.SGMLParseError):
|
|---|
| 15 | """Error raised when an HTML document can't be parsed."""
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 | class HTMLParser(sgmllib.SGMLParser):
|
|---|
| 19 | """This is the basic HTML parser class.
|
|---|
| 20 |
|
|---|
| 21 | It supports all entity names required by the XHTML 1.0 Recommendation.
|
|---|
| 22 | It also defines handlers for all HTML 2.0 and many HTML 3.0 and 3.2
|
|---|
| 23 | elements.
|
|---|
| 24 |
|
|---|
| 25 | """
|
|---|
| 26 |
|
|---|
| 27 | from htmlentitydefs import entitydefs
|
|---|
| 28 |
|
|---|
| 29 | def __init__(self, formatter, verbose=0):
|
|---|
| 30 | """Creates an instance of the HTMLParser class.
|
|---|
| 31 |
|
|---|
| 32 | The formatter parameter is the formatter instance associated with
|
|---|
| 33 | the parser.
|
|---|
| 34 |
|
|---|
| 35 | """
|
|---|
| 36 | sgmllib.SGMLParser.__init__(self, verbose)
|
|---|
| 37 | self.formatter = formatter
|
|---|
| 38 |
|
|---|
| 39 | def error(self, message):
|
|---|
| 40 | raise HTMLParseError(message)
|
|---|
| 41 |
|
|---|
| 42 | def reset(self):
|
|---|
| 43 | sgmllib.SGMLParser.reset(self)
|
|---|
| 44 | self.savedata = None
|
|---|
| 45 | self.isindex = 0
|
|---|
| 46 | self.title = None
|
|---|
| 47 | self.base = None
|
|---|
| 48 | self.anchor = None
|
|---|
| 49 | self.anchorlist = []
|
|---|
| 50 | self.nofill = 0
|
|---|
| 51 | self.list_stack = []
|
|---|
| 52 |
|
|---|
| 53 | # ------ Methods used internally; some may be overridden
|
|---|
| 54 |
|
|---|
| 55 | # --- Formatter interface, taking care of 'savedata' mode;
|
|---|
| 56 | # shouldn't need to be overridden
|
|---|
| 57 |
|
|---|
| 58 | def handle_data(self, data):
|
|---|
| 59 | if self.savedata is not None:
|
|---|
| 60 | self.savedata = self.savedata + data
|
|---|
| 61 | else:
|
|---|
| 62 | if self.nofill:
|
|---|
| 63 | self.formatter.add_literal_data(data)
|
|---|
| 64 | else:
|
|---|
| 65 | self.formatter.add_flowing_data(data)
|
|---|
| 66 |
|
|---|
| 67 | # --- Hooks to save data; shouldn't need to be overridden
|
|---|
| 68 |
|
|---|
| 69 | def save_bgn(self):
|
|---|
| 70 | """Begins saving character data in a buffer instead of sending it
|
|---|
| 71 | to the formatter object.
|
|---|
| 72 |
|
|---|
| 73 | Retrieve the stored data via the save_end() method. Use of the
|
|---|
| 74 | save_bgn() / save_end() pair may not be nested.
|
|---|
| 75 |
|
|---|
| 76 | """
|
|---|
| 77 | self.savedata = ''
|
|---|
| 78 |
|
|---|
| 79 | def save_end(self):
|
|---|
| 80 | """Ends buffering character data and returns all data saved since
|
|---|
| 81 | the preceding call to the save_bgn() method.
|
|---|
| 82 |
|
|---|
| 83 | If the nofill flag is false, whitespace is collapsed to single
|
|---|
| 84 | spaces. A call to this method without a preceding call to the
|
|---|
| 85 | save_bgn() method will raise a TypeError exception.
|
|---|
| 86 |
|
|---|
| 87 | """
|
|---|
| 88 | data = self.savedata
|
|---|
| 89 | self.savedata = None
|
|---|
| 90 | if not self.nofill:
|
|---|
| 91 | data = ' '.join(data.split())
|
|---|
| 92 | return data
|
|---|
| 93 |
|
|---|
| 94 | # --- Hooks for anchors; should probably be overridden
|
|---|
| 95 |
|
|---|
| 96 | def anchor_bgn(self, href, name, type):
|
|---|
| 97 | """This method is called at the start of an anchor region.
|
|---|
| 98 |
|
|---|
| 99 | The arguments correspond to the attributes of the <A> tag with
|
|---|
| 100 | the same names. The default implementation maintains a list of
|
|---|
| 101 | hyperlinks (defined by the HREF attribute for <A> tags) within
|
|---|
| 102 | the document. The list of hyperlinks is available as the data
|
|---|
| 103 | attribute anchorlist.
|
|---|
| 104 |
|
|---|
| 105 | """
|
|---|
| 106 | self.anchor = href
|
|---|
| 107 | if self.anchor:
|
|---|
| 108 | self.anchorlist.append(href)
|
|---|
| 109 |
|
|---|
| 110 | def anchor_end(self):
|
|---|
| 111 | """This method is called at the end of an anchor region.
|
|---|
| 112 |
|
|---|
| 113 | The default implementation adds a textual footnote marker using an
|
|---|
| 114 | index into the list of hyperlinks created by the anchor_bgn()method.
|
|---|
| 115 |
|
|---|
| 116 | """
|
|---|
| 117 | if self.anchor:
|
|---|
| 118 | self.handle_data("[%d]" % len(self.anchorlist))
|
|---|
| 119 | self.anchor = None
|
|---|
| 120 |
|
|---|
| 121 | # --- Hook for images; should probably be overridden
|
|---|
| 122 |
|
|---|
| 123 | def handle_image(self, src, alt, *args):
|
|---|
| 124 | """This method is called to handle images.
|
|---|
| 125 |
|
|---|
| 126 | The default implementation simply passes the alt value to the
|
|---|
| 127 | handle_data() method.
|
|---|
| 128 |
|
|---|
| 129 | """
|
|---|
| 130 | self.handle_data(alt)
|
|---|
| 131 |
|
|---|
| 132 | # --------- Top level elememts
|
|---|
| 133 |
|
|---|
| 134 | def start_html(self, attrs): pass
|
|---|
| 135 | def end_html(self): pass
|
|---|
| 136 |
|
|---|
| 137 | def start_head(self, attrs): pass
|
|---|
| 138 | def end_head(self): pass
|
|---|
| 139 |
|
|---|
| 140 | def start_body(self, attrs): pass
|
|---|
| 141 | def end_body(self): pass
|
|---|
| 142 |
|
|---|
| 143 | # ------ Head elements
|
|---|
| 144 |
|
|---|
| 145 | def start_title(self, attrs):
|
|---|
| 146 | self.save_bgn()
|
|---|
| 147 |
|
|---|
| 148 | def end_title(self):
|
|---|
| 149 | self.title = self.save_end()
|
|---|
| 150 |
|
|---|
| 151 | def do_base(self, attrs):
|
|---|
| 152 | for a, v in attrs:
|
|---|
| 153 | if a == 'href':
|
|---|
| 154 | self.base = v
|
|---|
| 155 |
|
|---|
| 156 | def do_isindex(self, attrs):
|
|---|
| 157 | self.isindex = 1
|
|---|
| 158 |
|
|---|
| 159 | def do_link(self, attrs):
|
|---|
| 160 | pass
|
|---|
| 161 |
|
|---|
| 162 | def do_meta(self, attrs):
|
|---|
| 163 | pass
|
|---|
| 164 |
|
|---|
| 165 | def do_nextid(self, attrs): # Deprecated
|
|---|
| 166 | pass
|
|---|
| 167 |
|
|---|
| 168 | # ------ Body elements
|
|---|
| 169 |
|
|---|
| 170 | # --- Headings
|
|---|
| 171 |
|
|---|
| 172 | def start_h1(self, attrs):
|
|---|
| 173 | self.formatter.end_paragraph(1)
|
|---|
| 174 | self.formatter.push_font(('h1', 0, 1, 0))
|
|---|
| 175 |
|
|---|
| 176 | def end_h1(self):
|
|---|
| 177 | self.formatter.end_paragraph(1)
|
|---|
| 178 | self.formatter.pop_font()
|
|---|
| 179 |
|
|---|
| 180 | def start_h2(self, attrs):
|
|---|
| 181 | self.formatter.end_paragraph(1)
|
|---|
| 182 | self.formatter.push_font(('h2', 0, 1, 0))
|
|---|
| 183 |
|
|---|
| 184 | def end_h2(self):
|
|---|
| 185 | self.formatter.end_paragraph(1)
|
|---|
| 186 | self.formatter.pop_font()
|
|---|
| 187 |
|
|---|
| 188 | def start_h3(self, attrs):
|
|---|
| 189 | self.formatter.end_paragraph(1)
|
|---|
| 190 | self.formatter.push_font(('h3', 0, 1, 0))
|
|---|
| 191 |
|
|---|
| 192 | def end_h3(self):
|
|---|
| 193 | self.formatter.end_paragraph(1)
|
|---|
| 194 | self.formatter.pop_font()
|
|---|
| 195 |
|
|---|
| 196 | def start_h4(self, attrs):
|
|---|
| 197 | self.formatter.end_paragraph(1)
|
|---|
| 198 | self.formatter.push_font(('h4', 0, 1, 0))
|
|---|
| 199 |
|
|---|
| 200 | def end_h4(self):
|
|---|
| 201 | self.formatter.end_paragraph(1)
|
|---|
| 202 | self.formatter.pop_font()
|
|---|
| 203 |
|
|---|
| 204 | def start_h5(self, attrs):
|
|---|
| 205 | self.formatter.end_paragraph(1)
|
|---|
| 206 | self.formatter.push_font(('h5', 0, 1, 0))
|
|---|
| 207 |
|
|---|
| 208 | def end_h5(self):
|
|---|
| 209 | self.formatter.end_paragraph(1)
|
|---|
| 210 | self.formatter.pop_font()
|
|---|
| 211 |
|
|---|
| 212 | def start_h6(self, attrs):
|
|---|
| 213 | self.formatter.end_paragraph(1)
|
|---|
| 214 | self.formatter.push_font(('h6', 0, 1, 0))
|
|---|
| 215 |
|
|---|
| 216 | def end_h6(self):
|
|---|
| 217 | self.formatter.end_paragraph(1)
|
|---|
| 218 | self.formatter.pop_font()
|
|---|
| 219 |
|
|---|
| 220 | # --- Block Structuring Elements
|
|---|
| 221 |
|
|---|
| 222 | def do_p(self, attrs):
|
|---|
| 223 | self.formatter.end_paragraph(1)
|
|---|
| 224 |
|
|---|
| 225 | def start_pre(self, attrs):
|
|---|
| 226 | self.formatter.end_paragraph(1)
|
|---|
| 227 | self.formatter.push_font((AS_IS, AS_IS, AS_IS, 1))
|
|---|
| 228 | self.nofill = self.nofill + 1
|
|---|
| 229 |
|
|---|
| 230 | def end_pre(self):
|
|---|
| 231 | self.formatter.end_paragraph(1)
|
|---|
| 232 | self.formatter.pop_font()
|
|---|
| 233 | self.nofill = max(0, self.nofill - 1)
|
|---|
| 234 |
|
|---|
| 235 | def start_xmp(self, attrs):
|
|---|
| 236 | self.start_pre(attrs)
|
|---|
| 237 | self.setliteral('xmp') # Tell SGML parser
|
|---|
| 238 |
|
|---|
| 239 | def end_xmp(self):
|
|---|
| 240 | self.end_pre()
|
|---|
| 241 |
|
|---|
| 242 | def start_listing(self, attrs):
|
|---|
| 243 | self.start_pre(attrs)
|
|---|
| 244 | self.setliteral('listing') # Tell SGML parser
|
|---|
| 245 |
|
|---|
| 246 | def end_listing(self):
|
|---|
| 247 | self.end_pre()
|
|---|
| 248 |
|
|---|
| 249 | def start_address(self, attrs):
|
|---|
| 250 | self.formatter.end_paragraph(0)
|
|---|
| 251 | self.formatter.push_font((AS_IS, 1, AS_IS, AS_IS))
|
|---|
| 252 |
|
|---|
| 253 | def end_address(self):
|
|---|
| 254 | self.formatter.end_paragraph(0)
|
|---|
| 255 | self.formatter.pop_font()
|
|---|
| 256 |
|
|---|
| 257 | def start_blockquote(self, attrs):
|
|---|
| 258 | self.formatter.end_paragraph(1)
|
|---|
| 259 | self.formatter.push_margin('blockquote')
|
|---|
| 260 |
|
|---|
| 261 | def end_blockquote(self):
|
|---|
| 262 | self.formatter.end_paragraph(1)
|
|---|
| 263 | self.formatter.pop_margin()
|
|---|
| 264 |
|
|---|
| 265 | # --- List Elements
|
|---|
| 266 |
|
|---|
| 267 | def start_ul(self, attrs):
|
|---|
| 268 | self.formatter.end_paragraph(not self.list_stack)
|
|---|
| 269 | self.formatter.push_margin('ul')
|
|---|
| 270 | self.list_stack.append(['ul', '*', 0])
|
|---|
| 271 |
|
|---|
| 272 | def end_ul(self):
|
|---|
| 273 | if self.list_stack: del self.list_stack[-1]
|
|---|
| 274 | self.formatter.end_paragraph(not self.list_stack)
|
|---|
| 275 | self.formatter.pop_margin()
|
|---|
| 276 |
|
|---|
| 277 | def do_li(self, attrs):
|
|---|
| 278 | self.formatter.end_paragraph(0)
|
|---|
| 279 | if self.list_stack:
|
|---|
| 280 | [dummy, label, counter] = top = self.list_stack[-1]
|
|---|
| 281 | top[2] = counter = counter+1
|
|---|
| 282 | else:
|
|---|
| 283 | label, counter = '*', 0
|
|---|
| 284 | self.formatter.add_label_data(label, counter)
|
|---|
| 285 |
|
|---|
| 286 | def start_ol(self, attrs):
|
|---|
| 287 | self.formatter.end_paragraph(not self.list_stack)
|
|---|
| 288 | self.formatter.push_margin('ol')
|
|---|
| 289 | label = '1.'
|
|---|
| 290 | for a, v in attrs:
|
|---|
| 291 | if a == 'type':
|
|---|
| 292 | if len(v) == 1: v = v + '.'
|
|---|
| 293 | label = v
|
|---|
| 294 | self.list_stack.append(['ol', label, 0])
|
|---|
| 295 |
|
|---|
| 296 | def end_ol(self):
|
|---|
| 297 | if self.list_stack: del self.list_stack[-1]
|
|---|
| 298 | self.formatter.end_paragraph(not self.list_stack)
|
|---|
| 299 | self.formatter.pop_margin()
|
|---|
| 300 |
|
|---|
| 301 | def start_menu(self, attrs):
|
|---|
| 302 | self.start_ul(attrs)
|
|---|
| 303 |
|
|---|
| 304 | def end_menu(self):
|
|---|
| 305 | self.end_ul()
|
|---|
| 306 |
|
|---|
| 307 | def start_dir(self, attrs):
|
|---|
| 308 | self.start_ul(attrs)
|
|---|
| 309 |
|
|---|
| 310 | def end_dir(self):
|
|---|
| 311 | self.end_ul()
|
|---|
| 312 |
|
|---|
| 313 | def start_dl(self, attrs):
|
|---|
| 314 | self.formatter.end_paragraph(1)
|
|---|
| 315 | self.list_stack.append(['dl', '', 0])
|
|---|
| 316 |
|
|---|
| 317 | def end_dl(self):
|
|---|
| 318 | self.ddpop(1)
|
|---|
| 319 | if self.list_stack: del self.list_stack[-1]
|
|---|
| 320 |
|
|---|
| 321 | def do_dt(self, attrs):
|
|---|
| 322 | self.ddpop()
|
|---|
| 323 |
|
|---|
| 324 | def do_dd(self, attrs):
|
|---|
| 325 | self.ddpop()
|
|---|
| 326 | self.formatter.push_margin('dd')
|
|---|
| 327 | self.list_stack.append(['dd', '', 0])
|
|---|
| 328 |
|
|---|
| 329 | def ddpop(self, bl=0):
|
|---|
| 330 | self.formatter.end_paragraph(bl)
|
|---|
| 331 | if self.list_stack:
|
|---|
| 332 | if self.list_stack[-1][0] == 'dd':
|
|---|
| 333 | del self.list_stack[-1]
|
|---|
| 334 | self.formatter.pop_margin()
|
|---|
| 335 |
|
|---|
| 336 | # --- Phrase Markup
|
|---|
| 337 |
|
|---|
| 338 | # Idiomatic Elements
|
|---|
| 339 |
|
|---|
| 340 | def start_cite(self, attrs): self.start_i(attrs)
|
|---|
| 341 | def end_cite(self): self.end_i()
|
|---|
| 342 |
|
|---|
|
|---|