aboutsummaryrefslogtreecommitdiffstats
path: root/net/httpserver.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-05-04 19:53:31 +0100
committerMatthew Wild <mwild1@gmail.com>2009-05-04 19:53:31 +0100
commitef5e994b1f4303d7940194fc980f5b5e94654c76 (patch)
tree0ddd431bab32864392efcfe7e10f8b8927fe263a /net/httpserver.lua
parentb46533a889c624354136fb78211aa233f0aa460c (diff)
downloadprosody-ef5e994b1f4303d7940194fc980f5b5e94654c76.tar.gz
prosody-ef5e994b1f4303d7940194fc980f5b5e94654c76.zip
net.http, net.httpserver: Remove urlcodes table... it really isn't needed (thanks Jan Harkes)
Diffstat (limited to 'net/httpserver.lua')
-rw-r--r--net/httpserver.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/httpserver.lua b/net/httpserver.lua
index 0ecf84ea..12328b29 100644
--- a/net/httpserver.lua
+++ b/net/httpserver.lua
@@ -8,10 +8,9 @@ local connlisteners_get = require "net.connlisteners".get;
local listener;
local t_insert, t_concat = table.insert, table.concat;
-local s_match, s_gmatch, s_char = string.match, string.gmatch;
+local s_match, s_gmatch = string.match, string.gmatch;
local tonumber, tostring, pairs = tonumber, tostring, pairs;
-local urlcodes = setmetatable({}, { __index = function (t, k) t[k] = s_char(tonumber("0x"..k)); return t[k]; end });
local urlencode = function (s) return s and (s:gsub("%W", function (c) return string.format("%%%x", c:byte()); end)); end
local log = require "util.logger".init("httpserver");