X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=bkmk_objects.py;h=23fb816ee180100100722ee2b7ac9818cf63390d;hb=44646fbc8b70e327ffa031c06128632c405c238e;hp=345ef3a34cdfc40c652b274d99deb2753414e4be;hpb=789d114c213bb9468c4711180d996c3a1b39ad6c;p=bookmarks_db.git diff --git a/bkmk_objects.py b/bkmk_objects.py index 345ef3a..23fb816 100644 --- a/bkmk_objects.py +++ b/bkmk_objects.py @@ -1,13 +1,23 @@ -""" - Objects to represent bookmarks.html structure +"""Objects to represent bookmarks.html structure + +This file is a part of Bookmarks database and Internet robot. - Written by Oleg BroytMann. Copyright (C) 2000-2007 PhiloSoft Design. """ -import os, cgi -BKMK_FORMAT = os.environ.get("BKMK_FORMAT", '') +__author__ = "Oleg Broytman " +__copyright__ = "Copyright (C) 2000-2012 PhiloSoft Design" +__license__ = "GNU GPL" + +__all__ = ['Folder', 'Bookmark', 'Ruler', 'Walker', 'Writer', 'Robot', + 'InverseLinker', 'Linear', 'make_linear', 'make_tree', 'break_tree', + 'quote_title', 'unquote_title', +] +import os, urllib + +BKMK_FORMAT = os.environ.get("BKMK_FORMAT", "MOZILLA") + class Folder(list): isFolder = 1 isBookmark = 0 @@ -44,13 +54,41 @@ class Bookmark: isBookmark = 1 def __init__(self, href, add_date, last_visit=None, last_modified=None, - keyword=None, comment='', icon=None, charset=None): + keyword=None, comment='', icon_href=None, icon=None, + charset=None, parser_charset=None): + protocol, request = urllib.splittype(href) + user, password, port = None, None, None + host, path = urllib.splithost(request) + if host: + user, host = urllib.splituser(host) + if user: + user, password = urllib.splitpasswd(user) + host, port = urllib.splitport(host) + if port: port = int(port) + + if protocol == 'place': + href = protocol + ":" + else: + href = protocol + "://" + if user: + href += urllib.quote(user) + if password: + href += ':' + urllib.quote(password) + href += '@' + if host: + href += host.decode(parser_charset or 'utf-8').encode('idna') + if port: + href += ':%d' % port + if path: + href += path + self.href = href self.add_date = add_date self.last_visit = last_visit self.last_modified = last_modified self.keyword = keyword self.comment = comment + self.icon_href = icon_href self.icon = icon self.charset = charset @@ -98,8 +136,7 @@ class Writer(Walker): class Robot: - def __init__(self, tempfname, log): - self.tempfname = tempfname + def __init__(self, log): self.log = log def stop(self): @@ -164,7 +201,6 @@ def make_tree(linear): return root_folder def break_tree(linear): - root_folder = linear[0] del linear[0] for object in linear: @@ -173,5 +209,12 @@ def break_tree(linear): def quote_title(title): if BKMK_FORMAT == "MOZILLA": - title = cgi.escape(title, 1).replace("'", "'") + title = title.replace("'", "'") + return title + +def unquote_title(title): + if BKMK_FORMAT == "MOZILLA": + from HTMLParser import HTMLParser + title = HTMLParser().unescape(title.replace("&", '&').decode('utf-8')) + title = title.encode('utf-8').replace("'", "'") return title