Software /
code /
prosody
Comparison
plugins/mod_csi_simple.lua @ 10823:b8be600803ee
mod_csi_simple: Add comment highlighting that XEP-0353 is experimental
To make it easier to find implemented Experimental XEPs later. Also at
the time of this commit it has been Proposed as mentinoed in the
comment but hopefully that will be resolved soon.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 09 May 2020 01:01:03 +0200 |
parent | 10822:af42448a8e98 |
child | 10824:c8430ee33967 |
comparison
equal
deleted
inserted
replaced
10822:af42448a8e98 | 10823:b8be600803ee |
---|---|
62 end | 62 end |
63 if stanza:get_child("x", "jabber:x:conference") or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then | 63 if stanza:get_child("x", "jabber:x:conference") or stanza:find("{http://jabber.org/protocol/muc#user}x/invite") then |
64 return true, "invite"; | 64 return true, "invite"; |
65 end | 65 end |
66 if stanza:get_child(nil, "urn:xmpp:jingle-message:0") then | 66 if stanza:get_child(nil, "urn:xmpp:jingle-message:0") then |
67 -- XXX Experimental XEP stuck in Proposed for almost a year at the time of this comment | |
67 return true, "jingle call"; | 68 return true, "jingle call"; |
68 end | 69 end |
69 for important in important_payloads do | 70 for important in important_payloads do |
70 if stanza:find(important) then | 71 if stanza:find(important) then |
71 return true; | 72 return true; |