X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Robots%2Fparse_html.py;h=137ebfad9809d369712483bfa63b97744f7c6f1a;hb=284b0935fc4237bda2e51229860c771f78887be2;hp=888e27c9f79a2f7d6310dd3129454d8b6b360d67;hpb=4e86db886a2c446928438a038002b3084e7c0977;p=bookmarks_db.git diff --git a/Robots/parse_html.py b/Robots/parse_html.py index 888e27c..137ebfa 100755 --- a/Robots/parse_html.py +++ b/Robots/parse_html.py @@ -7,19 +7,17 @@ import codecs -from m_lib.defenc import default_encoding -current_charset = default_encoding.replace("windows-", "cp") - universal_charset = "utf-8" DEFAULT_CHARSET = "cp1251" # Stupid default for Russian Cyrillic parsers = [] try: - from parse_html_beautifulsoup import parse_html + import parse_html_beautifulsoup + parse_html_beautifulsoup.DEFAULT_CHARSET = DEFAULT_CHARSET except ImportError: pass else: - parsers.append(parse_html) + parsers.append(parse_html_beautifulsoup.parse_html) from parse_html_htmlparser import parse_html parsers.append(parse_html) @@ -35,7 +33,8 @@ def recode_entities(title, charset): output = [] for part in entity_re.split(title): if entity_re.match(part): - part = entitydefs.get(part[1:-1], part) + if part not in ("&", "<", ">", ""e;", " "): + part = entitydefs.get(part[1:-1], part) output.append(part) output2 = [] @@ -58,7 +57,16 @@ def parse_html(filename, charset=None, log=None): charset = None # ...try charset from HTML for p in parsers: - parser = p(filename, charset) + charsets = [universal_charset, DEFAULT_CHARSET] + if charset not in charsets: + charsets.insert(0, charset) + parser = None + for c in charsets: + try: + parser = p(filename, c) + break + except UnicodeEncodeError: + pass if parser: break else: @@ -79,20 +87,15 @@ def parse_html(filename, charset=None, log=None): if parser.meta_charset: if log: log(" META charset : %s" % parser.charset) else: - if log: log(" HTTP charset : %s" % parser.charset) + if log: log(" guessed charset: %s" % parser.charset) if log: log(" current charset: %s" % universal_charset) if log: log(" title : %s" % title) - save_title = title try: converted_title = unicode(title, parser.charset).encode(universal_charset) except UnicodeError: - if parser.meta_charset and parser.charset.endswith("1252") and \ - not DEFAULT_CHARSET.endswith("1252") and (DEFAULT_CHARSET <> universal_charset): - parser.charset = DEFAULT_CHARSET - if log: log(" incorrect conversion from cp1252, converting from %s" % DEFAULT_CHARSET) - converted_title = unicode(save_title, DEFAULT_CHARSET, "replace").encode(universal_charset, "replace") - else: - converted_title = unicode(title, parser.charset, "replace").encode(universal_charset, "replace") + if log: log(" incorrect conversion from %s, converting from %s" % (parser.charset, DEFAULT_CHARSET)) + converted_title = unicode(title, DEFAULT_CHARSET, "replace").encode(universal_charset, "replace") + parser.charset = DEFAULT_CHARSET if log and (converted_title <> title): log(" converted title: %s" % converted_title) except LookupError: if log: log(" unknown charset: `%s' or `%s'" % (parser.charset, universal_charset)) @@ -109,9 +112,10 @@ def parse_html(filename, charset=None, log=None): if __name__ == '__main__': import sys - parser = parse_html(sys.argv[1], universal_charset) - print parser.charset - print parser.title - print parser.title.decode(universal_charset).encode(current_charset, "replace") - print parser.refresh - print parser.icon + from m_lib.defenc import default_encoding + current_charset = default_encoding.replace("windows-", "cp") + + parser = parse_html(sys.argv[1], universal_charset, + log=lambda s: sys.stdout.write(s + '\n')) + print " refresh:", parser.refresh + print " icon :", parser.icon