mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 05:09:23 +01:00
Added __revision__ strings.
This commit is contained in:
parent
6ce845f8d3
commit
5f4a541fe1
@ -33,6 +33,8 @@
|
||||
Allows 'aliases' for other commands.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -33,6 +33,8 @@
|
||||
Amazon module, to use Amazon's Web Services. Currently only does ISBN lookups.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import amazon
|
||||
|
@ -33,6 +33,8 @@
|
||||
Babelfish-related commands.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import random
|
||||
|
@ -34,6 +34,8 @@ Filters bad words on outgoing messages from the bot, so the bot can't be made
|
||||
to say bad words.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -45,6 +45,8 @@ from htmlentitydefs import entitydefs as entities
|
||||
import conf
|
||||
import debug
|
||||
import utils
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
import ircutils
|
||||
import privmsgs
|
||||
|
@ -35,6 +35,8 @@ concerning joins, parts, and various other commands in addition to tracking
|
||||
statistics about smileys, actions, characters, and words.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -33,6 +33,8 @@
|
||||
Logs each channel to its own individual logfile.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import time
|
||||
|
@ -34,6 +34,8 @@ Handles standard CTCP responses to PING, TIME, SOURCE, VERSION, USERINFO,
|
||||
and FINGER.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -33,6 +33,8 @@
|
||||
Supports various DCC things.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import socket
|
||||
|
@ -33,6 +33,8 @@
|
||||
This is a module to contain Debian-specific commands.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -33,6 +33,8 @@
|
||||
Commands that use the dictd protocol to snag stuff off a server.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import sets
|
||||
|
@ -38,6 +38,8 @@ import conf
|
||||
import time
|
||||
import ircdb
|
||||
import sqlite
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import utils
|
||||
|
@ -38,6 +38,8 @@ import sets
|
||||
import getopt
|
||||
import urllib2
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import conf
|
||||
|
@ -34,6 +34,8 @@ Enforcer: Enforces capabilities on a channel, watching MODEs, KICKs,
|
||||
JOINs, etc. to make sure they match the channel's config.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import conf
|
||||
|
@ -34,6 +34,8 @@ Handles "factoids," little tidbits of information held in a database and
|
||||
available on demand via several commands.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import time
|
||||
|
@ -34,6 +34,8 @@ Allows people behind a relaybot (which uses <nick@network> to relay messages)
|
||||
to access the bot.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -33,6 +33,8 @@
|
||||
Just a regexp module to make the bot a wee bit friendlier.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import debug
|
||||
|
@ -33,6 +33,8 @@
|
||||
Provides fun commands that require a database to operate.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -33,7 +33,7 @@
|
||||
Handles URL snarfing for Gameknot.com and the gkstats command.
|
||||
"""
|
||||
|
||||
__revision__ = "$id$"
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
|
@ -33,6 +33,8 @@
|
||||
Acceses Google for various things.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -33,6 +33,8 @@
|
||||
Provides several commands that go out to websites and get things.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -33,6 +33,8 @@
|
||||
A plugin that tries to emulate Infobot somewhat faithfully.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -40,6 +40,8 @@ from itertools import imap
|
||||
import sqlite
|
||||
|
||||
import utils
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
import privmsgs
|
||||
import callbacks
|
||||
|
@ -33,6 +33,8 @@
|
||||
Removes all bold output by the bot.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -33,6 +33,8 @@
|
||||
The Lookup plugin handles looking up various values by their key.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -36,6 +36,8 @@ later hijinks. To read more about Markov Chains, check out
|
||||
large enough, you can have it make fun little random messages from it.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os.path
|
||||
|
@ -33,6 +33,8 @@
|
||||
Various math-related commands.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -36,6 +36,8 @@ command, it checks the factoid database for a key that matches what was said
|
||||
and if nothing is found, responds with an entry from the "dunno" database.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -34,6 +34,8 @@ Does various (well, only one at the moment :)) things with the Internet Movie
|
||||
Database.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
from itertools import imap
|
||||
|
@ -33,6 +33,8 @@
|
||||
Various network-related commands.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import sets
|
||||
|
@ -34,6 +34,8 @@ A module to allow each channel to have "news" which people will be notified of
|
||||
when they join the channel. News items may have expiration dates.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -34,6 +34,8 @@ A complete messaging system that allows users to leave 'notes' for other
|
||||
users that can be retrieved later.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import time
|
||||
|
@ -34,6 +34,8 @@ Commands specific to OSU;
|
||||
(The Ohio State University, <http://www.ohio-state.edu/>)
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import urllib2
|
||||
|
@ -43,6 +43,8 @@ import utils
|
||||
import ircdb
|
||||
import ircmsgs
|
||||
import ircutils
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
import privmsgs
|
||||
import callbacks
|
||||
|
@ -34,6 +34,8 @@
|
||||
A module for managing and voting on polls.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import utils
|
||||
|
@ -34,6 +34,8 @@ Various commands relating to Python (the programming language supybot is
|
||||
written in) somehow.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -37,6 +37,8 @@ can store many quotes per person and display their most recent quote, as well
|
||||
as see who "grabbed" the quote in the first place.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -33,6 +33,8 @@
|
||||
Maintains a Quotes database for each channel.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -34,6 +34,8 @@ Provides basic functionality for handling RSS/RDF feeds. Depends on the Alias
|
||||
module for user-friendliness.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import time
|
||||
|
@ -33,6 +33,8 @@
|
||||
Logs raw IRC messages to a file, conf.dataDir/raw.log
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -33,6 +33,8 @@
|
||||
Handles relaying between networks.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -33,6 +33,8 @@
|
||||
Warns people when they join a channel if their ident is root.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import irclib
|
||||
|
@ -33,6 +33,8 @@
|
||||
Services: Handles management of nicks with NickServ, and ops with ChanServ.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -43,6 +43,8 @@ from itertools import ifilter, imap
|
||||
import conf
|
||||
import debug
|
||||
import utils
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
import ircutils
|
||||
import privmsgs
|
||||
|
@ -33,6 +33,8 @@
|
||||
A simple module to handle various informational commands querying the bot's
|
||||
current status and statistics.
|
||||
"""
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -34,6 +34,8 @@ The Todo module allows registered users to keep their own personal list of
|
||||
tasks to do, with an optional priority for each.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import glob
|
||||
|
@ -33,6 +33,8 @@
|
||||
Provides commands for manipulating channel topics.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import re
|
||||
|
@ -35,6 +35,8 @@ searching for URLs and returning random URLs. Also provides statistics on the
|
||||
URLs in the database.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -33,6 +33,8 @@
|
||||
Provides commands available only on Unix.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import os
|
||||
|
@ -33,6 +33,8 @@
|
||||
Various utility commands, mostly useful for manipulating nested commands.
|
||||
"""
|
||||
|
||||
__revision__ = "$Id$"
|
||||
|
||||
import plugins
|
||||
|
||||
import string
|
||||
|
Loading…
Reference in New Issue
Block a user