Mercurial > prosody-modules
view mod_reload_modules/mod_reload_modules.lua @ 692:2de21fa40382
mod_websocket: Make sending a self-closing <stream:stream> tag configurable
Due to limitations in browser's XML parsers most (all?) existing client
implementations require the <stream:stream/> tag to be self-closing.
This commit makes this behaviour configurable, to enable "proper" implementations.
author | Florian Zeitz <florob@babelmonkeys.de> |
---|---|
date | Mon, 28 May 2012 00:52:47 +0200 |
parents | aad0b2df9e6b |
children | 412f62d05a23 |
line wrap: on
line source
local mm = require "core.modulemanager"; local function reload_module(name) local ok, err = mm.reload(module.host, name); if ok then module:log("debug", "Reloaded %s", name); else module:log("error", "Failed to reload %s: %s", name, err); end end function reload_all() local modules = module:get_option_array("reload_modules"); if not modules then module:log("warn", "No modules listed in the config to reload - set reload_modules to a list"); return; end for _, module in ipairs(modules) do reload_module(module); end end if module.hook_global then module:hook_global("config-reloaded", reload_all); else -- COMPAT w/pre-0.9 function module.load() prosody.events.add_handler("config-reloaded", reload_all); end function module.unload() prosody.events.remove_handler("config-reloaded", reload_all); end end