# HG changeset patch # User Matthew Wild # Date 1240517211 -3600 # Node ID 63b7a81d45eb9ad4d3b3ba36c188288f14ee525c # Parent 2677f5a4e66ba42374a142219c7984e98e0ad2ba# Parent 084d265b37cfc3bd49b643e8a4cda1c0420e67be Automated merge with http://waqas.ath.cx:8000/ diff -r 2677f5a4e66b -r 63b7a81d45eb core/xmlhandlers.lua --- a/core/xmlhandlers.lua Fri Apr 24 00:38:40 2009 +0500 +++ b/core/xmlhandlers.lua Thu Apr 23 21:06:51 2009 +0100 @@ -57,7 +57,11 @@ stanza:text(t_concat(chardata)); chardata = {}; end - local curr_ns,name = tagname:match("^(.+)|([^%|]+)$"); + local curr_ns,name = tagname:match("^(.-)|?([^%|]-)$"); + if not name then + curr_ns, name = "", curr_ns; + end + if curr_ns ~= stream_default_ns then attr.xmlns = curr_ns; end @@ -109,7 +113,10 @@ end end function xml_handlers:EndElement(tagname) - curr_ns,name = tagname:match("^(.+)|([^%|]+)$"); + curr_ns,name = tagname:match("^(.-)|?([^%|]-)$"); + if not name then + curr_ns, name = "", curr_ns; + end if (not stanza) or (#stanza.last_add > 0 and name ~= stanza.last_add[#stanza.last_add].name) then if tagname == stream_tag then if cb_streamclosed then diff -r 2677f5a4e66b -r 63b7a81d45eb net/httpserver.lua --- a/net/httpserver.lua Fri Apr 24 00:38:40 2009 +0500 +++ b/net/httpserver.lua Thu Apr 23 21:06:51 2009 +0100 @@ -30,7 +30,7 @@ -- Write status line local resp; if response.body then - log("debug", "Sending response to %s: %s", request.id, response.body); + log("debug", "Sending response to %s", request.id); resp = { "HTTP/1.0 ", response.status or "200 OK", "\r\n"}; local h = response.headers; if h then @@ -99,7 +99,7 @@ if response == true and not request.destroyed then -- Keep connection open, we will reply later log("warn", "Request %s left open, on_destroy is %s", request.id, tostring(request.on_destroy)); - else + elseif response ~= true then -- Assume response send_response(request, response); destroy_request(request);