2013-06-28 09:31:25 +00:00
|
|
|
"""
|
2014-03-27 22:45:47 +00:00
|
|
|
Once loaded, everything you will send will be IN CAPITAL LETTERS.
|
2013-06-28 09:31:25 +00:00
|
|
|
"""
|
2016-06-27 23:10:52 +00:00
|
|
|
from poezio.plugin import BasePlugin
|
|
|
|
from poezio import xhtml
|
2013-06-28 09:31:25 +00:00
|
|
|
|
|
|
|
class Plugin(BasePlugin):
|
|
|
|
def init(self):
|
|
|
|
self.api.add_event_handler('muc_say', self.caps)
|
|
|
|
self.api.add_event_handler('conversation_say', self.caps)
|
|
|
|
self.api.add_event_handler('private_say', self.caps)
|
|
|
|
|
|
|
|
def caps(self, msg, tab):
|
2014-04-01 21:04:10 +00:00
|
|
|
msg['body'] = xhtml.clean_text(msg['body']).upper()
|