diff options
Diffstat (limited to 'plugins/capslock.py')
-rw-r--r-- | plugins/capslock.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/capslock.py b/plugins/capslock.py new file mode 100644 index 00000000..57dea345 --- /dev/null +++ b/plugins/capslock.py @@ -0,0 +1,24 @@ +""" +Shout + +Installation +------------ + +You only have to load the plugin: + +.. code-block:: none + + /load capslock + + +""" +from plugin import BasePlugin + +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'] = msg['body'].upper() |