aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/muc.lib.lua
Commit message (Collapse)AuthorAgeFilesLines
* MUC: Include the user's current presence contents when broadcasting a role ↵Waqas Hussain2010-11-191-6/+16
| | | | change.
* MUC: Include the user's current presence contents when broadcasting an ↵Waqas Hussain2010-11-191-9/+12
| | | | affiliation change.
* MUC: Change room name and description properlyKim Alvefur2010-11-171-2/+2
|
* MUC: Grant membership when inviteing someone into a members-only room.Kim Alvefur2010-11-111-0/+4
|
* MUC: Only send status code 110 (entering non-anonymous room) to the occupant ↵Waqas Hussain2010-11-101-9/+9
| | | | themselves, not to other occupants.
* MUC: Added some more missing :up()s to the stanza building for presence ↵Waqas Hussain2010-11-101-11/+11
| | | | broadcasts (thanks again Zash).
* MUC: Parse submitted form with util.dataformsKim Alvefur2010-11-101-26/+14
|
* MUC: Added a missing :up() to the stanza building for presence broadcast ↵Waqas Hussain2010-11-101-1/+1
| | | | (thanks Zash).
* MUC: Handle missing <value/> for <field type='boolean'/> in config form ↵Waqas Hussain2010-11-101-2/+6
| | | | submissions.
* Monster whitespace commit (beware the whitespace monster).Waqas Hussain2010-10-161-2/+2
|
* MUC: Use util.dataforms to generate formsKim Alvefur2010-10-121-42/+66
|
* MUC: fix timezone support when sending historyKim Alvefur2010-10-121-1/+1
|
* MUC: Make the room node be the default room name (thanks Zash).Waqas Hussain2010-09-281-2/+2
|
* Merge with trunk.Waqas Hussain2010-09-271-1/+45
|\
| * MUC: Added a 'Description' property (muc#roomconfig_roomdesc)Kim Alvefur2010-09-261-2/+28
| |
| * MUC: Added a 'Name' property (muc#roomconfig_roomname)Kim Alvefur2010-09-241-1/+19
| |
* | MUC: Fixed traceback on presence errors lacking a condition.Waqas Hussain2010-09-271-1/+1
|/
* MUC: Fixed: Unavilable presence was not being broadcasted for banned users ↵Waqas Hussain2010-08-031-1/+1
| | | | in some cases (thanks Zash).
* MUC: Return correct error to non-members attempting to enter a members-only ↵Waqas Hussain2010-08-031-0/+4
| | | | room.
* MUC: Store the nick (full room JID) which set the subject, and send subject ↵Waqas Hussain2010-07-201-1/+2
| | | | to occupants from that JID.
* MUC: Fixed a traceback introduced in hg:bdc325ce9fbc.Waqas Hussain2010-07-141-2/+2
|
* MUC: Make number of stored history messages configurable with option ↵Matthew Wild2010-07-061-4/+5
| | | | max_history_messages (thanks michal and others who requested)
* MUC: A little modification to improve code analysis.Waqas Hussain2010-06-191-1/+4
|
* MUC: Updated room:set_role() to use room:can_set_role().Waqas Hussain2010-06-191-3/+2
|
* MUC: Added room:can_set_role().Waqas Hussain2010-06-191-0/+17
|
* MUC: Added disco#info features to advertise room's anonymity status ↵Waqas Hussain2010-06-131-0/+1
| | | | (muc_semianonymous or muc_nonanonymous).
* MUC: Added disco#info features to advertise room's public status (muc_public ↵Waqas Hussain2010-06-131-0/+1
| | | | or muc_hidden).
* MUC: Updated code to use :set_hidden() and :is_hidden().Waqas Hussain2010-06-131-3/+3
|
* MUC: Added room:set_hidden(boolean) and room:is_hidden().Waqas Hussain2010-06-131-0/+10
|
* MUC: Added disco#info features to advertise room's persistence status ↵Waqas Hussain2010-06-131-0/+1
| | | | (muc_persistent or muc_temporary).
* MUC: Replaced direct access of room's internal persistence state with ↵Waqas Hussain2010-06-131-5/+4
| | | | :set_persistent(boolean) and :is_persistent() in various functions.
* MUC: Added room:set_persistent(boolean) and room:is_persistent().Waqas Hussain2010-06-131-0/+10
|
* MUC: Added disco#info features to advertise room's members-only status ↵Waqas Hussain2010-06-131-0/+1
| | | | (muc_membersonly or muc_open).
* MUC: Added a 'Make Room Members-Only?' field to the room config dialog.Waqas Hussain2010-06-131-0/+10
|
* MUC: Updated room:get_default_role() to not assign unaffiliated occupants a ↵Waqas Hussain2010-06-131-1/+3
| | | | role in members-only rooms.
* MUC: Added room:set_members_only(boolean) and room:is_members_only().Waqas Hussain2010-06-131-0/+10
|
* MUC: Added disco#info features to advertise room's moderation status ↵Waqas Hussain2010-06-131-0/+1
| | | | (muc_moderated or muc_unmoderated).
* MUC: Added a 'Make Room Moderated?' field to the room config dialog.Waqas Hussain2010-06-131-1/+11
|
* MUC: Updated room:get_default_role() to assign unaffiliated occupants a ↵Waqas Hussain2010-06-131-1/+3
| | | | "visitor" role in moderated rooms.
* MUC: Added room:set_moderated(boolean) and room:is_moderated().Waqas Hussain2010-06-131-0/+10
|
* MUC: Persist data in room:set_password() when called programmatically.Waqas Hussain2010-06-131-2/+4
|
* MUC: Added a password field to the room config dialog.Waqas Hussain2010-06-131-0/+8
|
* MUC: Include a <password/> element in invites from password protected rooms.Waqas Hussain2010-06-131-2/+5
|
* MUC: Added disco#info features to advertise room's password protection ↵Waqas Hussain2010-06-131-1/+3
| | | | (muc_passwordprotected or muc_unsecured, depending on whether a password is set).
* MUC: Added password checking on room join.Waqas Hussain2010-06-131-1/+9
|
* MUC: Added room:get_password() and room:set_password().Waqas Hussain2010-06-131-0/+9
|
* Merge 0.7->trunkMatthew Wild2010-03-221-2/+2
|\
| * Merge 0.6->0.7Matthew Wild2010-03-221-2/+2
| |\
| | * Update copyright headers for 2010Matthew Wild2010-03-221-2/+2
| | |
| | * MUC: Allow role changes based on JIDs.Waqas Hussain2010-02-181-0/+3
| | | | | | | | | | | | (transplanted from a4879b1e6cde5aedb6bd5827d710b6dba5e8a736)