Changed the Lookup plugin to be FileLookup instead.

This commit is contained in:
Jeremy Fincher 2003-10-19 15:05:40 +00:00
parent 4b4ae20155
commit 7f05bcf14b

View File

@ -30,7 +30,7 @@
### ###
""" """
The Lookup plugin handles looking up various values by their key. The FileLookup plugin handles looking up various values by their key.
""" """
import plugins import plugins
@ -52,7 +52,7 @@ def configure(onStart, afterConnect, advanced):
# like to be run when the bot is started; append to afterConnect the # like to be run when the bot is started; append to afterConnect the
# commands you would like to be run when the bot has finished connecting. # commands you would like to be run when the bot has finished connecting.
from questions import expect, anything, something, yn from questions import expect, anything, something, yn
onStart.append('load Lookup') onStart.append('load FileLookup')
print 'This module allows you to define commands that do a simple key' print 'This module allows you to define commands that do a simple key'
print 'lookup and return some simple value. It has a command "addlookup"' print 'lookup and return some simple value. It has a command "addlookup"'
print 'that takes a command name and a file in conf.dataDir and adds a' print 'that takes a command name and a file in conf.dataDir and adds a'
@ -98,9 +98,9 @@ example = utils.wrapLines("""
""") """)
def getDb(): def getDb():
return sqlite.connect(os.path.join(conf.dataDir, 'Lookup.db')) return sqlite.connect(os.path.join(conf.dataDir, 'FileLookup.db'))
class Lookup(callbacks.Privmsg): class FileLookup(callbacks.Privmsg):
def die(self): def die(self):
db = getDb() db = getDb()
db.commit() db.commit()
@ -216,7 +216,6 @@ class Lookup(callbacks.Privmsg):
irc.reply(msg, '%s: %s' % (key, value)) irc.reply(msg, '%s: %s' % (key, value))
Class = FileLookup
Class = Lookup
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: # vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: