IT’S CAPS LOCK DAY

This commit is contained in:
Florent Le Coz 2013-06-28 11:31:25 +02:00
parent 1a6dbad881
commit 18642ceb71

24
plugins/capslock.py Normal file
View file

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