]> git.phdru.name Git - bookmarks_db.git/blobdiff - bkmk_objects.py
Version 4.4.0 was released 2011-01-07.
[bookmarks_db.git] / bkmk_objects.py
index fabf0ed5be81b6601ef3801e66d0fb026ccb09df..27e621b898ba4cf89499aea7e49943a9915974dd 100644 (file)
@@ -1,18 +1,31 @@
-"""
-   Objects to represent bookmarks.html structure
+"""Objects to represent bookmarks.html structure
 
-   Written by BroytMann, Mar 2000 - Sep 2007. Copyright (C) 2000-2007 PhiloSoft Design
+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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
+__all__ = ['Folder', 'Bookmark', 'Ruler', 'Walker', 'Writer', 'Robot',
+    'InverseLinker', 'Linear', 'make_linear', 'make_tree', 'break_tree',
+    'quote_title', 'unquote_title',
+]
+
+
+import os, cgi
+BKMK_FORMAT = os.environ.get("BKMK_FORMAT", "MOZILLA")
 
-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 +40,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 +56,16 @@ 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_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
 
 
 class Ruler:
@@ -95,8 +111,7 @@ class Writer(Walker):
 
 
 class Robot:
-   def __init__(self, tempfname, log):
-      self.tempfname = tempfname
+   def __init__(self, log):
       self.log = log
 
    def stop(self):
@@ -159,3 +174,22 @@ def make_tree(linear):
       object.parent.append(object)
 
    return root_folder
+
+def break_tree(linear):
+   del linear[0]
+
+   for object in linear:
+      del object.parent
+
+
+def quote_title(title):
+   if BKMK_FORMAT == "MOZILLA":
+      title = title.replace("'", "&#39;")
+   return title
+
+def unquote_title(title):
+   if BKMK_FORMAT == "MOZILLA":
+      from HTMLParser import HTMLParser
+      title = HTMLParser().unescape(title.replace("&amp;", '&'))
+      title = title.replace("&#39;", "'")
+   return title