Log

description author age
util.xmppstream: Fix logger name. Waqas Hussain 2010-12-02
mod_disco: Don't add caps hash to stream features on unauthenticated connections. Waqas Hussain 2010-12-02
mod_proxy65: Add service discovery identity and feature, to help out mod_disco when loaded on a normal host. Waqas Hussain 2010-12-02
mod_proxy65: Cleaned up stanza processing a little. Waqas Hussain 2010-12-02
mod_proxy65: s:len() -> #s. Waqas Hussain 2010-12-02
mod_proxy65: Make some globals local. Waqas Hussain 2010-12-02
mod_proxy65: :sub(n):byte() -> :byte(n). Waqas Hussain 2010-12-02
mod_proxy65: Allow loading on normal hosts. Waqas Hussain 2010-12-02
mod_proxy65: Updated to use sub-events. Now only hooks what it needs to. Waqas Hussain 2010-12-02
net.server_select: Set select() timeout to 3600 by default. Waqas Hussain 2010-12-02
net.server_select: Made another global local. Waqas Hussain 2010-12-02
net.server_select: Made some globals local. Waqas Hussain 2010-12-02
mod_bosh: Use util.timer for timers instead of server.addtimer. Waqas Hussain 2010-12-02
util.timer: Activate higher timer precision. Waqas Hussain 2010-12-02
net.server_select: Make changes required for sub-second timer precision. Waqas Hussain 2010-12-02
fallbacks/lxp.lua: CRLF -> LF. Waqas Hussain 2010-12-02
fallbacks/lxp.lua: Pure Lua pseudo-XML parser. Implements the same API as LuaExpat. Waqas Hussain 2010-12-02
mod_iq: Fix an extra character in previous commit... Waqas Hussain 2010-12-02
mod_iq: Don't hook 'iq/full' on components. Waqas Hussain 2010-12-02
modulemanager: Allow components to inherit mod_iq. This allows modules loaded on components to hook IQ stanza sub-events ("iq-set/bare/xmlns:tag", etc). Waqas Hussain 2010-12-02
mod_proxy65: Give the 'iq/host' stanza handler a negative priority, to allow mod_iq to process the events first. Waqas Hussain 2010-12-02
MUC: Give stanza handlers a negative priority, to allow mod_iq to process them first. Waqas Hussain 2010-12-02
mod_component: Give stanza handlers a negative priority, to allow mod_iq to process them first. Waqas Hussain 2010-12-02
mod_iq: Don't stop event dispatch for unhandled IQ errors and results (this lets negative priority handlers intercept the events). Waqas Hussain 2010-12-02
mod_pubsub, util.pubsub: Support node creation Florian Zeitz 2010-12-01
mod_console: Fix to import cert_verify_identity (util.certverification) Matthew Wild 2010-11-28
certmanager: Add required verify flags for cert verification if LuaSec (probably) supports them Matthew Wild 2010-11-28
mod_console: Add s2s:showcert() command to show the certificate for a domain Matthew Wild 2010-11-28
mod_pep: Remove PEP subscriptions on getting a presence unsubscribe. Waqas Hussain 2010-11-28
mod_pep: Fixed regression where PEP messages were not correctly being broadcasted on caps hash change. Waqas Hussain 2010-11-28
mod_pep: Fixed a nil access (thanks Zash). Waqas Hussain 2010-11-28
mod_disco: Fixed: Service discovery features were not being removed on module unload (issue #205). Waqas Hussain 2010-11-28
mod_pep: Optimised PEP requests for disco info on caps change (issue #150). Waqas Hussain 2010-11-28
s2smanager: Check for getpeercertificate availability (for old LuaSecs) Matthew Wild 2010-11-27
storagemanager: Only show fallback warning if storage was configured to use another backend and it failed Matthew Wild 2010-11-27
storagemanager: Return driver from load_driver() if successful Matthew Wild 2010-11-27
Merge with trunk Matthew Wild 2010-11-27
storagemanager: Import type() Matthew Wild 2010-11-27
mod_iq: Optimized a bit more (fewer table accesses). Waqas Hussain 2010-11-27
mod_iq: Optimized a bit (fewer table accesses). Waqas Hussain 2010-11-27
mod_iq: Extra IQ get and set sub-events are now fired: "iq-{get,set}/{host,self,bare}/xmlns:tag" (when "iq/{host,self,bare}/xmlns:tag" is unhandled). Waqas Hussain 2010-11-27
storagemanager: Import util.multitable again Matthew Wild 2010-11-27
storagemanager: Fix syntax error Matthew Wild 2010-11-27
Merge darkrain->trunk Matthew Wild 2010-11-27
mod_console: Denote services whose identity matches their (valid/trusted) certificate as 'secure' Paul Aurich 2010-11-22
s2s: SASL EXTERNAL Paul Aurich 2010-11-22
s2smanager: Compatibility hack for when not using dialback Paul Aurich 2010-11-22
net.server_event: API parity with net.server_socket Paul Aurich 2010-11-22
mod_pep: Updated disco#info result handler to use new event name format. Waqas Hussain 2010-11-27
mod_iq: IQ error and result sub-events are now "iq-{error,result}/{host,self,bare}/id" (previously "iq/{host,self,bare}/id"). Waqas Hussain 2010-11-27
Rename storage/mod_ejabberd to mod_storage_sql_ejabberd. Also rename configuration option. Untested. Matthew Wild 2010-11-27
storage/mod_storage: Remove, obsolete Matthew Wild 2010-11-27
storagemanager: Much refactoring and renaming of options. Untested, needs storage plugin(s) to be brought into line. Matthew Wild 2010-11-27
util.datetime: Fix so that the timestamp returned is always in UTC, timezone offsets were going in the wrong direction Matthew Wild 2010-11-27
util.datetime: Fixes for more liberal timezone parsing - colon and minutes are both (independantly) optional (thanks Zash) Matthew Wild 2010-11-27
mod_pubsub, util.pubsub: Support for fetching items Florian Zeitz 2010-11-25
util.template: Don't add stanza.last_add. 20% faster. Waqas Hussain 2010-11-26
tests/test_util_stanza.lua: Allow stanza.last_add to be nil. Waqas Hussain 2010-11-26
util.stanza, util.xmppstream, core.xmlhandlers: Allow stanza.last_add to be nil, and set it nil by default. Saves a table allocation per-element. 20% faster stanza building. Waqas Hussain 2010-11-26
util.template: Rewritten to be much faster than the util.stanza stanza building API. Waqas Hussain 2010-11-25
.hgignore: Ignore *.diff. Waqas Hussain 2010-11-20
.hgignore: Ignore Windows compilation artifacts. Waqas Hussain 2010-11-20
net.xmpp{client,server,component}_listener: s/xml-not-well-formed/not-well-formed/ as per latest bis drafts. Waqas Hussain 2010-11-19
util.xmppstream: Preserve the stream content namespace on descendents of elements which are in another namespace. Waqas Hussain 2010-11-19
MUC: Include the user's current presence contents when broadcasting a role change. Waqas Hussain 2010-11-18
MUC: Include the user's current presence contents when broadcasting an affiliation change. Waqas Hussain 2010-11-18
prosodyctl: Give hosts type = 'local' Matthew Wild 2010-11-18
MUC: Change room name and description properly Kim Alvefur 2010-11-17
MUC: Fixed: Variable referencing the host session wasn't initialized. Waqas Hussain 2010-11-16
prosodyctl, util.prosodyctl: Show error when mod_posix is not enabled and an attempt is made to query Prosody's status (thanks stever) Matthew Wild 2010-11-16
util.pubsub: Add :get_subscription() to return the current subscription for a JID, if any Matthew Wild 2010-11-13
util.filters: Support for 'filter hooks' that get called when a session is initialized for filters Matthew Wild 2010-11-13
Merge backout Matthew Wild 2010-11-13
Backed out changeset bfc47564aaef (No need for _M with module.environment) Matthew Wild 2010-11-13
mod_pubsub: Use module.environment to reference the module's environment Matthew Wild 2010-11-13
mod_pubsub: Expose 'service' Matthew Wild 2010-11-13
modulemanager: Inside plugins, have global _M as a reference to the module's environment Matthew Wild 2010-11-13
mod_pubsub: It's aliiiive! Matthew Wild 2010-11-13
mod_component: Logging tweaks. Waqas Hussain 2010-11-12
mod_component: Use module:get_option() instead of configmanager. Waqas Hussain 2010-11-12
mod_component: Rearranged the code a little. Waqas Hussain 2010-11-12
mod_component: Return true from stanza handler to indicate that we actually did handle the stanza. Waqas Hussain 2010-11-12
mod_console: Don't allow bang bang as the first command in a session, or when the last command is unknown (fixes #218) Matthew Wild 2010-11-12
configmanager: Change parser API again to pass a config table to insert settings to. Fixes Include(). (Thanks Zash/answerman) Matthew Wild 2010-11-11
usermanager: Don't load auth modules for components. Waqas Hussain 2010-11-11
MUC: Grant membership when inviteing someone into a members-only room. Kim Alvefur 2010-11-10
configmanager: Update Include and RunScript directives to support paths relative to the (current!) config file Matthew Wild 2010-11-10
prosody, configmanager, certmanager: Relocate prosody.resolve_relative_path() to configmanager, and update certmanager (the only user of this function) Matthew Wild 2010-11-10
modulemanager, usermanager: Removed hooks for the 'component-activated' event (components now fire 'host-activated'). Waqas Hussain 2010-11-10
mod_proxy65: Use module:get_option() instead of configmanager. Waqas Hussain 2010-11-10
componentmanager: Removed. Waqas Hussain 2010-11-10
prosody: Added a stub implementation of core.componentmanager to the package.loaded table. Waqas Hussain 2010-11-10
prosody: Removed all references to componentmanager from Prosody, except the main componentmanager file. Waqas Hussain 2010-11-10
componentmanager: Removed most of the code. Stub implementations of register_component and deregister_component remain. Waqas Hussain 2010-11-10
componentmanager: Removed get_children(host). Waqas Hussain 2010-11-10
hostmanager: Don't include hosts with '@' or '/' in the name in the get_children(host) result. Waqas Hussain 2010-11-10