Change modules to use the new add_feature module API method.
[prosody.git] / plugins / mod_uptime.lua
index 043f65142c0f6a687e3324221c9003bb654b5c1b..51457551c9455c29277f9342f42f30fa6cebe88c 100644 (file)
@@ -1,3 +1,23 @@
+-- Prosody IM v0.1
+-- Copyright (C) 2008 Matthew Wild
+-- Copyright (C) 2008 Waqas Hussain
+-- 
+-- This program is free software; you can redistribute it and/or
+-- modify it under the terms of the GNU General Public License
+-- as published by the Free Software Foundation; either version 2
+-- of the License, or (at your option) any later version.
+-- 
+-- This program is distributed in the hope that it will be useful,
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+-- GNU General Public License for more details.
+-- 
+-- You should have received a copy of the GNU General Public License
+-- along with this program; if not, write to the Free Software
+-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+--
+
+
 \r
 local st = require "util.stanza"\r
 \r
@@ -6,7 +26,9 @@ local t_concat = table.concat;
 \r
 local start_time = os.time();\r
 \r
-add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last", \r
+module:add_feature("jabber:iq:last");\r
+\r
+module:add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last", \r
        function (origin, stanza)\r
                if stanza.tags[1].name == "query" then\r
                        if stanza.attr.type == "get" then\r
@@ -20,5 +42,3 @@ add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last",
                        end\r
                end\r
        end);\r
-\r
-\r