plugins/muc/muc.lib.lua
Fri, 19 Nov 2010 03:20:29 +0500 Waqas Hussain MUC: Include the user's current presence contents when broadcasting a role change.
Fri, 19 Nov 2010 03:06:51 +0500 Waqas Hussain MUC: Include the user's current presence contents when broadcasting an affiliation change.
Wed, 17 Nov 2010 15:58:32 +0100 Kim Alvefur MUC: Change room name and description properly
Thu, 11 Nov 2010 00:55:33 +0100 Kim Alvefur MUC: Grant membership when inviteing someone into a members-only room.
Wed, 10 Nov 2010 06:27:35 +0500 Waqas Hussain MUC: Only send status code 110 (entering non-anonymous room) to the occupant themselves, not to other occupants.
Wed, 10 Nov 2010 05:49:04 +0500 Waqas Hussain MUC: Added some more missing :up()s to the stanza building for presence broadcasts (thanks again Zash).
Wed, 10 Nov 2010 01:34:57 +0100 Kim Alvefur MUC: Parse submitted form with util.dataforms
Wed, 10 Nov 2010 05:32:09 +0500 Waqas Hussain MUC: Added a missing :up() to the stanza building for presence broadcast (thanks Zash).
Wed, 10 Nov 2010 00:24:17 +0500 Waqas Hussain MUC: Handle missing <value/> for <field type='boolean'/> in config form submissions.
Sat, 16 Oct 2010 23:00:42 +0500 Waqas Hussain Monster whitespace commit (beware the whitespace monster).
Tue, 12 Oct 2010 23:42:28 +0200 Kim Alvefur MUC: Use util.dataforms to generate forms
Tue, 12 Oct 2010 23:34:16 +0200 Kim Alvefur MUC: fix timezone support when sending history
Tue, 28 Sep 2010 16:36:17 +0500 Waqas Hussain MUC: Make the room node be the default room name (thanks Zash).
Mon, 27 Sep 2010 19:51:14 +0500 Waqas Hussain Merge with trunk.
Sun, 26 Sep 2010 18:15:30 +0200 Kim Alvefur MUC: Added a 'Description' property (muc#roomconfig_roomdesc)
Fri, 24 Sep 2010 21:16:38 +0200 Kim Alvefur MUC: Added a 'Name' property (muc#roomconfig_roomname)
Mon, 27 Sep 2010 19:00:11 +0500 Waqas Hussain MUC: Fixed traceback on presence errors lacking a condition.
Tue, 03 Aug 2010 21:37:06 +0500 Waqas Hussain MUC: Fixed: Unavilable presence was not being broadcasted for banned users in some cases (thanks Zash).
Tue, 03 Aug 2010 21:07:00 +0500 Waqas Hussain MUC: Return correct error to non-members attempting to enter a members-only room.
Tue, 20 Jul 2010 17:39:02 +0500 Waqas Hussain MUC: Store the nick (full room JID) which set the subject, and send subject to occupants from that JID.
Wed, 14 Jul 2010 19:48:01 +0500 Waqas Hussain MUC: Fixed a traceback introduced in hg:bdc325ce9fbc.
Tue, 06 Jul 2010 17:09:23 +0100 Matthew Wild MUC: Make number of stored history messages configurable with option max_history_messages (thanks michal and others who requested)
Sat, 19 Jun 2010 23:39:29 +0500 Waqas Hussain MUC: A little modification to improve code analysis.
Sat, 19 Jun 2010 23:38:25 +0500 Waqas Hussain MUC: Updated room:set_role() to use room:can_set_role().
Sat, 19 Jun 2010 23:35:53 +0500 Waqas Hussain MUC: Added room:can_set_role().
Sun, 13 Jun 2010 22:06:06 +0500 Waqas Hussain MUC: Added disco#info features to advertise room's anonymity status (muc_semianonymous or muc_nonanonymous).
Sun, 13 Jun 2010 22:00:08 +0500 Waqas Hussain MUC: Added disco#info features to advertise room's public status (muc_public or muc_hidden).
Sun, 13 Jun 2010 21:58:46 +0500 Waqas Hussain MUC: Updated code to use :set_hidden() and :is_hidden().
Sun, 13 Jun 2010 21:54:47 +0500 Waqas Hussain MUC: Added room:set_hidden(boolean) and room:is_hidden().
Sun, 13 Jun 2010 21:43:53 +0500 Waqas Hussain MUC: Added disco#info features to advertise room's persistence status (muc_persistent or muc_temporary).
Sun, 13 Jun 2010 21:41:49 +0500 Waqas Hussain MUC: Replaced direct access of room's internal persistence state with :set_persistent(boolean) and :is_persistent() in various functions.
Sun, 13 Jun 2010 21:38:31 +0500 Waqas Hussain MUC: Added room:set_persistent(boolean) and room:is_persistent().
Sun, 13 Jun 2010 20:55:07 +0500 Waqas Hussain MUC: Added disco#info features to advertise room's members-only status (muc_membersonly or muc_open).
Sun, 13 Jun 2010 20:52:37 +0500 Waqas Hussain MUC: Added a 'Make Room Members-Only?' field to the room config dialog.
Sun, 13 Jun 2010 20:44:38 +0500 Waqas Hussain MUC: Updated room:get_default_role() to not assign unaffiliated occupants a role in members-only rooms.
Sun, 13 Jun 2010 20:37:09 +0500 Waqas Hussain MUC: Added room:set_members_only(boolean) and room:is_members_only().
Sun, 13 Jun 2010 20:29:27 +0500 Waqas Hussain MUC: Added disco#info features to advertise room's moderation status (muc_moderated or muc_unmoderated).
Sun, 13 Jun 2010 20:24:55 +0500 Waqas Hussain MUC: Added a 'Make Room Moderated?' field to the room config dialog.
Sun, 13 Jun 2010 20:10:42 +0500 Waqas Hussain MUC: Updated room:get_default_role() to assign unaffiliated occupants a "visitor" role in moderated rooms.
Sun, 13 Jun 2010 20:08:51 +0500 Waqas Hussain MUC: Added room:set_moderated(boolean) and room:is_moderated().
Sun, 13 Jun 2010 20:05:45 +0500 Waqas Hussain MUC: Persist data in room:set_password() when called programmatically.
Sun, 13 Jun 2010 19:19:03 +0500 Waqas Hussain MUC: Added a password field to the room config dialog.
Sun, 13 Jun 2010 19:03:03 +0500 Waqas Hussain MUC: Include a <password/> element in invites from password protected rooms.
Sun, 13 Jun 2010 18:29:26 +0500 Waqas Hussain MUC: Added disco#info features to advertise room's password protection (muc_passwordprotected or muc_unsecured, depending on whether a password is set).
Sun, 13 Jun 2010 18:14:46 +0500 Waqas Hussain MUC: Added password checking on room join.
Sun, 13 Jun 2010 18:13:18 +0500 Waqas Hussain MUC: Added room:get_password() and room:set_password().
Tue, 04 May 2010 23:36:50 +0100 Matthew Wild Merge 0.7->trunk (with MUC needing checking, waqas)
Sat, 01 May 2010 05:18:38 +0500 Waqas Hussain Merge 0.6 into 0.7.
Wed, 14 Apr 2010 17:54:33 +0500 Waqas Hussain MUC: Allow moderators which are not owners to change roles.
Mon, 19 Apr 2010 18:30:59 +0500 Waqas Hussain MUC: Include <status code='100'/> in a message, not in presence. Fixes various issues.
Mon, 22 Mar 2010 17:26:12 +0000 Matthew Wild Merge 0.7->trunk
Mon, 22 Mar 2010 17:24:55 +0000 Matthew Wild Merge 0.6->0.7
Mon, 22 Mar 2010 17:06:15 +0000 Matthew Wild Update copyright headers for 2010
Wed, 17 Mar 2010 03:16:43 +0500 Waqas Hussain MUC: Added support for letting clients manage discussion history.
Thu, 18 Feb 2010 14:28:52 +0500 Waqas Hussain MUC: Allow role changes based on JIDs.
Sat, 30 Jan 2010 18:51:07 +0000 Matthew Wild MUC: muc.lib.lua: Fix the sending of the occupant JID instead of the nick in role lists and presence broadcasts after role changes (thanks teo)
Thu, 18 Feb 2010 14:28:52 +0500 Waqas Hussain MUC: Allow role changes based on JIDs.
Sat, 30 Jan 2010 18:51:07 +0000 Matthew Wild MUC: muc.lib.lua: Fix the sending of the occupant JID instead of the nick in role lists and presence broadcasts after role changes (thanks teo)
Fri, 29 Jan 2010 15:13:06 +0000 Matthew Wild MUC: Fixes and refactoring for the previous commit to work in all cases, text of error stanzas is now broadcast
Fri, 29 Jan 2010 14:40:37 +0000 Matthew Wild MUC: Show error message texts when participants are kicked for stanza errors
less more (0) -100 -60 tip