2014-02-12 22:29:21 +00:00
|
|
|
"""
|
2014-03-27 22:45:47 +00:00
|
|
|
Insert a space between each character, in messages that you send, making
|
|
|
|
them horrible to read.
|
2014-02-12 22:29:21 +00:00
|
|
|
"""
|
|
|
|
from plugin import BasePlugin
|
2014-04-01 21:04:10 +00:00
|
|
|
import xhtml
|
2014-02-12 22:29:21 +00:00
|
|
|
|
|
|
|
class Plugin(BasePlugin):
|
|
|
|
def init(self):
|
|
|
|
self.api.add_event_handler('muc_say', self.add_spaces)
|
|
|
|
self.api.add_event_handler('conversation_say', self.add_spaces)
|
|
|
|
self.api.add_event_handler('private_say', self.add_spaces)
|
|
|
|
|
|
|
|
def add_spaces(self, msg, tab):
|
2014-04-01 21:04:10 +00:00
|
|
|
msg['body'] = " ".join(x for x in xhtml.clean_text(msg['body']))
|