X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=bkmk_objects.py;h=a9567e22134fd70b9adcefe788c2b2bb3a45746f;hb=1666eb3f5d14ca9b798782ae1de99e9f2c0ae611;hp=cde26d83019c8f26d33b3d9d7621864cfcf8ef39;hpb=fc6936b2978f404cc560751f5da13ef93bb5bcfe;p=bookmarks_db.git diff --git a/bkmk_objects.py b/bkmk_objects.py index cde26d8..a9567e2 100644 --- a/bkmk_objects.py +++ b/bkmk_objects.py @@ -1,7 +1,7 @@ """ Objects to represent bookmarks.html structure - Written by Oleg Broytman. Copyright (C) 2000-2007 PhiloSoft Design. + Written by Oleg Broytman. Copyright (C) 2000-2010 PhiloSoft Design. """ import os, cgi @@ -44,13 +44,14 @@ 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): 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