# HG changeset patch # User Waqas Hussain # Date 1255833614 -18000 # Node ID 5033348feba87a07125d73128be55f6e5dd5d67c # Parent b7429073f73fbaebde36187725a362fcb2d9f8fd mod_vcard: Cleaned up unused variables and global accesses. diff -r b7429073f73f -r 5033348feba8 plugins/mod_vcard.lua --- 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);