]> git.phdru.name Git - bookmarks_db.git/blobdiff - Storage/bkmk_stflad.py
Store icon and charset in bookmark's attributes.
[bookmarks_db.git] / Storage / bkmk_stflad.py
index 2545f6d4cdeff4622e28013913b4cce538e161e6..b257622559ebbb72c60ffded699c82a4bfe092e0 100644 (file)
@@ -2,7 +2,7 @@
    Bookmarks storage module - FLAD (Flat ASCII Database)
       special version for compatibility with old (version 1) bkmk2db
 
-   Written by BroytMann, Feb 2000 - Mar 2005. Copyright (C) 2000-2005 PhiloSoft Design
+   Written by BroytMann, Feb 2000 - Sep 2007. Copyright (C) 2000-2007 PhiloSoft Design
 """
 
 
@@ -45,8 +45,10 @@ LastVisit: %s
 LastModified: %s
 Keyword: %s
 Comment: %s
+Icon: %s
+Charset: %s
 """ % (level+1, b.name, b.href, b.add_date, b.last_visit, b.last_modified,
-         b.keyword, b.comment.replace('\n', "\\n")))
+         b.keyword, b.comment.replace('\n', "\\n"), b.icon or '', b.charset or ''))
 
 
    def ruler(self, r, level):