(htmlSource, baseURI, encoding, _type)
| 2462 | _BaseHTMLProcessor.unknown_starttag(self, tag, attrs) |
| 2463 | |
| 2464 | def _resolveRelativeURIs(htmlSource, baseURI, encoding, _type): |
| 2465 | if _debug: |
| 2466 | sys.stderr.write('entering _resolveRelativeURIs\n') |
| 2467 | |
| 2468 | p = _RelativeURIResolver(baseURI, encoding, _type) |
| 2469 | p.feed(htmlSource) |
| 2470 | return p.output() |
| 2471 | |
| 2472 | def _makeSafeAbsoluteURI(base, rel=None): |
| 2473 | # bail if ACCEPTABLE_URI_SCHEMES is empty |
no test coverage detected