X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=bkmk_objects.py;h=344312ca0f91b9d22a7481612d0868fc23a389d0;hb=76e0bd7defe7af4337fb1857141b7ef3e9f3f634;hp=fabf0ed5be81b6601ef3801e66d0fb026ccb09df;hpb=bcf579e3311f0d9f968338dc419e9a43b48414ba;p=bookmarks_db.git diff --git a/bkmk_objects.py b/bkmk_objects.py index fabf0ed..344312c 100644 --- a/bkmk_objects.py +++ b/bkmk_objects.py @@ -1,18 +1,16 @@ """ Objects to represent bookmarks.html structure - Written by BroytMann, Mar 2000 - Sep 2007. Copyright (C) 2000-2007 PhiloSoft Design + Written by Oleg BroytMann. Copyright (C) 2000-2007 PhiloSoft Design. """ -from UserList import UserList - -class Folder(UserList): +class Folder(list): isFolder = 1 isBookmark = 0 - def __init__(self, add_date = None, comment = '', last_modified=None): - UserList.__init__(self) + def __init__(self, add_date=None, comment='', last_modified=None): + super(Folder, self).__init__() self.comment = comment self.add_date = add_date self.last_modified = last_modified @@ -27,7 +25,7 @@ class Folder(UserList): walker.start_folder(self, level) if not prune: - for object in self.data: + for object in self: if object.isFolder: object.walk_depth(walker, level+1) elif object.isBookmark: @@ -43,13 +41,15 @@ class Bookmark: isBookmark = 1 def __init__(self, href, add_date, last_visit=None, last_modified=None, - keyword=None, comment = ''): - self.comment = comment + keyword=None, comment='', icon=None, charset=None): 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 = icon + self.charset = charset class Ruler: @@ -159,3 +159,10 @@ def make_tree(linear): object.parent.append(object) return root_folder + +def break_tree(linear): + root_folder = linear[0] + del linear[0] + + for object in linear: + del object.parent