X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=bkmk_objects.py;h=27e621b898ba4cf89499aea7e49943a9915974dd;hb=c9cfb54ef36e77aee7187e4533f063d407073ad8;hp=17d05095c7d619a2ba7c3d741636fe22591dd9e8;hpb=7fd1132c4ab530b7b34e846ca45f99b8737dd127;p=bookmarks_db.git diff --git a/bkmk_objects.py b/bkmk_objects.py index 17d0509..27e621b 100644 --- a/bkmk_objects.py +++ b/bkmk_objects.py @@ -1,9 +1,21 @@ -""" - Objects to represent bookmarks.html structure +"""Objects to represent bookmarks.html structure - Written by Oleg Broytman. Copyright (C) 2000-2010 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" + +__all__ = ['Folder', 'Bookmark', 'Ruler', 'Walker', 'Writer', 'Robot', + 'InverseLinker', 'Linear', 'make_linear', 'make_tree', 'break_tree', + 'quote_title', 'unquote_title', +] + + import os, cgi BKMK_FORMAT = os.environ.get("BKMK_FORMAT", "MOZILLA")