Software /
code /
prosody
Comparison
plugins/muc/muc.lib.lua @ 3263:4973b737d4c7
MUC: Added disco#info features to advertise room's public status (muc_public or muc_hidden).
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Sun, 13 Jun 2010 22:00:08 +0500 |
parent | 3262:330010ef078f |
child | 3264:e1c787c6f86e |
comparison
equal
deleted
inserted
replaced
3262:330010ef078f | 3263:4973b737d4c7 |
---|---|
213 :tag("feature", {var="http://jabber.org/protocol/muc"}):up() | 213 :tag("feature", {var="http://jabber.org/protocol/muc"}):up() |
214 :tag("feature", {var=self:get_password() and "muc_passwordprotected" or "muc_unsecured"}):up() | 214 :tag("feature", {var=self:get_password() and "muc_passwordprotected" or "muc_unsecured"}):up() |
215 :tag("feature", {var=self:is_moderated() and "muc_moderated" or "muc_unmoderated"}):up() | 215 :tag("feature", {var=self:is_moderated() and "muc_moderated" or "muc_unmoderated"}):up() |
216 :tag("feature", {var=self:is_members_only() and "muc_membersonly" or "muc_open"}):up() | 216 :tag("feature", {var=self:is_members_only() and "muc_membersonly" or "muc_open"}):up() |
217 :tag("feature", {var=self:is_persistent() and "muc_persistent" or "muc_temporary"}):up() | 217 :tag("feature", {var=self:is_persistent() and "muc_persistent" or "muc_temporary"}):up() |
218 :tag("feature", {var=self:is_hidden() and "muc_hidden" or "muc_public"}):up() | |
218 ; | 219 ; |
219 end | 220 end |
220 function room_mt:get_disco_items(stanza) | 221 function room_mt:get_disco_items(stanza) |
221 local reply = st.reply(stanza):query("http://jabber.org/protocol/disco#items"); | 222 local reply = st.reply(stanza):query("http://jabber.org/protocol/disco#items"); |
222 for room_jid in pairs(self._occupants) do | 223 for room_jid in pairs(self._occupants) do |