mod_uptime: Convert to unix line endings

This commit is contained in:
Matthew Wild 2009-07-08 04:22:15 +01:00
parent 2cbe18d731
commit aa77dac9da

View file

@ -7,27 +7,27 @@
-- --
local st = require "util.stanza" local st = require "util.stanza"
local jid_split = require "util.jid".split; local jid_split = require "util.jid".split;
local t_concat = table.concat; local t_concat = table.concat;
local start_time = os.time(); local start_time = os.time();
module:add_feature("jabber:iq:last"); module:add_feature("jabber:iq:last");
module:add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last", module:add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last",
function (origin, stanza) function (origin, stanza)
if stanza.tags[1].name == "query" then if stanza.tags[1].name == "query" then
if stanza.attr.type == "get" then if stanza.attr.type == "get" then
local node, host, resource = jid_split(stanza.attr.to); local node, host, resource = jid_split(stanza.attr.to);
if node or resource then if node or resource then
-- TODO -- TODO
else else
origin.send(st.reply(stanza):tag("query", {xmlns = "jabber:iq:last", seconds = tostring(os.difftime(os.time(), start_time))})); origin.send(st.reply(stanza):tag("query", {xmlns = "jabber:iq:last", seconds = tostring(os.difftime(os.time(), start_time))}));
return true; return true;
end end
end end
end end
end); end);