diff options
author | mathieui <mathieui@mathieui.net> | 2012-02-16 02:24:54 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-02-16 02:24:54 +0100 |
commit | 762bd953cb1c3e8e53857cc22116aa86dd7c259a (patch) | |
tree | 513d9ce7915c26582d681d4c228f481d3aada088 /doc/en | |
parent | 55788f6127c25a549aa93efd5ed147695f875890 (diff) | |
download | poezio-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/en')
-rw-r--r-- | doc/en/plugins.txt | 27 |
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 ~~~~~~~~~~~~~~~~ |