Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.

This commit is contained in:
Matthew Wild 2008-11-27 03:12:12 +00:00
parent d70ee791d5
commit a153b3c267
17 changed files with 144 additions and 97 deletions

View file

@ -7,7 +7,7 @@ local legacy = require "util.datetime".legacy;
require "core.discomanager".set("time", "urn:xmpp:time");
add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time",
module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time",
function(session, stanza)
if stanza.attr.type == "get" then
session.send(st.reply(stanza):tag("time", {xmlns="urn:xmpp:time"})
@ -20,7 +20,7 @@ add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time",
require "core.discomanager".set("time", "jabber:iq:time");
add_iq_handler({"c2s", "s2sin"}, "jabber:iq:time",
module:add_iq_handler({"c2s", "s2sin"}, "jabber:iq:time",
function(session, stanza)
if stanza.attr.type == "get" then
session.send(st.reply(stanza):tag("query", {xmlns="jabber:iq:time"})