X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Writers%2Fbkmk_whtml.py;h=707b52a68becf5bb00db6181fa3645bf2f247aa9;hb=787713c7dffc657460c3c38dc35a367e4afcf80c;hp=ad109f82686ac70c16e514212cbc5f278659efa8;hpb=01e7f1237af1fa33a1feb0d07d5bb2e5e438962e;p=bookmarks_db.git diff --git a/Writers/bkmk_whtml.py b/Writers/bkmk_whtml.py index ad109f8..707b52a 100644 --- a/Writers/bkmk_whtml.py +++ b/Writers/bkmk_whtml.py @@ -3,11 +3,8 @@ 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 " -__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design" +__copyright__ = "Copyright (C) 2000-2012 PhiloSoft Design" __license__ = "GNU GPL" __all__ = ['writer_html'] @@ -23,7 +20,6 @@ def dump_comment(comment): comment = comment.replace("\n", "
\n") return comment - ind_s = " "*4 class writer_html(Writer): @@ -51,10 +47,15 @@ class writer_html(Writer): def bookmark(self, b, level): self.outfile.write(ind_s*(level+1) + '
%s\n' % quote_title(b.name))