Software /
code /
prosody-modules
File
mod_adhoc/adhoc/adhoc.lib.lua @ 115:5e657a305c88
mod_muc_log_http: Replace remaining <font> tags with CSS equivalents
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 04 Jan 2010 14:20:48 +0000 |
parent | 43:adc9eff8adb2 |
child | 121:a9898f13c89e |
line wrap: on
line source
local st = require "util.stanza"; local xmlns_cmd = "http://jabber.org/protocol/commands"; local _M = {}; function _cmdtag(desc, status, sessionid, action) local cmd = st.stanza("command", { xmlns = xmlns_cmd, node = desc.node, status = status }); if sessionid then cmd.attr.sessionid = sessionid; end if action then cmd.attr.action = action; end return cmd; end function _M.new(name, node, handler, permission) return { name = name, node = node, handler = handler, cmdtag = _cmdtag, permission = (permission or "user") }; end return _M;