X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=bkmk_objects.py;h=231fb2f4e6482b6e2312d928eacc832cc97baf33;hb=bbcb4777fc62ff721ff60ebc1697ac61acbf0617;hp=2cb46007e1416ecbf73a455790bc765ed1a197be;hpb=fb5c3b2b91aeeb615d6d6d890491af3fdff69556;p=bookmarks_db.git diff --git a/bkmk_objects.py b/bkmk_objects.py index 2cb4600..231fb2f 100644 --- a/bkmk_objects.py +++ b/bkmk_objects.py @@ -1,7 +1,7 @@ """ Objects to represent bookmarks.html structure - Written by BroytMann, Mar 2000 - Jul 2002. Copyright (C) 2000-2002 PhiloSoft Design + Written by BroytMann, Mar 2000 - Aug 2004. Copyright (C) 2000-2004 PhiloSoft Design """ @@ -42,12 +42,14 @@ class Bookmark: isFolder = 0 isBookmark = 1 - def __init__(self, href, add_date, last_visit, last_modified, comment = ''): + def __init__(self, href, add_date, last_visit=None, last_modified=None, + keyword=None, comment = ''): self.comment = comment self.href = href self.add_date = add_date self.last_visit = last_visit self.last_modified = last_modified + self.keyword = keyword class Ruler: