net/httpserver.lua
changeset 4003 b840c4c77b92
parent 3757 e8be634e217a
child 4005 420e57319f89
--- a/net/httpserver.lua	Wed Jan 05 06:16:27 2011 +0500
+++ b/net/httpserver.lua	Wed Jan 05 06:23:17 2011 +0500
@@ -119,6 +119,7 @@
 		local function success_cb(r)
 			for k,v in pairs(r) do request[k] = v; end
 			request.url = url_parse(request.path);
+			request.url.path = request.url.path and request.url.path:gsub("%%(%x%x)", function(x) return x.char(tonumber(x, 16)) end);
 			request.body = { request.body };
 			call_callback(request);
 		end