diff --git a/src/Admin.py b/src/Admin.py index 834f29d8c..2677c5bc9 100755 --- a/src/Admin.py +++ b/src/Admin.py @@ -34,6 +34,8 @@ These are commands useful for administrating the bot; they all require their caller to have the 'admin' capability. This plugin is loaded by default. """ +__revision__ = "$Id$" + import fix import time diff --git a/src/Misc.py b/src/Misc.py index 4cdf3d8ca..ed8617f92 100755 --- a/src/Misc.py +++ b/src/Misc.py @@ -33,6 +33,8 @@ Miscellaneous commands. """ +__revision__ = "$Id$" + import fix import os diff --git a/src/Owner.py b/src/Owner.py index a8b9b6f42..c4705cdad 100644 --- a/src/Owner.py +++ b/src/Owner.py @@ -34,6 +34,8 @@ Provides commands useful to the owner of the bot; the commands here require their caller to have the 'owner' capability. This plugin is loaded by default. """ +__revision__ = "$Id$" + import fix import gc diff --git a/src/asyncoreDrivers.py b/src/asyncoreDrivers.py index 0d60a8123..676e58edc 100644 --- a/src/asyncoreDrivers.py +++ b/src/asyncoreDrivers.py @@ -29,6 +29,8 @@ # POSSIBILITY OF SUCH DAMAGE. ### +__revision__ = "$Id$" + import fix import re diff --git a/src/callbacks.py b/src/callbacks.py index ef7773cc6..9fec21ca7 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -38,6 +38,8 @@ PrivmsgRegexp class. Read their respective docstrings for more information on how to use them. """ +__revision__ = "$Id$" + import fix import re diff --git a/src/cdb.py b/src/cdb.py index 7ad7252ee..c0cf1a700 100644 --- a/src/cdb.py +++ b/src/cdb.py @@ -34,6 +34,8 @@ Database module, similar to dbhash. Uses a format similar to (if not entirely the same as) DJB's CDB . """ +__revision__ = "$Id$" + import fix import os diff --git a/src/conf.py b/src/conf.py index 98add86b1..c9c5d10e7 100644 --- a/src/conf.py +++ b/src/conf.py @@ -29,6 +29,8 @@ # POSSIBILITY OF SUCH DAMAGE. ### +__revision__ = "$Id$" + import fix import sys diff --git a/src/debug.py b/src/debug.py index 8f7fe4bea..ce56eda70 100644 --- a/src/debug.py +++ b/src/debug.py @@ -29,6 +29,8 @@ # POSSIBILITY OF SUCH DAMAGE. ### +__revision__ = "$Id$" + import fix import sys diff --git a/src/drivers.py b/src/drivers.py index d477c64d4..c81cc9224 100644 --- a/src/drivers.py +++ b/src/drivers.py @@ -33,6 +33,8 @@ Contains various drivers (network, file, and otherwise) for using IRC objects. """ +__revision__ = "$Id$" + import fix import re diff --git a/src/ircdb.py b/src/ircdb.py index 70f34b9cf..daf082f13 100644 --- a/src/ircdb.py +++ b/src/ircdb.py @@ -29,6 +29,8 @@ # POSSIBILITY OF SUCH DAMAGE. ### +__revision__ = "$Id$" + import fix import os diff --git a/src/irclib.py b/src/irclib.py index 6528d7998..b595041a4 100644 --- a/src/irclib.py +++ b/src/irclib.py @@ -29,6 +29,8 @@ # POSSIBILITY OF SUCH DAMAGE. ### +__revision__ = "$Id$" + import fix import copy diff --git a/src/ircmsgs.py b/src/ircmsgs.py index df6a70872..0f90fae5c 100644 --- a/src/ircmsgs.py +++ b/src/ircmsgs.py @@ -36,6 +36,8 @@ construct such messages in an easier way than the constructor for the IrcMsg object (which, as you'll read later, is quite...full-featured :)) """ +__revision__ = "$Id$" + import fix import re diff --git a/src/ircutils.py b/src/ircutils.py index 9a8543aa7..09a696c0d 100644 --- a/src/ircutils.py +++ b/src/ircutils.py @@ -36,6 +36,8 @@ nick class to handle nicks (so comparisons and hashing and whatnot work in an IRC-case-insensitive fashion), and numerous other things. """ +__revision__ = "$Id$" + import fix import re diff --git a/src/plugins.py b/src/plugins.py index fb76f9068..d73d16f1e 100644 --- a/src/plugins.py +++ b/src/plugins.py @@ -29,6 +29,8 @@ # POSSIBILITY OF SUCH DAMAGE. ### +__revision__ = "$Id$" + import fix import gc @@ -42,6 +44,8 @@ import random import urllib2 import threading +__revision__ = "$Id$" + import fix import cdb import conf diff --git a/src/privmsgs.py b/src/privmsgs.py index cb92c65e9..92b704ae5 100644 --- a/src/privmsgs.py +++ b/src/privmsgs.py @@ -33,6 +33,8 @@ Includes various accessories for callbacks.Privmsg based callbacks. """ +__revision__ = "$Id$" + import fix import time diff --git a/src/schedule.py b/src/schedule.py index f777bd177..c5aaa7cd5 100644 --- a/src/schedule.py +++ b/src/schedule.py @@ -34,6 +34,8 @@ Schedule plugin with a subclass of drivers.IrcDriver in order to be run as a Supybot driver. """ +__revision__ = "$Id$" + import fix import time diff --git a/src/socketDrivers.py b/src/socketDrivers.py index 1d2d5f141..ad5b74e17 100644 --- a/src/socketDrivers.py +++ b/src/socketDrivers.py @@ -35,6 +35,8 @@ Contains simple socket drivers. Asyncore bugged (haha, pun!) me. from __future__ import division +__revision__ = "$Id$" + import fix import time diff --git a/src/structures.py b/src/structures.py index 689c77c7a..15056b6f6 100644 --- a/src/structures.py +++ b/src/structures.py @@ -35,6 +35,8 @@ Data structures for Python. ## from __future__ import generators +__revision__ = "$Id$" + import fix import types diff --git a/src/twistedDrivers.py b/src/twistedDrivers.py index b0dfed21c..c9c87adb3 100644 --- a/src/twistedDrivers.py +++ b/src/twistedDrivers.py @@ -29,6 +29,8 @@ # POSSIBILITY OF SUCH DAMAGE. ### +__revision__ = "$Id$" + import fix import time diff --git a/src/utils.py b/src/utils.py index ad63ddcfc..5b7a6765c 100755 --- a/src/utils.py +++ b/src/utils.py @@ -35,6 +35,8 @@ Simple utility functions. ## from __future__ import generators +__revision__ = "$Id$" + import fix import os diff --git a/src/world.py b/src/world.py index 639cb995b..02b231145 100644 --- a/src/world.py +++ b/src/world.py @@ -33,6 +33,8 @@ Module for general worldly stuff, like global variables and whatnot. """ +__revision__ = "$Id$" + import fix import gc