X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Robots%2Fbkmk_rsimple.py;h=42975d29a729d26ad4838cd64791acef0ca34d9a;hb=d4e41686948360cf605081b602302750e61699fe;hp=ebb3f8b2b895f26576174f10c16115d10cabb72d;hpb=06769d72bf3bd88ec73f373cd0246c2825f6d4e7;p=bookmarks_db.git diff --git a/Robots/bkmk_rsimple.py b/Robots/bkmk_rsimple.py index ebb3f8b..42975d2 100644 --- a/Robots/bkmk_rsimple.py +++ b/Robots/bkmk_rsimple.py @@ -1,7 +1,7 @@ """ Simple, strightforward robot - Written by Oleg BroytMann. Copyright (C) 2000-2007 PhiloSoft Design. + Written by Oleg Broytman. Copyright (C) 2000-2010 PhiloSoft Design. """ import sys, os @@ -40,6 +40,8 @@ class MyURLopener(urllib.URLopener): # Error 301 -- also relocated (permanently) http_error_301 = http_error_302 + # Error 307 -- also relocated (temporary) + http_error_307 = http_error_302 # Error 401 -- authentication required def http_error_401(self, url, fp, errcode, errmsg, headers, data=None): @@ -156,15 +158,23 @@ class robot_simple(Robot): if headers: try: content_type = headers["Content-Type"] + self.log(" Content-Type: %s" % content_type) try: + # extract charset from "text/html; foo; charset=UTF-8, bar; baz;" content_type, charset = content_type.split(';', 1) content_type = content_type.strip() - charset = charset.split('=')[1].strip() + charset = charset.split('=')[1].strip().split(',')[0] self.log(" HTTP charset : %s" % charset) except (ValueError, IndexError): charset = None self.log(" no charset in Content-Type header") - if content_type == "text/html": + for ctype in ("text/html", "application/xhtml+xml"): + if content_type.startswith(ctype): + html = True + break + else: + html = False + if html: parser = parse_html(fname, charset, self.log) bookmark.real_title = parser.title if parser.refresh: @@ -230,28 +240,34 @@ class robot_simple(Robot): icons[icon] = None os.remove(fname) - except KeyError: - pass + except KeyError, key: + self.log(" no header: %s" % key) except IOError, msg: if (msg[0] == "http error") and (msg[1] == -1): bookmark.no_error = "The server did not return any header - it is not an error, actually" + self.log(bookmark.no_error) else: bookmark.error = get_error(msg) + self.log(bookmark.error) except EOFError: bookmark.error = "Unexpected EOF (FTP server closed connection)" + self.log(bookmark.error) except RedirectException, msg: bookmark.moved = str(msg) + self.log(bookmark.moved) except KeyboardInterrupt: + self.log("Keyboard interrupt (^C)") return 0 except: import traceback traceback.print_exc() bookmark.error = "Exception!" + self.log(bookmark.error) finally: self.finish_check_url(bookmark)