summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-02-16 02:24:54 +0100
committermathieui <mathieui@mathieui.net>2012-02-16 02:24:54 +0100
commit762bd953cb1c3e8e53857cc22116aa86dd7c259a (patch)
tree513d9ce7915c26582d681d4c228f481d3aada088 /doc
parent55788f6127c25a549aa93efd5ed147695f875890 (diff)
downloadpoezio-762bd953cb1c3e8e53857cc22116aa86dd7c259a.tar.gz
poezio-762bd953cb1c3e8e53857cc22116aa86dd7c259a.tar.bz2
poezio-762bd953cb1c3e8e53857cc22116aa86dd7c259a.tar.xz
poezio-762bd953cb1c3e8e53857cc22116aa86dd7c259a.zip
Add some new events for the plugins
Diffstat (limited to 'doc')
-rw-r--r--doc/en/plugins.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/en/plugins.txt b/doc/en/plugins.txt
index f31086dc..9d81ad66 100644
--- a/doc/en/plugins.txt
+++ b/doc/en/plugins.txt
@@ -310,6 +310,33 @@ MUC. The parameters given to this handler are:
* _presence_: The presence about to be sent.
+The following can be deduced from the muc_presence event, but are more
+ specialized.
+
+*muc_join*:: +presence+, +tab+ +
+The handlers for this event are called when someone joins a MUC (can be you).
+
+* _presence_: Presence received.
+* _tab_: Tab of the concerned MUC.
+
+*muc_nickchange*:: +presence+, +tab+ +
+The handlers for this event are called when someone changes his nick in a MUC.
+
+* _presence_: Presence received.
+* _tab_: Tab of the concerned MUC.
+
+*muc_ban*:: +presence+, +tab+ +
+The handlers for this event are called when someone gets banned in a MUC.
+
+* _presence_: Presence received.
+* _tab_: Tab of the concerned MUC.
+
+*muc_kick*:: +presence+, +tab+ +
+The handlers for this event are called when someone gets kicked in a MUC.
+
+* _presence_: Presence received.
+* _tab_: Tab of the concerned MUC.
+
SleekXMPP events
~~~~~~~~~~~~~~~~