IT’S CAPS LOCK DAY
This commit is contained in:
parent
1a6dbad881
commit
18642ceb71
1 changed files with 24 additions and 0 deletions
24
plugins/capslock.py
Normal file
24
plugins/capslock.py
Normal 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()
|
Loading…
Reference in a new issue