Filter: Rename _(un)code to _(morse|unMorse)code

Closes: Sf#3056753
Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
James Vega 2010-08-31 18:52:09 -04:00
parent 28839f8d00
commit 452c019b10

View File

@ -265,7 +265,7 @@ class Filter(callbacks.Plugin):
irc.reply(s)
scramble = wrap(scramble, ['text'])
_code = {
_morseCode = {
"A" : ".-",
"B" : "-...",
"C" : "-.-.",
@ -313,7 +313,7 @@ class Filter(callbacks.Plugin):
"@" : ".--.-.",
"=" : "-...-"
}
_revcode = dict([(y, x) for (x, y) in _code.items()])
_revMorseCode = dict([(y, x) for (x, y) in _morseCode.items()])
_unmorsere = re.compile('([.-]+)')
def unmorse(self, irc, msg, args, text):
"""<Morse code text>
@ -323,7 +323,7 @@ class Filter(callbacks.Plugin):
text = text.replace('_', '-')
def morseToLetter(m):
s = m.group(1)
return self._revcode.get(s, s)
return self._revMorseCode.get(s, s)
text = self._unmorsere.sub(morseToLetter, text)
text = text.replace(' ', '\x00')
text = text.replace(' ', '')
@ -338,10 +338,7 @@ class Filter(callbacks.Plugin):
"""
L = []
for c in text.upper():
if c in self._code:
L.append(self._code[c])
else:
L.append(c)
L.append(self._morseCode.get(c, c))
irc.reply(' '.join(L))
morse = wrap(morse, ['text'])