]> git.phdru.name Git - bookmarks_db.git/commitdiff
Added docstrings, __{version,revision,etc}__ boilerplates.
authorOleg Broytman <phd@phdru.name>
Tue, 4 Jan 2011 17:10:17 +0000 (17:10 +0000)
committerOleg Broytman <phd@phdru.name>
Tue, 4 Jan 2011 17:10:17 +0000 (17:10 +0000)
git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@315 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23

42 files changed:
Makefile
Robots/bkmk_rforking.py
Robots/bkmk_rforking_sub.py
Robots/bkmk_rsimple.py
Robots/bkmk_rsimple_tos.py
Storage/bkmk_stflad.py
Storage/bkmk_stjson.py
Storage/bkmk_stpickle.py
Writers/bkmk_wflad.py
Writers/bkmk_wflad_err.py
Writers/bkmk_whtml.py
Writers/bkmk_wtxt.py
bkmk-add
bkmk-add.py
bkmk-chk
bkmk-publish
bkmk-rsync
bkmk-sort
bkmk2db
bkmk2db.py
bkmk_objects.py
bkmk_parser.py
check_dups.py
check_title.py
check_url.py
check_urls.py
convert_st.py
db2bkmk.py
mk-distr
parse_html/__init__.py
parse_html/beautifulsoup.py
parse_html/etreetidy.py
parse_html/html5.py
parse_html/htmlparser.py
parse_html/lxml.py
parse_html/util.py
robots.py
set-real_title.py
set-title-list.py
sort_db.py
storage.py
writers.py

index 373e6b1eb8a28390b4a8df87478067aab548315c..e1c30676b0cefa587d9ee35d7813f35deb0c15b2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,15 @@
-VERSION=4.3.1
+#
+# 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 <phd@phdru.name>"
+# __copyright__ = "Copyright (C) 2001-2010 PhiloSoft Design"
+# __license__ = "GNU GPL"
+#
+
+VERSION=4.4.0
 
 EXAMPLE_SHELL=bkmk-add bkmk-add.py bkmk-chk bkmk-publish bkmk-rsync \
    bkmk-sort bkmk2db check_title.py check_url.py hotexplode.pl \
index 594359f9f3e8da5e42e2f3d576a3d93d0e0e266a..843a0d27d939f3ca3e6db54f5f8ae48095837bda 100644 (file)
@@ -1,9 +1,14 @@
-"""
-   Forking robot
+"""Forking robot
 
-   Written by 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 try:
    import cPickle
index 63464fccff91414dee6f01303516204852491e2f..36338f42d6d52d4e80570cca0507eba83511c551 100755 (executable)
@@ -1,10 +1,15 @@
 #! /usr/bin/env python
-"""
-   Check URL - subprocess for the forking robot
+"""Check URL - subprocess for the forking robot
 
-   Written by Broytman. Copyright (C) 1999-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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 1999-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import sys, os
 
index 7de63185a6c8800e2d41a04d0ead795475531616..8bfa4298299f0c3b9842cdc0fa071b361ed8cd48 100644 (file)
@@ -1,9 +1,15 @@
-"""
-   Simple, strightforward robot
+"""Simple, strightforward robot
 
-   Written by Oleg Broytman. Copyright (C) 2000-2011 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 import sys, os
 import time, urllib
 from base64 import b64encode
index ad42f09a73077370e68bcd1accf076d6230a78e5..25fa88f1d4fe7c514c63bfc0aa3751cc074a3463 100644 (file)
@@ -1,9 +1,15 @@
-"""
-   Simple robot with socket's timeout
+"""Simple robot with socket's timeout
 
-   Written by Broytman. Copyright (C) 2000-2011 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 import socket
 socket.setdefaulttimeout(900)
 
index 9bd8751c278b9fa6becbee0d552455a43049c8de..86c42b379273f59633b8c7ce40ab4b201204fd1b 100644 (file)
@@ -1,10 +1,16 @@
-"""
-   Bookmarks storage module - FLAD (Flat ASCII Database)
-      special version for compatibility with old (version 1) bkmk2db
+"""Bookmarks storage module - FLAD (Flat ASCII Database)
+
+Special version for compatibility with old (version 1) bkmk2db.
 
-   Written by 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import string
 from m_lib.flad import fladm
index 077f89cfa6cceb1e7575cde3f2d5a154759dca8c..437ca6d414687e19f0e2a5f8504b4106f4f8691b 100644 (file)
@@ -1,9 +1,14 @@
-"""
-    Bookmarks storage manager - json.
+"""Bookmarks storage manager - json
 
-    Written by Broytman, Jul 2010. Copyright (C) 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2010, 2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 try:
    import json
index ae351b3bf58af960ebaeeff97354fe3d458ff65f..702cea58ffc2a3735a63bfe540feea7fe6021f82 100644 (file)
@@ -1,9 +1,14 @@
-"""
-   Bookmarks storage manager - pickle; certainly the most simple and elegant :)
+"""Bookmarks storage manager - pickle; certainly the most simple and elegant :)
 
-   Written by Broytman, Feb 2000 - 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 try:
    import cPickle
index 0a94fd8e93652d9727ddc270dcaf787093fad591..d5cb7e01d8645dd9bc50c77f01a152c5ee9a663b 100644 (file)
@@ -1,9 +1,14 @@
-"""
-   Dump bookmarks db to a more readable FLat Ascii Database
+"""Dump bookmarks db to a more readable FLat Ascii Database
 
-   Written by 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import time
 from bkmk_objects import Writer
index 4fb127f3856dd2a00b9eb8e3cb4e7f2034197adf..b7b29770c765e5de1fd345f304a01db439e4d231 100644 (file)
@@ -1,9 +1,14 @@
-"""
-   Dump bookmarks db to a more readable FLAD after check_urls
+"""Dump bookmarks db to a more readable FLAD after check_urls
 
-   Written by Broytman, Oct 2000 - Aug 2004. Copyright (C) 2000-2004 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import time
 from bkmk_wflad import writer_flad
index b4c4dab5c59ff3c0a28a7698376757e39efb542a..00591b04ac0d2c8018365b6a9da7a17223510372 100644 (file)
@@ -1,9 +1,15 @@
-"""
-   Convert a bkmk database back to bookmarks.html
+"""Convert a bkmk database back to bookmarks.html
 
-   Written by 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 from bkmk_objects import Writer, BKMK_FORMAT, quote_title
 
 
index 57818d3df1aa9ce0d4e9c8d19c437dc2af3d8a33..628d9b2f08f2fcd2fb4bd5392ed79603ee0785f1 100644 (file)
@@ -1,9 +1,14 @@
-"""
-   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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 ind_s = " "*4
 
index 4b4568b5803d61cd550a8a2926edae020339d99c..3a50ef2c7efeb0353e2b931dc632b708e6fa1997 100755 (executable)
--- a/bkmk-add
+++ b/bkmk-add
@@ -1,4 +1,14 @@
 #! /bin/sh
+# Add a bookmark directly to the DB
+#
+# 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 <phd@phdru.name>"
+# __copyright__ = "Copyright (C) 2001-2010 PhiloSoft Design"
+# __license__ = "GNU GPL"
 
 PATH=$HOME/lib/bookmarks_db:$PATH
 
index 7e7b415b469ddef45775fdcf0fb0f0a011b1ae5f..03cf5c3cad3133953ab0d5864b19b1a0bbb860a2 100755 (executable)
@@ -1,10 +1,15 @@
 #! /usr/bin/env python
-"""
-   Add a bookmark to the database.
+"""Add a bookmark to the database
 
-   Written by Broytman. Copyright (C) 2002-2007 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2002-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import sys, os, time
 from bkmk_objects import Bookmark
index 7d757f17ed5e7c8301dd7d0117d7d91e7ab50c73..8f9ddeafde678989e7c63acb2ee90824cc376c5c 100755 (executable)
--- a/bkmk-chk
+++ b/bkmk-chk
@@ -1,4 +1,17 @@
 #! /bin/sh
+# Check bookmarks
+#
+# Convert bookmarks to DB, check URLS from the DB and convert DB
+# to different formats and back to bookmarks.
+#
+# 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 <phd@phdru.name>"
+# __copyright__ = "Copyright (C) 2001-2010 PhiloSoft Design"
+# __license__ = "GNU GPL"
 
 PATH="$HOME/lib/bookmarks_db:$PATH"
 
index e7a6bf88a6e561ea00d84af61706db662e5309ae..de128af75136791f30faabdba6a0f173c44cbee2 100755 (executable)
@@ -1,4 +1,14 @@
 #! /bin/sh
+# Publish bookmarks using hotexplode.pl
+#
+# 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 <phd@phdru.name>"
+# __copyright__ = "Copyright (C) 2001-2010 PhiloSoft Design"
+# __license__ = "GNU GPL"
 
 umask 077
 PATH=$HOME/lib/bookmarks_db:$PATH
index cc7034d5badf2d3893bec4c9acbcf677ea382597..5b4b7a9533e9aa2fc7e9ffba4ed4219c08dba81b 100755 (executable)
@@ -1,4 +1,14 @@
 #! /bin/sh
+# Synchronize bookmarks with remote workstations
+#
+# 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 <phd@phdru.name>"
+# __copyright__ = "Copyright (C) 2001-2010 PhiloSoft Design"
+# __license__ = "GNU GPL"
 
 PATH=$HOME/lib/bookmarks_db:$PATH
 umask 077
index e24f8a98ffbb30564deba3c1f99d97d1537d2361..f72e75f34b2bddf8106673abe6c5d308be47e7c7 100755 (executable)
--- a/bkmk-sort
+++ b/bkmk-sort
@@ -1,4 +1,14 @@
 #! /bin/sh
+# Sort bookmarks
+#
+# 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 <phd@phdru.name>"
+# __copyright__ = "Copyright (C) 2001-2010 PhiloSoft Design"
+# __license__ = "GNU GPL"
 
 PATH=$HOME/lib/bookmarks_db:$PATH
 
diff --git a/bkmk2db b/bkmk2db
index c796e9657b7a265a3fbee1490c96508a1bde1648..54a243d6e58181c978fd5a7824dc9d705f4a5e3c 100755 (executable)
--- a/bkmk2db
+++ b/bkmk2db
@@ -1,4 +1,14 @@
 #! /bin/sh
+# Convert bookmarks to DB
+#
+# 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 <phd@phdru.name>"
+# __copyright__ = "Copyright (C) 2001-2010 PhiloSoft Design"
+# __license__ = "GNU GPL"
 
 PATH="$HOME/lib/bookmarks_db:$PATH"
 
index 946dfbdf96e3a9bdaa46d3b8d811908616668ac3..37308a2a570aba3df1ffc7f66edd19e4f894cc0e 100755 (executable)
@@ -1,10 +1,15 @@
 #! /usr/bin/env python
-"""
-   Convert Netscape Navigator's or Mozilla's bookmarks.html to a database
+"""Convert Netscape Navigator's or Mozilla's bookmarks.html to a database
 
-   Written by Broytman. Copyright (C) 1997-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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 1997-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import sys, os
 from getopt import getopt
index 17d05095c7d619a2ba7c3d741636fe22591dd9e8..d15c38e52d440c2a7bc29a827b75e86953917d3a 100644 (file)
@@ -1,9 +1,15 @@
-"""
-   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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 import os, cgi
 BKMK_FORMAT = os.environ.get("BKMK_FORMAT", "MOZILLA")
 
index 3f2182cf4c15e3f73631874d54aada5ff4ac55e0..2ec412c012c2e1c385bad0ad60349bdbb89e6f6f 100644 (file)
@@ -1,9 +1,14 @@
-"""
-   Parser for Netscape Navigator's and Mozilla's bookmarks.html
+"""Parser for Netscape Navigator's and Mozilla's bookmarks.html
 
-   Written by Broytman. Copyright (C) 1997-2008 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 1997-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import sys, os
 from m_lib.net.www.html import HTMLParser
index 539712228d477e3630d0e6dd03d3ca19411beb85..113e69ba61be9d3d1426038eb2b48c1616040240 100755 (executable)
@@ -1,10 +1,16 @@
 #! /usr/bin/env python
-"""
-   Check duplicate URLs in the bookmarks database
+"""Check duplicate URLs in the bookmarks database
 
-   Written by Broytman. Copyright (C) 2000-2007 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 import sys
 
 
index f0baedfd9a3996f117785db5492e1c89e86af8a5..25d1e51b37fecf408ca69ee7f23047eaf9f3c196 100755 (executable)
@@ -1,10 +1,16 @@
 #! /usr/bin/env python
-"""
-   Check and show URLs in the bookmarks database where name <> real title
+"""Check and show URLs in the bookmarks database where name != real title
 
-   Written by Broytman. Copyright (C) 2002-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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2002-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 import sys
 from bkmk_objects import make_linear, quote_title, unquote_title
 
index b0a6869a5e5d601b5a2f34728fde97fcff58da1b..8744acf9c09d9b00d104cedf0b5cef339fb62fd8 100755 (executable)
@@ -1,10 +1,15 @@
 #! /usr/bin/env python
-"""
-   Robot interface - check one URL
+"""Robot interface - check one URL
 
-   Written by Broytman. Copyright (C) 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2010, 2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import sys
 import httplib
index f75cb16cc20f47ae769ee6775763e27a1293e9a9..305458028b38fb51caee8b747bf60041943584a3 100755 (executable)
@@ -1,10 +1,15 @@
 #! /usr/bin/env python
-"""
-   Robot interface - check URLs from bookmarks database
+"""Robot interface - check URLs from bookmarks database
 
-   Written by 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import sys, os
 
index 15bc7aadac043153b5e66fa8a824b505878b65cd..c0ea8cb5f3dcceb3397dcd37093c65c75048d797 100755 (executable)
@@ -1,10 +1,15 @@
 #! /usr/bin/env python
-"""
-   Convert a bkmk database to a different storage.
+"""Convert a bkmk database to a different storage.
 
-   Written by Broytman, Apr 2000 - Aug 2002. Copyright (C) 2000-2002 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import sys
 
index eaca29f02fb02c9cb032abc6facf4b4a4cb965e1..fb198631ac468dfcb43938ee69da3de4e8d0bf6c 100755 (executable)
@@ -1,10 +1,15 @@
 #! /usr/bin/env python
-"""
-   Convert a bkmk database back to bookmarks.html (or other format defined by writer)
+"""Convert a bkmk database back to bookmarks.html (or other format defined by writer)
 
-   Written by Broytman, Mar 2000 - Aug 2002. Copyright (C) 2000-2002 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import sys
 
index c54048390a034e8075defebea0f3990e31a0a369..79048ad509050bd5a977e7e0f0cbb8cbd3d1810d 100755 (executable)
--- a/mk-distr
+++ b/mk-distr
@@ -1,17 +1,14 @@
 #! /bin/sh
-# Mk-distr script.
+# Helper script called from Makefile
 #
-# This file is a part of Bookmarks Database and Internet robot.
-# Author: Oleg Broytman <phd@phdru.name>.
-# Copyright: (C) 2004-2011 PhiloSoft Design.
-# License: GPL.
-
-
-# __version__ = \
-# __revision__ = "$Id$"
+# 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 <phd@phdru.name>"
-# __copyright__ = "Copyright (C) 2004-2011 PhiloSoft Design"
+# __copyright__ = "Copyright (C) 2001-2010 PhiloSoft Design"
+# __license__ = "GNU GPL"
 
 
 error() {
index c67f2e7ef30a0ff18233d604a1b8b1f6c54487a9..95ab357203fc8dadb0114c50ba55e63eaed2aef0 100644 (file)
@@ -1,9 +1,15 @@
-"""
-   HTML Parsers wrapper
+"""HTML Parsers
 
-   Written by Broytman. Copyright (C) 1997-2011 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 1997-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 import codecs
 
 universal_charset = "utf-8"
index 86b8c1bee9a74257b1a809ea36c1d02061ec1445..ec5542afbe0e72630a3297ec9593db6112c4623a 100644 (file)
@@ -1,9 +1,15 @@
-"""
-   HTML Parser using BeautifulSoup
+"""HTML Parser using BeautifulSoup
 
-   Written by Broytman. Copyright (C) 2007-2011 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2007-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 import re
 from sgmllib import SGMLParser, SGMLParseError
 from BeautifulSoup import BeautifulSoup, CData
index d55aa57fc850b900a248e0e2daef3c0251e72ffd..5d8970075e137ee8acd22c6af44da9d82c20629a 100644 (file)
@@ -1,9 +1,15 @@
-"""
-    HTML Parser using ElementTree+TidyLib.
+"""HTML Parser using ElementTree+TidyLib.
 
-    Written by Broytman. Copyright (C) 2010, 2011 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2010, 2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 from elementtidy import TidyHTMLTreeBuilder
 from .util import HTMLParser
 
index 52bd57654ae6a475a40937dff1d9818ac4d9160b..08fb6b1230d8b8e086ec329ba1b61bdc4f6c7214 100644 (file)
@@ -1,9 +1,15 @@
-"""
-    HTML Parser using html5.
+"""HTML Parser using html5
 
-    Written by Broytman. Copyright (C) 2010, 2011 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2010, 2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 from html5lib import HTMLParser as HTML5Parser
 from .util import HTMLParser
 
index 5f885b2a9b853d1f216879481392e099272fb482..0932873f14a9566b74d056feed7b261f1a9ce9a0 100644 (file)
@@ -1,9 +1,15 @@
-"""
-   HTML Parser
+"""HTML Parser using Pythons' HTMLParser
 
-   Written by Broytman. Copyright (C) 1997-2011 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 1997-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 from HTMLParser import HTMLParseError
 from m_lib.net.www.html import HTMLParser as _HTMLParser
 
index f39939772e5032c308bb9b1a2fbebc2ac9714fae..30d43a42df57c58c084d94c1cc22aca0fefee39c 100644 (file)
@@ -1,9 +1,15 @@
-"""
-    HTML Parser using lxml.html.
+"""HTML Parser using lxml.html
 
-    Written by Broytman. Copyright (C) 2010, 2011 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2010, 2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 from lxml.html import parse
 from .util import HTMLParser
 
index 79890dd0c7d417932f019db2cdccace1916a18fe..12bab4cf0778d84f9460f62fb748233f7f4411cb 100644 (file)
@@ -1,9 +1,15 @@
-"""
-   HTML parsers utilities
+"""HTML parsers utilities
 
-   Written by Broytman. Copyright (C) 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2010, 2011 PhiloSoft Design"
+__license__ = "GNU GPL"
+
 from HTMLParser import HTMLParser
 
 class HTMLParser(HTMLParser):
index c979f93ea9c7753b47598510549b1f4a4650bb63..4aa7372dfc11cfbb55d7e399711f6794597fade7 100644 (file)
--- a/robots.py
+++ b/robots.py
@@ -1,7 +1,14 @@
-"""
-   Thin wrapper for module Robots. Provides "default" robot
+"""Thin wrapper for module Robots. Provides "default" robot
+
+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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 1997-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 from os import environ
 robot_name = environ.get("BKMK_ROBOT", "forking")
index 2926b5ac3310a241edd0dbe47e040ce0dd51b64d..621d929a3d7dbfe46273ff04d05030c3656a733a 100755 (executable)
@@ -1,10 +1,15 @@
 #! /usr/bin/env python
-"""
-   Run through the bookmarks database and set name to real title
+"""Run through the bookmarks database and set name to real title
 
-   Written by Broytman, Jul 2002 - May 2003. Copyright (C) 2002-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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2002-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import sys
 
index b5fb1eaea367a214f44d8002b51c17b327ed8b81..bd540591c51ded3e01b79b3929c402e1d9898b6e 100755 (executable)
@@ -1,10 +1,15 @@
 #! /usr/bin/env python
-"""
-   Run through the bookmarks database and set names to titles from an external file
+"""Run through the bookmarks database and set names to titles from an external file
 
-   Written by Broytman. Copyright (C) 2003-2007 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2003-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import sys
 
index ed22fda52914cc8de997ce2a1a64699dc6932960..014fcaeb505fe93d0a6c479a3aa19bd635cb5a38 100755 (executable)
@@ -1,6 +1,5 @@
 #! /usr/bin/env python
-"""
-   Sort bookmarks DB according to a rule:
+"""Sort bookmarks DB according to a rule:
       -a - by AddDate
       -v - by LastVisit
       -m - by LastModified
@@ -9,9 +8,15 @@
    default is -m
       -r - reverse the sort order
 
-   Written by Broytman, Apr 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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 2000-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 import sys
 
index 09243015ebcc8f111dfa6983d94e64b13bed36aa..5d309bf5a3a5c177f67d277c9b23120752f1d7ef 100644 (file)
@@ -1,7 +1,14 @@
-"""
-   Thin wrapper for module Storage. Provides "default" storage
+"""Thin wrapper for module Storage. Provides "default" storage
+
+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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 1997-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 from os import environ
 storage_name = environ.get("BKMK_STORAGE", "pickle")
index 00849eac2bd297c77d086f2f802b9611c89660ec..46fb08a9d2e3621f76815845fe5e17e41252d22d 100644 (file)
@@ -1,7 +1,14 @@
-"""
-   Thin wrapper for module Writers. Provides "default" writer
+"""Thin wrapper for module Writers. Provides "default" writer
+
+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 <phd@phdru.name>"
+__copyright__ = "Copyright (C) 1997-2011 PhiloSoft Design"
+__license__ = "GNU GPL"
 
 from os import environ
 writer_name = environ.get("BKMK_WRITER", "html")