aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* prosodyctl: Allow commands to be implemented in modulesMatthew Wild2009-06-231-0/+37
|
* modulemanager: Expose api table to allow others to extend the module APIMatthew Wild2009-06-231-1/+2
|
* mod_groups: Support for public groups, and extra loggingMatthew Wild2009-06-221-7/+21
|
* util.pluginloader: Remove unnecessary return value suppressing the real load ↵Matthew Wild2009-06-221-1/+1
| | | | error
* modulemanager: Fix copy/paste error, should be name instead of module_nameMatthew Wild2009-06-221-1/+1
|
* mod_announce: New module to send a message to all online usersMatthew Wild2009-06-221-0/+37
|
* mod_httpserver: Allow configuration of ports and base path, like mod_boshMatthew Wild2009-06-221-1/+12
|
* mod_groups: Experimental shared roster supportMatthew Wild2009-06-221-0/+79
|
* prosody: Switch anonymous_login check to use the new datamanager callback syntaxMatthew Wild2009-06-221-2/+5
|
* util.datamanager: Allow multiple data storage callbacks, and allow them to ↵Matthew Wild2009-06-221-4/+33
| | | | modify parameters
* rostermanager: Fire event on roster loadMatthew Wild2009-06-221-2/+7
|
* sessionmanager: Fire event on resource bindMatthew Wild2009-06-221-0/+2
|
* modulemanager: Call 'load' method when loading a moduleMatthew Wild2009-06-221-0/+7
|
* Merge with TobiasMatthew Wild2009-06-202-7/+8
|\
| * Adjust PLAIN and DIGEST-MD5 mechanisms to new password_handler API.Tobias Markmann2009-06-201-3/+3
| |
| * Adding a parameter for realm to the password_callback.Tobias Markmann2009-06-201-4/+4
| |
| * Adding COMPAT comment.Tobias Markmann2009-06-201-0/+1
| |
* | util.array: Add support for + operator to create a new array from two arrays ↵Matthew Wild2009-06-201-0/+5
| | | | | | | | joined
* | util.array: Make array:reverse() and array:shuffle() return the array to ↵Matthew Wild2009-06-201-0/+2
| | | | | | | | allow chaining
* | util.array: Add array:append() method, to append a new array to an existing oneMatthew Wild2009-06-201-0/+8
| |
* | stanza_router: Skip prepping 'to' in many common cases - #optimizationWaqas Hussain2009-06-201-9/+13
| |
* | stanza_router: Skip prepping 'from' on c2s origins - #optimizationWaqas Hussain2009-06-201-1/+1
| |
* | stanza_router: Fixed a corner case where processing could continue after an ↵Waqas Hussain2009-06-201-0/+1
| | | | | | | | error reply
* | stanza_router: A little refactoringWaqas Hussain2009-06-201-8/+8
| |
* | componentmanager: Using prosody.events instead of core.eventmanagerWaqas Hussain2009-06-201-4/+3
| |
* | Main: Don't use empty event data objects for some global events. Some ↵Waqas Hussain2009-06-201-6/+6
| | | | | | | | handlers don't expect it.
* | Main: removed some eventmanager references (replaced by prosody.events)Waqas Hussain2009-06-201-5/+1
| |
* | Fire global events using prosody.eventsWaqas Hussain2009-06-201-0/+8
|/
* Merge with trunkWaqas Hussain2009-06-202-1/+4
|\
| * Merge with waqas via albert!Matthew Wild2009-06-191-2/+2
| |\
| * | s2smanager: Remove srv_hosts from session when connected, this fixes ↵Matthew Wild2009-06-191-0/+2
| | | | | | | | | | | | attempting to reconnect s2s sessions when they are closed during shutdown
| * | loggingmanager: Log timestamps when using default file loggingMatthew Wild2009-06-191-1/+1
| | |
| * | loggingmanager: Enable debug level for default file logging when 'debug' ↵Matthew Wild2009-06-191-1/+2
| | | | | | | | | | | | mode is enabled in the config
* | | modulemanager: Removed unused function get_module_filename(name)Waqas Hussain2009-06-141-6/+0
| | |
* | | modulemanager: Changed to use util.pluginloaderWaqas Hussain2009-06-141-2/+3
| | |
* | | util.pluginloader: Initial commit - a plugin resource loaderWaqas Hussain2009-06-141-0/+33
| | |
* | | stanza_router: Remove unused variablesWaqas Hussain2009-06-141-6/+0
| | |
* | | Removed core.presencemanager. This has been superseded by mod_presence.Waqas Hussain2009-06-141-233/+0
| | |
* | | stanza_router: Remove all traces of presencemanagerWaqas Hussain2009-06-141-6/+2
| | |
* | | mod_roster: Removed references to presencemanager and core_route_stanzaWaqas Hussain2009-06-141-2/+0
| | |
* | | mod_roster: Using core_post_stanza in place of ↵Waqas Hussain2009-06-141-4/+3
| | | | | | | | | | | | core.presencemanager.handle_presence
* | | util.muc: Relaxed top-level routing checks to allow node-less rooms, and ↵Waqas Hussain2009-06-141-7/+3
| | | | | | | | | | | | removed redundant checks
* | | util.muc, mod_muc: Commented rewriting of vCard requests' recipients' JID ↵Waqas Hussain2009-06-142-2/+2
| | | | | | | | | | | | from full to bare, and marked it as a TODO
* | | mod_muc: Don't reply with an error in response to unacceptable result stanzasWaqas Hussain2009-06-141-1/+1
| | |
* | | util.muc: Don't reply with an error in response to unacceptable result stanzasWaqas Hussain2009-06-141-1/+1
| | |
* | | util.muc: Fixed error occuring on room leaveWaqas Hussain2009-06-141-1/+1
| | |
* | | stanza_router: Use stanza.attr.from's host instead of origin.host when ↵Waqas Hussain2009-06-141-2/+2
| |/ |/| | | | | routing stanzas to remote hosts (fixes problem with sending from node@host components)
* | modulemanager: Change the ideitity attribute typ to typeWaqas Hussain2009-06-131-2/+2
|/
* mod_console: Redirect print() to console session when executing commands in ↵Matthew Wild2009-06-121-1/+7
| | | | global environment
* mod_console: Fix syntax errorMatthew Wild2009-06-121-1/+1
|