Merge 0.9->0.10

This commit is contained in:
Kim Alvefur 2015-09-25 18:11:24 +02:00
commit 3d29bb52de

View file

@ -202,7 +202,7 @@ function lxp_handlers.StartElement(parser, elementname, attributes)
--count = count + 1; --count = count + 1;
if curr_host ~= "" then if curr_host ~= "" then
-- forward to xmlhandlers -- forward to xmlhandlers
user_handlers:StartElement(elementname, attributes); user_handlers.StartElement(parser, elementname, attributes);
elseif (curr_ns == xmlns_xep227) and (name == "host") then elseif (curr_ns == xmlns_xep227) and (name == "host") then
curr_host = attributes["jid"]; -- start of host element curr_host = attributes["jid"]; -- start of host element
print("Begin parsing host "..curr_host); print("Begin parsing host "..curr_host);
@ -226,7 +226,7 @@ function lxp_handlers.EndElement(parser, elementname)
curr_host = "" -- end of host element curr_host = "" -- end of host element
else else
-- forward to xmlhandlers -- forward to xmlhandlers
user_handlers:EndElement(elementname); user_handlers.EndElement(parser, elementname);
end end
elseif (curr_ns ~= xmlns_xep227) or (name ~= "server-data") then elseif (curr_ns ~= xmlns_xep227) or (name ~= "server-data") then
io.stderr:write("Unhandled XML element: ", name, "\n"); io.stderr:write("Unhandled XML element: ", name, "\n");
@ -237,7 +237,7 @@ end
function lxp_handlers.CharacterData(parser, string) function lxp_handlers.CharacterData(parser, string)
if curr_host ~= "" then if curr_host ~= "" then
-- forward to xmlhandlers -- forward to xmlhandlers
user_handlers:CharacterData(string); user_handlers.CharacterData(parser, string);
end end
end end