blob: 3a961baee727ece159f953d5f0eea706822dea2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
"""
Shuffle the words in every message you send in a :ref:`muctab`
(may/should confuse the reader).
"""
from plugin import BasePlugin
from random import shuffle
import xhtml
class Plugin(BasePlugin):
def init(self):
self.api.add_event_handler('muc_say', self.shuffle)
def shuffle(self, msg, tab):
split = xhtml.clean_text(msg['body']).split()
shuffle(split)
msg['body'] = ' '.join(split)
|