xmlhandlers: Fix tag pattern again for the default namespace

Thu, 23 Apr 2009 21:03:24 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 23 Apr 2009 21:03:24 +0100
changeset 1051
0327c569eb1a
parent 1049
c476bceaf2db
child 1052
a3429542631d

xmlhandlers: Fix tag pattern again for the default namespace

core/xmlhandlers.lua file | annotate | diff | comparison | revisions
--- a/core/xmlhandlers.lua	Thu Apr 23 03:27:22 2009 +0100
+++ b/core/xmlhandlers.lua	Thu Apr 23 21:03:24 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

mercurial