mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Services: Properly register the NickServ.password group and child values.
Closes: Sf#3019174
Signed-off-by: James Vega <jamessan@users.sourceforge.net>
(cherry picked from commit d78f7b6ac5
)
This commit is contained in:
parent
31d5191dcd
commit
8c280369a6
@ -1,5 +1,6 @@
|
|||||||
###
|
###
|
||||||
# Copyright (c) 2005, Jeremiah Fincher
|
# Copyright (c) 2005, Jeremiah Fincher
|
||||||
|
# Copyright (c) 2010, James Vega
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
@ -33,7 +34,10 @@ import supybot.registry as registry
|
|||||||
|
|
||||||
def registerNick(nick, password=''):
|
def registerNick(nick, password=''):
|
||||||
p = conf.supybot.plugins.Services.Nickserv.get('password')
|
p = conf.supybot.plugins.Services.Nickserv.get('password')
|
||||||
v = p.register(nick, registry.String(password, '', private=True))
|
h = 'Determines what password the bot will use with NickServ when ' \
|
||||||
|
'identifying as %s.' % nick
|
||||||
|
v = p.register(nick, registry.String(password, h, private=True))
|
||||||
|
v.channelValue = False
|
||||||
if password:
|
if password:
|
||||||
v.setValue(password)
|
v.setValue(password)
|
||||||
|
|
||||||
@ -82,9 +86,7 @@ conf.registerGlobalValue(Services, 'ghostDelay',
|
|||||||
conf.registerGlobalValue(Services, 'NickServ',
|
conf.registerGlobalValue(Services, 'NickServ',
|
||||||
ValidNickOrEmptyString('', """Determines what nick the 'NickServ' service
|
ValidNickOrEmptyString('', """Determines what nick the 'NickServ' service
|
||||||
has."""))
|
has."""))
|
||||||
conf.registerGroup(Services.NickServ, 'password',
|
conf.registerGroup(Services.NickServ, 'password')
|
||||||
registry.String('', """Determines what password the bot will use with
|
|
||||||
NickServ.""", private=True))
|
|
||||||
conf.registerGlobalValue(Services, 'ChanServ',
|
conf.registerGlobalValue(Services, 'ChanServ',
|
||||||
ValidNickOrEmptyString('', """Determines what nick the 'ChanServ' service
|
ValidNickOrEmptyString('', """Determines what nick the 'ChanServ' service
|
||||||
has."""))
|
has."""))
|
||||||
|
Loading…
Reference in New Issue
Block a user