]> git.phdru.name Git - bookmarks_db.git/blobdiff - bkmk_objects.py
Store LAST_MODIFIED in folder's attributes.
[bookmarks_db.git] / bkmk_objects.py
index 2cb46007e1416ecbf73a455790bc765ed1a197be..fabf0ed5be81b6601ef3801e66d0fb026ccb09df 100644 (file)
@@ -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 - Sep 2007. Copyright (C) 2000-2007 PhiloSoft Design
 """
 
 
@@ -11,11 +11,11 @@ class Folder(UserList):
    isFolder = 1
    isBookmark = 0
 
-   def __init__(self, add_date = None, comment = ''):
+   def __init__(self, add_date = None, comment = '', last_modified=None):
       UserList.__init__(self)
       self.comment = comment
       self.add_date = add_date
-
+      self.last_modified = last_modified
 
    def walk_depth(self, walker, level=0):
       if hasattr(self, "header"): # root folder
@@ -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: