* Fixed webuci bootstrapper
authorSteven Barth <steven@midlink.org>
Wed, 7 May 2008 21:08:16 +0000 (21:08 +0000)
committerSteven Barth <steven@midlink.org>
Wed, 7 May 2008 21:08:16 +0000 (21:08 +0000)
* Added ffluci.http.header function

core/contrib/webuci_bootstrap.lua
core/src/ffluci/sgi/haserl.lua
core/src/ffluci/sgi/webuci.lua

index 9a2fafb0ef068b44e5990e4f4825ff2184aa49e9..50ac8184b7e3129dff77423dd95c7004e9bf9819 100644 (file)
@@ -15,7 +15,7 @@ function init_req(context)
        env.PATH_INFO       = "/" .. context.uri
        env.REMOTE_PORT     = context.remote_port
        env.SERVER_ADDR     = context.server_addr
-       env.SCRIPT_NAME     = REQUEST_URI:sub(1, #REQUEST_URI - #PATH_INFO)
+       env.SCRIPT_NAME     = env.REQUEST_URI:sub(1, #env.REQUEST_URI - #env.PATH_INFO)
 end
 
 function handle_req(context)
index 0db558d99025adde2bba0e93074672c39909515e..6fefd7baf831ac193ee3cfdde7fff73a6bd6ce77 100644 (file)
@@ -53,6 +53,10 @@ function ffluci.http.formvaluetable(prefix)
        return ffluci.http.formvalue(prefix, {})
 end
 
+-- Sends a custom HTTP-Header
+function ffluci.http.header(key, value)
+       print(key .. ": " .. value)
+end
 
 -- Set Content-Type
 function ffluci.http.prepare_content(type)
index 75fffa55379f141395c28df0b150f5a54dad01f6..87bb69302c915d03d2e9d6cbd1fc7c222fe0eb86 100644 (file)
@@ -55,6 +55,10 @@ function ffluci.http.formvaluetable(prefix)
        return vals
 end
 
+-- Sends a custom HTTP-Header
+function ffluci.http.header(key, value)
+       print(key .. ": " .. value)
+end
 
 -- Set Content-Type
 function ffluci.http.prepare_content(type)