]> git.phdru.name Git - bookmarks_db.git/blobdiff - Storage/bkmk_stflad.py
Moved parse_html.py and its submodules to a separate parse_html module.
[bookmarks_db.git] / Storage / bkmk_stflad.py
index 2545f6d4cdeff4622e28013913b4cce538e161e6..9bd8751c278b9fa6becbee0d552455a43049c8de 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 Broytman. Copyright (C) 2000-2010 PhiloSoft Design
 """
 
 
@@ -45,8 +45,12 @@ LastVisit: %s
 LastModified: %s
 Keyword: %s
 Comment: %s
+IconURI: %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_href or '', b.icon or '', b.charset or ''))
 
 
    def ruler(self, r, level):