summaryrefslogtreecommitdiff
path: root/plugins/capslock.py
blob: 7f9600099655cbb79d7e11e9a916bfb38f797922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
Once loaded, everything you will send will be IN CAPITAL LETTERS.
"""
from poezio.plugin import BasePlugin
from poezio import xhtml


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()