diff -r ececc4162d58 -r a1cf1d623695 net/http.lua --- a/net/http.lua Wed Apr 22 20:31:45 2009 +0100 +++ b/net/http.lua Mon May 04 19:53:31 2009 +0100 @@ -15,7 +15,6 @@ local log = require "util.logger".init("http"); local print = function () end -local urlcodes = setmetatable({}, { __index = function (t, k) t[k] = char(tonumber("0x"..k)); return t[k]; end }); local urlencode = function (s) return s and (s:gsub("%W", function (c) return string.format("%%%02x", c:byte()); end)); end module "http"