regex-cleanup #19

Merged
pratyush merged 19 commits from regex-cleanup into master 2023-05-03 13:01:49 +02:00
Showing only changes of commit a321b6584d - Show all commits

View File

@ -37,12 +37,12 @@ except:
# without the i18n module
_ = lambda x: x
class ValidChannel(registry.string):
"""Value must be a valid channel"""
def setValue(self, v):
if not (ircutils.isChannel(v)):
self.error()
registry.String.setValue(self, v)
#class ValidChannel(registry.string):
# """Value must be a valid channel"""
# def setValue(self, v):
# if not (ircutils.isChannel(v)):
# self.error()
# registry.String.setValue(self, v)
def configure(advanced):
# This will be called by supybot to configure this module. advanced is
@ -58,8 +58,8 @@ SnoParser = conf.registerPlugin('SnoParser')
# conf.registerGlobalValue(SnoParser, 'someConfigVariableName',
# registry.Boolean(False, _("""Help for someConfigVariableName.""")))
conf.registerNetworkValue(SnoParser, 'targetChannel', ValidChannel,
("", ("""Determines which channel the bot should send snolines""")))
#conf.registerNetworkValue(SnoParser, 'targetChannel', ValidChannel,
# ("", ("""Determines which channel the bot should send snolines""")))
conf.registerGlobalValue(SnoParser, 'AutoVhost',
registry.String('libcasa/user/', ("""Configure the vhost eg. libcasa/user/$account""")))