X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=Writers%2Fbkmk_wtxt.py;h=d39c63be955e3af1f68a051f2db8b738ce990722;hb=c9cfb54ef36e77aee7187e4533f063d407073ad8;hp=12561146430ceadebe8fdeb327e11239e84a15fa;hpb=fb5c3b2b91aeeb615d6d6d890491af3fdff69556;p=bookmarks_db.git diff --git a/Writers/bkmk_wtxt.py b/Writers/bkmk_wtxt.py index 1256114..d39c63b 100644 --- a/Writers/bkmk_wtxt.py +++ b/Writers/bkmk_wtxt.py @@ -1,16 +1,23 @@ -#! /usr/local/bin/python -O -""" - Dump a bkmk database to a text file +"""Dump a bkmk database to a text file - Written by BroytMann, Mar 2000. Copyright (C) 2000 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"