aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* mod_iq: Change sub-event names for IQ errors and results to use stanza IDsWaqas Hussain2009-06-261-2/+2
|
* util.stanza: Add stanza:get_text() to retrieve all child text nodes #apiMatthew Wild2009-06-261-0/+6
|
* stanza_router: Fire events also for stanzas to componentsMatthew Wild2009-06-261-2/+2
|
* mod_message, mod_presence: Maintain list of top resources. Less work in ↵Waqas Hussain2009-06-262-23/+34
| | | | routing messages to bare JIDs. - #optimization
* util.events: Replaced ipairs with slightly faster numeric for loop - ↵Waqas Hussain2009-06-261-4/+4
| | | | #optimization
* util.stanza: Rewrote stanza_mt.__tostring. 20-30% faster stanza ↵Waqas Hussain2009-06-251-32/+18
| | | | serialization. - #optimization
* util.stanza: Remove numeric attributes while deserializingWaqas Hussain2009-06-251-0/+2
|
* xmlhandlers: Remove numeric attributesWaqas Hussain2009-06-251-2/+3
|
* stanza_router: Remove unused variables and codeWaqas Hussain2009-06-251-16/+1
|
* stanza_router: A little refactoringWaqas Hussain2009-06-251-2/+1
|
* stanza_router: Remove unused variablesWaqas Hussain2009-06-251-6/+2
|
* stanza_router: Remove even more old routing codeWaqas Hussain2009-06-251-12/+0
|
* stanza_router: Remove some more old routing codeWaqas Hussain2009-06-251-16/+5
|
* stanza_router: Call core_post_stanza from core_route_stanza in place of old ↵Waqas Hussain2009-06-251-0/+1
| | | | routing code
* stanza_router: Removed unused function: select_best_resourcesWaqas Hussain2009-06-251-19/+0
|
* stanza_router: Removed old routing codeWaqas Hussain2009-06-251-82/+1
|
* mod_component: Rewrite jabber:client stanzas to jabber:component:accept, ↵Matthew Wild2009-06-251-1/+6
| | | | thanks JaredH!
* mod_pep: Use new style eventsWaqas Hussain2009-06-241-2/+2
|
* mod_iq: Fire sub-events for IQ results and errorsWaqas Hussain2009-06-241-2/+4
|
* mod_pep: Broadcast from the user's bare JID, not full JIDWaqas Hussain2009-06-241-2/+2
|
* mod_pep: Remove data when a user disables a nodeWaqas Hussain2009-06-241-2/+9
|
* mod_pep: Added some commentsWaqas Hussain2009-06-241-3/+3
|
* mod_pep: Fixed detection of contact presence changesWaqas Hussain2009-06-241-2/+2
|
* mod_muc: Now based on util.mucWaqas Hussain2009-06-241-396/+36
|
* mod_announce: Work with non-local adminsWaqas Hussain2009-06-231-2/+2
|
* mod_announce: Use usermanager.is_admin to verify admin statusWaqas Hussain2009-06-231-1/+2
|
* sessionmanager: Fire event on resource unbindWaqas Hussain2009-06-231-0/+2
|
* Automated merge with http://waqas.ath.cx:8000/Matthew Wild2009-06-2311-13/+238
|\
| * README: Update for new MUC addressMatthew Wild2009-06-231-1/+1
| |
| * 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
| |
* | modulemanager: Enabled access to the module API from plugin librariesWaqas Hussain2009-06-231-0/+1
| |
* | modulemanager: Added simple module:require implementationWaqas Hussain2009-06-211-1/+10
|/
* 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