aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xep227toprosody.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-12-07 19:22:08 +0000
committerMatthew Wild <mwild1@gmail.com>2010-12-07 19:22:08 +0000
commitad0d5080ec446699043f7f0f19c5d46d48c29a0d (patch)
tree95af49a9099838a1f9005f2ca70567eb8f979a18 /tools/xep227toprosody.lua
parentb7f373b15969fe2e496e741fe73d4ac188bd7282 (diff)
downloadprosody-ad0d5080ec446699043f7f0f19c5d46d48c29a0d.tar.gz
prosody-ad0d5080ec446699043f7f0f19c5d46d48c29a0d.zip
tools/xep227toprosody.lua: Rename ns_xep227 to xmlns_xep227 for consistency with main Prosody code
Diffstat (limited to 'tools/xep227toprosody.lua')
-rwxr-xr-xtools/xep227toprosody.lua13
1 files changed, 7 insertions, 6 deletions
diff --git a/tools/xep227toprosody.lua b/tools/xep227toprosody.lua
index a8f807d6..23e5948b 100755
--- a/tools/xep227toprosody.lua
+++ b/tools/xep227toprosody.lua
@@ -41,10 +41,11 @@ local new_xmpp_handlers = xmppstream.new_sax_handlers;
local dm = require "util.datamanager"
dm.set_data_path("data");
-local ns_xep227 = "http://www.xmpp.org/extensions/xep-0227.html#ns";
local ns_separator = xmppstream.ns_separator;
local ns_pattern = xmppstream.ns_pattern;
+local xmlns_xep227 = "http://www.xmpp.org/extensions/xep-0227.html#ns";
+
-----------------------------------------------------------------------
function store_vcard(username, host, stanza)
@@ -147,7 +148,7 @@ local user_name = "";
local cb = {
stream_tag = "user",
- stream_ns = ns_xep227,
+ stream_ns = xmlns_xep227,
};
function cb.streamopened(session, attr)
session.notopen = false;
@@ -196,10 +197,10 @@ function lxp_handlers.StartElement(parser, elementname, attributes)
if curr_host ~= "" then
-- forward to xmlhandlers
user_handlers:StartElement(elementname, attributes);
- elseif (curr_ns == ns_xep227) and (name == "host") then
+ elseif (curr_ns == xmlns_xep227) and (name == "host") then
curr_host = attributes["jid"]; -- start of host element
print("Begin parsing host "..curr_host);
- elseif (curr_ns ~= ns_xep227) or (name ~= "server-data") then
+ elseif (curr_ns ~= xmlns_xep227) or (name ~= "server-data") then
io.stderr:write("Unhandled XML element: ", name, "\n");
os.exit(1);
end
@@ -214,14 +215,14 @@ function lxp_handlers.EndElement(parser, elementname)
--count = count - 1;
--io.write("- ", string.rep(" ", count), name, " (", curr_ns, ")", "\n")
if curr_host ~= "" then
- if (curr_ns == ns_xep227) and (name == "host") then
+ if (curr_ns == xmlns_xep227) and (name == "host") then
print("End parsing host "..curr_host);
curr_host = "" -- end of host element
else
-- forward to xmlhandlers
user_handlers:EndElement(elementname);
end
- elseif (curr_ns ~= ns_xep227) or (name ~= "server-data") then
+ elseif (curr_ns ~= xmlns_xep227) or (name ~= "server-data") then
io.stderr:write("Unhandled XML element: ", name, "\n");
os.exit(1);
end