Changeset

2004:5033348feba8

mod_vcard: Cleaned up unused variables and global accesses.
author Waqas Hussain <waqas20@gmail.com>
date Sun, 18 Oct 2009 07:40:14 +0500
parents 2003:b7429073f73f
children 2005:478ba7e85862
files plugins/mod_vcard.lua
diffstat 1 files changed, 5 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_vcard.lua	Sun Oct 18 07:33:24 2009 +0500
+++ b/plugins/mod_vcard.lua	Sun Oct 18 07:40:14 2009 +0500
@@ -6,19 +6,13 @@
 -- COPYING file in the source package for more information.
 --
 
-local hosts = _G.hosts;
+local st = require "util.stanza"
+local jid_split = require "util.jid".split;
 local datamanager = require "util.datamanager"
 
-local st = require "util.stanza"
-local t_concat, t_insert = table.concat, table.insert;
+module:add_feature("vcard-temp");
 
-local jid = require "util.jid"
-local jid_split = jid.split;
-
-local xmlns_vcard = "vcard-temp";
-module:add_feature(xmlns_vcard);
-
-function handle_vcard(event)
+local function handle_vcard(event)
 	local session, stanza = event.origin, event.stanza;
 	local to = stanza.attr.to;
 	if stanza.attr.type == "get" then
@@ -57,7 +51,7 @@
 	module:hook("iq/full", function(data)
 		local stanza = data.stanza;
 		local payload = stanza.tags[1];
-		if stanza.attr.type == "get" or stanza.attr.type == "set" and payload.name == "vCard" and payload.attr.xmlns == xmlns_vcard then
+		if stanza.attr.type == "get" or stanza.attr.type == "set" and payload.name == "vCard" and payload.attr.xmlns == "vcard-temp" then
 			return handle_vcard(data);
 		end
 	end, 1);