X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=blobdiff_plain;f=bkmk_objects.py;h=dce981190c217b7602bcd600b53055dd47c13488;hp=4847e2c991c53ba5beb4b474a7913d1313108e15;hb=53d4a2383cfef1310871eefcc14e6e1950b96853;hpb=643f6e704848a0aa271d1bbe460200ab6d6e4613 diff --git a/bkmk_objects.py b/bkmk_objects.py index 4847e2c..dce9811 100644 --- a/bkmk_objects.py +++ b/bkmk_objects.py @@ -1,18 +1,16 @@ """Objects to represent bookmarks.html structure This file is a part of Bookmarks database and Internet robot. + """ -__version__ = "$Revision$"[11:-2] -__revision__ = "$Id$"[5:-2] -__date__ = "$Date$"[7:-2] __author__ = "Oleg Broytman " -__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design" +__copyright__ = "Copyright (C) 2000-2014 PhiloSoft Design" __license__ = "GNU GPL" __all__ = ['Folder', 'Bookmark', 'Ruler', 'Walker', 'Writer', 'Robot', 'InverseLinker', 'Linear', 'make_linear', 'make_tree', 'break_tree', - 'quote_title', 'unquote_title', + 'quote_title', 'unquote_title', 'parse_params', 'set_params', ] @@ -51,7 +49,7 @@ class Folder(list): walker.end_folder(self, level) -class Bookmark: +class Bookmark(object): isFolder = 0 isBookmark = 1 @@ -68,7 +66,10 @@ class Bookmark: host, port = urllib.splitport(host) if port: port = int(port) - href = protocol + "://" + if protocol == 'place': + href = protocol + ":" + else: + href = protocol + "://" if user: href += urllib.quote(user) if password: @@ -92,12 +93,12 @@ class Bookmark: self.charset = charset -class Ruler: +class Ruler(object): isFolder = 0 isBookmark = 0 -class Walker: +class Walker(object): """ Interface class. Any instance that will be passed to Folder.walk_depth may be derived from this class. It is not mandatory - unlike Java @@ -134,7 +135,7 @@ class Writer(Walker): return self.prune == folder.name -class Robot: +class Robot(object): def __init__(self, log): self.log = log @@ -217,3 +218,19 @@ def unquote_title(title): title = HTMLParser().unescape(title.replace("&", '&').decode('utf-8')) title = title.encode('utf-8').replace("'", "'") return title + + +def parse_params(param_str): + params = param_str.split(':') + main_param = params.pop(0) + param_list = {} + for param in params: + key, value = param.split('=', 1) + param_list[key] = value + return main_param, param_list + +def set_params(obj, params): + if hasattr(params, "items"): + params = params.items() + for key, value in params: + setattr(obj, key, value)