X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Robots%2Fparse_html_beautifulsoup.py;h=209486c4054f015a179d4469ccaa5adc3f8bbe8f;hb=7f4662c68c41b4dfff5b134d3762591acecba656;hp=3408def7162a50deec9fee0f4894fdff5e37c9ea;hpb=b823c1b58711d6c4ed96fcb31de5cf348d8a6c1a;p=bookmarks_db.git diff --git a/Robots/parse_html_beautifulsoup.py b/Robots/parse_html_beautifulsoup.py index 3408def..209486c 100644 --- a/Robots/parse_html_beautifulsoup.py +++ b/Robots/parse_html_beautifulsoup.py @@ -4,8 +4,10 @@ Written by BroytMann. Copyright (C) 2007 PhiloSoft Design """ +import re +from sgmllib import SGMLParser, SGMLParseError from HTMLParser import HTMLParser -from BeautifulSoup import BeautifulSoup +from BeautifulSoup import BeautifulSoup, CData class BSoupParser(HTMLParser): @@ -18,27 +20,65 @@ class BSoupParser(HTMLParser): self.icon = icon +# http://groups.google.com/group/beautifulsoup/browse_thread/thread/69093cb0d3a3cf63 +class BadDeclParser(BeautifulSoup): + def parse_declaration(self, i): + """Treat a bogus SGML declaration as raw data. Treat a CDATA + declaration as a CData object.""" + j = None + if self.rawdata[i:i+9] == '', i) + if k == -1: + k = len(self.rawdata) + data = self.rawdata[i+9:k] + j = k+3 + self._toStringSubclass(data, CData) + else: + try: + j = SGMLParser.parse_declaration(self, i) + except SGMLParseError: + # Could not parse the DOCTYPE declaration + # Try to just skip the actual declaration + match = re.search(r']*?)>', self.rawdata[i:], re.MULTILINE) + if match: + toHandle = self.rawdata[i:match.end()] + else: + toHandle = self.rawdata[i:] + self.handle_data(toHandle) + j = i + len(toHandle) + return j + + def parse_html(filename, charset=None): infile = open(filename, 'r') try: - root = BeautifulSoup(infile, fromEncoding=charset) + root = BadDeclParser(infile, fromEncoding=charset) except TypeError: return None - infile.close() + finally: + infile.close() - _charset = root.originalEncoding try: - title = root.html.head.title.string.encode(_charset) + head = root.html.head except AttributeError: return None - meta = root.html.head.find(_find_refresh, recursive=False) + if head is None: + head = root.html # Some sites put TITLE in HTML without HEAD + + _charset = root.originalEncoding + try: + title = head.title.string.encode(_charset) + except AttributeError: + title = '' # HEAD but no TITLE + + meta = head.find(_find_refresh, recursive=False) if meta: refresh = meta.get("content") else: refresh = None - meta = root.html.head.find(_find_icon, recursive=False) + meta = head.find(_find_icon, recursive=False) if meta: icon = meta.get("href") else: