plugins/muc/mod_muc.lua
Thu, 28 Apr 2016 22:57:02 +0200 Kim Alvefur MUC: Split out handling of the room-creating presence into its own method
Wed, 27 Apr 2016 12:05:51 +0200 Kim Alvefur MUC: Use correct room name variable, fixes traceback (thanks mathieui)
Tue, 26 Apr 2016 13:40:03 +0200 Kim Alvefur MUC: Correctly iterate over suspended rooms while excluding live rooms
Mon, 18 Apr 2016 20:32:48 +0200 Kim Alvefur MUC: Store rooms on disk on shutdown
Mon, 18 Apr 2016 19:19:33 +0200 Kim Alvefur MUC: Cache public rooms and their names to speed up disco#items
Mon, 18 Apr 2016 19:18:37 +0200 Kim Alvefur MUC: Switch to util.cache for storing rooms, store rooms to disk on eviction
Mon, 18 Apr 2016 19:26:26 +0200 Kim Alvefur MUC: Move room deserialization to muc.lib
Sun, 17 Apr 2016 22:28:48 +0200 Kim Alvefur Merge with Link Mauve
Sun, 17 Apr 2016 22:09:44 +0200 Kim Alvefur MUC: Move 'preserialization' step to muc.lib
Sat, 16 Apr 2016 21:08:05 +0100 Emmanuel Gil Peyrot Update every link to the documentation to use HTTPS
Tue, 12 Apr 2016 19:35:55 +0200 Kim Alvefur MUC: Move history to room._history
Fri, 11 Mar 2016 13:41:10 +0100 Kim Alvefur Merge 0.10->trunk
Fri, 11 Mar 2016 13:34:32 +0100 Kim Alvefur MUC: Use type-specific config API for the 'name' option
Mon, 07 Mar 2016 10:59:37 +0100 Kim Alvefur MUC: Don't reply to error stanzas with more error stanzas (thanks woffs)
Wed, 20 Jan 2016 14:46:06 +0100 Kim Alvefur MUC: Rename variables to please luacheck
Wed, 26 Aug 2015 20:21:12 +0200 Kim Alvefur MUC: Remove duplicated import of muc/persistent (4caef6d53304 and this fixes #482)
Mon, 27 Jul 2015 09:38:40 +0100 Matthew Wild Merge
Mon, 27 Jul 2015 18:34:51 +1000 daurnimator plugins/muc: Move loading of optional muc libraries from muc.lib.lua to mod_muc
Sat, 25 Jul 2015 15:49:00 +0100 Emmanuel Gil Peyrot mod_muc: Fix a traceback when an owner joins a room
Thu, 25 Jun 2015 18:57:43 +0200 Kim Alvefur Merge 0.10->trunk
Thu, 25 Jun 2015 18:54:01 +0200 Kim Alvefur Merge 0.9->0.10
Thu, 25 Jun 2015 17:58:24 +0200 Kim Alvefur MUC: Prevent admins from being given affiliatons other than owner
Thu, 25 Jun 2015 17:54:19 +0200 Kim Alvefur Backed out changeset bea3862b6bde in favor of a different approach
Tue, 16 Jun 2015 15:13:47 +0200 Kim Alvefur MUC: Remove half of monkeypatch that was supposed to make admins always be room owners, fixes #458
Fri, 17 Oct 2014 16:35:46 -0400 daurnimator plugins/muc/mod_muc: Add 'local_only' flag to mod_muc, so rooms don't get restored on shutdown
Sun, 31 Aug 2014 20:33:47 +0200 Kim Alvefur mod_muc: Fix 'destroy rooms' adhoc command (Thanks Florob)
Mon, 11 Aug 2014 11:36:30 +0200 Kim Alvefur mod_muc: Fix tracebacks (thanks nick1)
Thu, 07 Aug 2014 18:03:31 -0400 daurnimator plugins/muc/mod_muc: persistent rooms keyval store needs username as nil
Thu, 07 Aug 2014 12:35:12 -0400 daurnimator plugins/muc/mod_muc: Use map store for room persistence
Thu, 07 Aug 2014 12:34:51 -0400 daurnimator plugins/muc/mod_muc: Remove unused import
Tue, 05 Aug 2014 09:16:29 +0100 Matthew Wild mod_muc: Fix use of undefined global. Fixes #431.
Wed, 11 Jun 2014 17:54:23 -0400 daurnimator plugins/muc/mod_muc: fix wrong event for persistence
Mon, 19 May 2014 13:39:45 -0400 daurnimator plugins/muc/mod_muc: Get rid of room global; use module:shared to get it
Wed, 30 Apr 2014 12:43:47 -0400 daurnimator plugins/muc/mod_muc: Place adhoc section into own scope
Wed, 30 Apr 2014 12:43:04 -0400 daurnimator plugins/muc/mod_muc: Don't use rooms object directory in adhoc section
Wed, 30 Apr 2014 13:12:32 -0400 daurnimator plugins/muc/mod_muc.lua: Add "each_room" function to iterate over rooms (instead of accessing directly)
Tue, 29 Apr 2014 19:35:25 -0400 daurnimator plugins/muc/mod_muc: Remove attempt_room_creation and create_room function. Instead have a 'track_room' function called from the end of the pre-create hook, and just create an un-tracked room object when we get a presence
Tue, 29 Apr 2014 19:00:45 -0400 daurnimator plugins/muc/mod_muc: Move `restrict_room_creation` into own area. now uses pre-create hook
Tue, 29 Apr 2014 17:18:14 -0400 daurnimator plugins/muc/mod_muc: Use module:shared instead of save/restore
Tue, 29 Apr 2014 15:13:06 -0400 daurnimator plugins/muc: Move 'module:get_option_number("max_history_messages")' from mod_muc into history lib; remove from muclib exports
Tue, 29 Apr 2014 14:50:13 -0400 daurnimator plugins/muc/mod_muc: Remove support for `host_session.muc`
Tue, 29 Apr 2014 14:24:50 -0400 daurnimator plugins/muc/mod_muc: Move room persistence to own block
Tue, 29 Apr 2014 12:54:04 -0400 daurnimator plugins/muc: Add room:has_occupant() method
Mon, 28 Apr 2014 16:31:21 -0400 daurnimator plugins/muc/mod_muc: No need to treat the host room specially
Mon, 28 Apr 2014 16:33:54 -0400 daurnimator plugins/muc/mod_muc: Use get_option_string instead of get_option and checking
Mon, 28 Apr 2014 16:30:53 -0400 daurnimator plugins/muc/mod_muc: Move affiliation monkey patch into own scope
Tue, 15 Apr 2014 17:06:04 -0400 daurnimator plugins/muc: Move persistent room configuration to own module
Wed, 02 Apr 2014 15:48:25 -0400 daurnimator plugins/muc: Move locking to seperate module
Wed, 02 Apr 2014 15:36:08 -0400 daurnimator plugins/muc/mod_muc: Move room locking into hook
Thu, 27 Mar 2014 19:16:13 -0400 daurnimator plugins/muc: Massive refactor
Thu, 27 Mar 2014 18:09:42 -0400 daurnimator plugins/muc: Rename admin query hook
Thu, 20 Mar 2014 11:06:10 -0400 daurnimator plugins/muc: Have utility methods for locking the room
Wed, 19 Mar 2014 12:03:15 -0400 daurnimator plugins/muc: Provide a reasonable default `route_stanza`
Tue, 18 Mar 2014 18:56:26 -0400 daurnimator plugins/muc/mod_muc: host sessions have a .send these days
Tue, 18 Mar 2014 18:55:52 -0400 daurnimator plugins/muc/mod_muc: Refactor to use new methods available
Tue, 18 Feb 2014 17:21:47 -0500 daurnimator plugins/muc/mod_muc: Move Xep-0307 MUC unique to seperate file
Tue, 21 Jan 2014 03:24:40 +0000 Matthew Wild Merge 0.9->0.10
Sat, 18 Jan 2014 20:14:05 +0100 Kim Alvefur MUC: Fire muc-room-destroyed event when the last participant leaves a non-persistent room
Sat, 18 Jan 2014 18:28:50 +0100 Kim Alvefur MUC: Expose room metatable on module
Mon, 16 Dec 2013 02:04:16 +0000 Matthew Wild Merge 0.9->0.10
less more (0) -100 -60 tip