poezio/plugins/capslock.py

16 lines
459 B
Python
Raw Normal View History

2013-06-28 09:31:25 +00:00
"""
Once loaded, everything you will send will be IN CAPITAL LETTERS.
2013-06-28 09:31:25 +00:00
"""
from poezio.plugin import BasePlugin
from poezio import xhtml
2013-06-28 09:31:25 +00:00
2018-08-15 11:13:17 +00:00
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):
msg['body'] = xhtml.clean_text(msg['body']).upper()