Forgot questions.

This commit is contained in:
Jeremy Fincher 2004-07-25 18:24:51 +00:00
parent c515e925b8
commit 16f4231780
29 changed files with 31 additions and 31 deletions

View File

@ -51,7 +51,7 @@ import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
output('To use Amazon\'s Web Services, you must have a license key.') output('To use Amazon\'s Web Services, you must have a license key.')
if yn('Do you have a license key?'): if yn('Do you have a license key?'):
key = anything('What is it?') key = anything('What is it?')

View File

@ -51,7 +51,7 @@ def configure(advanced):
# a bool that specifies whether the user identified himself as an advanced # a bool that specifies whether the user identified himself as an advanced
# user or not. You should effect your configuration by manipulating the # user or not. You should effect your configuration by manipulating the
# registry as appropriate. # registry as appropriate.
from questions import expect, anything, something, yn from supybot.questions import expect, anything, something, yn
conf.registerPlugin('Anonymous', True) conf.registerPlugin('Anonymous', True)
conf.registerPlugin('Anonymous') conf.registerPlugin('Anonymous')

View File

@ -53,7 +53,7 @@ import supybot.registry as registry
import supybot.callbacks as callbacks import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('BadWords', True) conf.registerPlugin('BadWords', True)
if yn('Would you like to add some bad words?'): if yn('Would you like to add some bad words?'):
words = anything('What words? (separate individual words by spaces)') words = anything('What words? (separate individual words by spaces)')

View File

@ -90,7 +90,7 @@ class BugzillaError(Exception):
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, yn from supybot.questions import output, expect, anything, yn
conf.registerPlugin('Bugzilla', True) conf.registerPlugin('Bugzilla', True)
output("""The Bugzilla plugin has the functionality to watch for URLs output("""The Bugzilla plugin has the functionality to watch for URLs
that match a specific pattern (we call this a snarfer). When that match a specific pattern (we call this a snarfer). When

View File

@ -91,7 +91,7 @@ def configure(onStart, afterConnect, advanced):
# afterConnect are both lists. Append to onStart the commands you would # afterConnect are both lists. Append to onStart the commands you would
# 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, output from supybot.questions import expect, anything, something, yn, output
conf.registerPlugin('ChannelRelay', True) conf.registerPlugin('ChannelRelay', True)
class ChannelRelay(callbacks.Privmsg): class ChannelRelay(callbacks.Privmsg):

View File

@ -59,7 +59,7 @@ import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('Debian', True) conf.registerPlugin('Debian', True)
if not utils.findBinaryInPath('zgrep'): if not utils.findBinaryInPath('zgrep'):
if not advanced: if not advanced:

View File

@ -53,7 +53,7 @@ import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('Dict', True) conf.registerPlugin('Dict', True)
output('The default dictd server is dict.org.') output('The default dictd server is dict.org.')
if yn('Would you like to specify a different dictd server?'): if yn('Would you like to specify a different dictd server?'):

View File

@ -51,7 +51,7 @@ import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('Ebay', True) conf.registerPlugin('Ebay', True)
output("""The Ebay plugin has the functionality to watch for URLs output("""The Ebay plugin has the functionality to watch for URLs
that match a specific pattern (we call this a snarfer). When that match a specific pattern (we call this a snarfer). When

View File

@ -51,7 +51,7 @@ import supybot.registry as registry
import supybot.callbacks as callbacks import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('Enforcer', True) conf.registerPlugin('Enforcer', True)
chanserv = anything("""What\'s the name of ChanServ on your network? If chanserv = anything("""What\'s the name of ChanServ on your network? If
there is no ChanServ on your network, just press there is no ChanServ on your network, just press

View File

@ -52,7 +52,7 @@ def configure(advanced):
# a bool that specifies whether the user identified himself as an advanced # a bool that specifies whether the user identified himself as an advanced
# user or not. You should effect your configuration by manipulating the # user or not. You should effect your configuration by manipulating the
# registry as appropriate. # registry as appropriate.
from questions import expect, anything, something, yn from supybot.questions import expect, anything, something, yn
conf.registerPlugin('Format', True) conf.registerPlugin('Format', True)

View File

@ -52,7 +52,7 @@ import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('Gameknot', True) conf.registerPlugin('Gameknot', True)
if advanced: if advanced:
output("""The Gameknot plugin has the functionality to watch for URLs output("""The Gameknot plugin has the functionality to watch for URLs

View File

@ -60,7 +60,7 @@ import supybot.callbacks as callbacks
import supybot.structures as structures import supybot.structures as structures
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
output('To use Google\'t Web Services, you must have a license key.') output('To use Google\'t Web Services, you must have a license key.')
if yn('Do you have a license key?'): if yn('Do you have a license key?'):
key = something('What is it?') key = something('What is it?')

View File

@ -73,7 +73,7 @@ def configure(advanced):
# a bool that specifies whether the user identified himself as an advanced # a bool that specifies whether the user identified himself as an advanced
# user or not. You should effect your configuration by manipulating the # user or not. You should effect your configuration by manipulating the
# registry as appropriate. # registry as appropriate.
from questions import expect, anything, something, yn from supybot.questions import expect, anything, something, yn
conf.registerPlugin('Infobot', True) conf.registerPlugin('Infobot', True)
filename = os.path.join(conf.supybot.directories.data(), 'Infobot.db') filename = os.path.join(conf.supybot.directories.data(), 'Infobot.db')

View File

@ -182,7 +182,7 @@ conf.registerGlobalValue(conf.supybot.plugins.LogToIrc, 'notice',
True and the target is a nick, not a channel.""")) True and the target is a nick, not a channel."""))
def configure(advanced): def configure(advanced):
from questions import something, anything, yn, output from supybot.questions import something, anything, yn, output
output("""Here you can set which channels and who the bot has to send log output("""Here you can set which channels and who the bot has to send log
messages to. Note that by default in order to log to a channel messages to. Note that by default in order to log to a channel
the channel has to have mode +s set. Logging to a user requires the channel has to have mode +s set. Logging to a user requires

View File

@ -57,7 +57,7 @@ except ImportError:
'plugin. Download it at <http://pysqlite.sf.net/>' 'plugin. Download it at <http://pysqlite.sf.net/>'
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('Lookup', True) conf.registerPlugin('Lookup', True)
lookups = conf.supybot.plugins.Lookup.lookups lookups = conf.supybot.plugins.Lookup.lookups
output("""This module allows you to define commands that do a simple key output("""This module allows you to define commands that do a simple key

View File

@ -90,7 +90,7 @@ def configure(advanced):
# a bool that specifies whether the user identified himself as an advanced # a bool that specifies whether the user identified himself as an advanced
# user or not. You should effect your configuration by manipulating the # user or not. You should effect your configuration by manipulating the
# registry as appropriate. # registry as appropriate.
from questions import expect, anything, something, yn from supybot.questions import expect, anything, something, yn
conf.registerPlugin('Nickometer', True) conf.registerPlugin('Nickometer', True)

View File

@ -50,7 +50,7 @@ import supybot.privmsgs as privmsgs
import supybot.callbacks as callbacks import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, something, yn from supybot.questions import output, something, yn
conf.registerPlugin('Parter', True) conf.registerPlugin('Parter', True)
channel = ' ' channel = ' '
while channel: while channel:

View File

@ -68,7 +68,7 @@ if hasattr(math, '__file__'):
pythonPath = map(os.path.dirname, L) pythonPath = map(os.path.dirname, L)
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('Python', True) conf.registerPlugin('Python', True)
if yn("""This plugin provides a snarfer for ASPN Python Recipe URLs; if yn("""This plugin provides a snarfer for ASPN Python Recipe URLs;
it will output the name of the Recipe when it sees such a URL. it will output the name of the Recipe when it sees such a URL.

View File

@ -56,7 +56,7 @@ import supybot.registry as registry
import supybot.callbacks as callbacks import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('RSS', True) conf.registerPlugin('RSS', True)
prompt = 'Would you like to add an RSS feed?' prompt = 'Would you like to add an RSS feed?'
while yn(prompt): while yn(prompt):

View File

@ -56,7 +56,7 @@ import supybot.registry as registry
import supybot.callbacks as callbacks import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('Relay', True) conf.registerPlugin('Relay', True)
if yn('Would you like to relay between any channels?'): if yn('Would you like to relay between any channels?'):
channels = anything('What channels? Separated them by spaces.') channels = anything('What channels? Separated them by spaces.')

View File

@ -49,7 +49,7 @@ import supybot.schedule as schedule
import supybot.callbacks as callbacks import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('Services', True) conf.registerPlugin('Services', True)
nick = something('What is your registered nick?') nick = something('What is your registered nick?')
password = something('What is your password for that nick?') password = something('What is your password for that nick?')

View File

@ -56,7 +56,7 @@ import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('Sourceforge', True) conf.registerPlugin('Sourceforge', True)
output("""The Sourceforge plugin has the functionality to watch for URLs output("""The Sourceforge plugin has the functionality to watch for URLs
that match a specific pattern (we call this a snarfer). When that match a specific pattern (we call this a snarfer). When

View File

@ -62,7 +62,7 @@ except ImportError:
'plugin. Download it at <http://pysqlite.sf.net/>' 'plugin. Download it at <http://pysqlite.sf.net/>'
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('URL', True) conf.registerPlugin('URL', True)
if yn("""This plugin offers a snarfer that will go to tinyurl.com and get if yn("""This plugin offers a snarfer that will go to tinyurl.com and get
a shorter version of long URLs that are sent to the channel. a shorter version of long URLs that are sent to the channel.

View File

@ -56,7 +56,7 @@ import supybot.privmsgs as privmsgs
import supybot.callbacks as callbacks import supybot.callbacks as callbacks
def configure(advanced): def configure(advanced):
from questions import output, expect, anything, something, yn from supybot.questions import output, expect, anything, something, yn
conf.registerPlugin('Unix', True) conf.registerPlugin('Unix', True)
spellCmd = utils.findBinaryInPath('aspell') spellCmd = utils.findBinaryInPath('aspell')
if not spellCmd: if not spellCmd:

View File

@ -58,7 +58,7 @@ def configure(advanced):
# a bool that specifies whether the user identified himself as an advanced # a bool that specifies whether the user identified himself as an advanced
# user or not. You should effect your configuration by manipulating the # user or not. You should effect your configuration by manipulating the
# registry as appropriate. # registry as appropriate.
from questions import expect, anything, something, yn from supybot.questions import expect, anything, something, yn
conf.registerPlugin('UserInfo', True) conf.registerPlugin('UserInfo', True)

View File

@ -62,7 +62,7 @@ def configure(advanced):
# a bool that specifies whether the user identified himself as an advanced # a bool that specifies whether the user identified himself as an advanced
# user or not. You should effect your configuration by manipulating the # user or not. You should effect your configuration by manipulating the
# registry as appropriate. # registry as appropriate.
from questions import expect, anything, something, yn from supybot.questions import expect, anything, something, yn
conf.registerPlugin('XMLLogger', True) conf.registerPlugin('XMLLogger', True)

View File

@ -32,7 +32,7 @@
import supybot import supybot
import supybot.fix as fix import supybot.fix as fix
from questions import * from supybot.questions import *
import os import os
import sys import sys

View File

@ -12,7 +12,7 @@ if sys.version_info < (2, 3, 0):
sys.exit(-1) sys.exit(-1)
import supybot.conf as conf import supybot.conf as conf
from questions import * from supybot.questions import *
template = ''' template = '''
#!%s #!%s
@ -66,7 +66,7 @@ def configure(advanced):
# a bool that specifies whether the user identified himself as an advanced # a bool that specifies whether the user identified himself as an advanced
# user or not. You should effect your configuration by manipulating the # user or not. You should effect your configuration by manipulating the
# registry as appropriate. # registry as appropriate.
from questions import expect, anything, something, yn from supybot.questions import expect, anything, something, yn
conf.registerPlugin(%r, True) conf.registerPlugin(%r, True)

View File

@ -21,8 +21,8 @@ import supybot.utils as utils
import supybot.ircutils as ircutils import supybot.ircutils as ircutils
import supybot.registry as registry import supybot.registry as registry
import questions import supybot.questions as questions
from questions import output, yn, anything, something, expect, getpass from supybot.questions import output, yn, anything, something, expect, getpass
def getPlugins(pluginDirs): def getPlugins(pluginDirs):
filenames = [] filenames = []