summaryrefslogtreecommitdiff
path: root/plugins/capslock.py
blob: c315fcfaafa43d67a86624be1d299fdec4b2c3a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
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()