X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Robots%2Fparse_html_beautifulsoup.py;h=e03dfce99faa55b980e21a75e38249790d50c0a7;hb=52092194ea42dcece57ed93c2a2875cd2907564e;hp=8f82d249669df7a7d79cc0a203103596f4284936;hpb=5240de604c92063107e41cd00c6b363498d65fa6;p=bookmarks_db.git diff --git a/Robots/parse_html_beautifulsoup.py b/Robots/parse_html_beautifulsoup.py index 8f82d24..e03dfce 100644 --- a/Robots/parse_html_beautifulsoup.py +++ b/Robots/parse_html_beautifulsoup.py @@ -1,23 +1,13 @@ """ HTML Parser using BeautifulSoup - Written by BroytMann. Copyright (C) 2007, 2008 PhiloSoft Design + Written by Broytman. Copyright (C) 2007-2010 PhiloSoft Design """ import re from sgmllib import SGMLParser, SGMLParseError -from HTMLParser import HTMLParser from BeautifulSoup import BeautifulSoup, CData - - -class BSoupParser(HTMLParser): - def __init__(self, charset, meta, title, refresh, icon): - object.__init__(self) - self.charset = charset - self.meta_charset = meta - self.title = title - self.refresh = refresh - self.icon = icon +from parse_html_util import HTMLParser # http://groups.google.com/group/beautifulsoup/browse_thread/thread/69093cb0d3a3cf63 @@ -88,16 +78,26 @@ def parse_html(filename, charset=None, log=None): title = root.title if title is None: - title = '' - elif title.string: - title = title.string.encode(_charset) + return None + + if title.string: + title = title.string else: - title = str(title) + parts = [] + for part in title: + if not isinstance(part, basestring): + part = unicode(part) + parts.append(part.strip()) + title = ''.join(parts) meta = head.find(_find_contenttype, recursive=False) if meta: try: - __charset = meta.get("content").lower().split('charset=')[1].split(';')[0] + meta_content = meta.get("content") + if meta_content: + __charset = meta_content.lower().split('charset=')[1].split(';')[0] + else: + __charset = False except IndexError: # No charset in the META Content-Type meta_charset = False else: @@ -105,6 +105,9 @@ def parse_html(filename, charset=None, log=None): else: meta_charset = False + if _charset or meta_charset: + title = title.encode(_charset or meta_charset) + meta = head.find(_find_refresh, recursive=False) if meta: refresh = meta.get("content") @@ -117,7 +120,7 @@ def parse_html(filename, charset=None, log=None): else: icon = None - return BSoupParser(_charset, meta_charset, title, refresh, icon) + return HTMLParser(_charset, meta_charset, title, refresh, icon) def _find_contenttype(Tag): return (Tag.name == "meta") and \