X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Writers%2Fbkmk_wtxt.py;h=d39c63be955e3af1f68a051f2db8b738ce990722;hb=f974d126b6eb456eef5d5a8dfc8abd8c00b33ff5;hp=57818d3df1aa9ce0d4e9c8d19c437dc2af3d8a33;hpb=0e76f1851882b99da63a7c8a9e4cdf0c4a48657f;p=bookmarks_db.git diff --git a/Writers/bkmk_wtxt.py b/Writers/bkmk_wtxt.py index 57818d3..d39c63b 100644 --- a/Writers/bkmk_wtxt.py +++ b/Writers/bkmk_wtxt.py @@ -1,15 +1,23 @@ -""" - Dump a bkmk database to a text file +"""Dump a bkmk database to a text file - Written by Broytman. Copyright (C) 2000-2003 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 " +__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design" +__license__ = "GNU GPL" -ind_s = " "*4 +__all__ = ['writer_txt'] from bkmk_objects import Writer +ind_s = " "*4 + + class writer_txt(Writer): filename = "dump.txt"