(no commit message)
authorSteven Barth <steven@midlink.org>
Wed, 7 May 2008 21:16:35 +0000 (21:16 +0000)
committerSteven Barth <steven@midlink.org>
Wed, 7 May 2008 21:16:35 +0000 (21:16 +0000)
core/src/ffluci/http.lua
core/src/ffluci/sgi/haserl.lua
core/src/ffluci/sgi/webuci.lua

index eab12e8f837c292213500c2b18d7cc242cc25071..f4ba5709468179aafd9d7f4445c6459bff2c03b5 100644 (file)
@@ -33,14 +33,4 @@ if ENV and ENV.HASERLVER then
        require("ffluci.sgi.haserl")
 elseif webuci then
        require("ffluci.sgi.webuci")
-end
-
--- Asks the browser to redirect to "url"
-function redirect(url, qs)
-       if qs then
-               url = url .. "?" .. qs
-       end
-       
-       ffluci.http.status(302, "Found")
-       print("Location: " .. url .. "\n")
 end
\ No newline at end of file
index 6fefd7baf831ac193ee3cfdde7fff73a6bd6ce77..7e9854d7d38505868a93b92bfa675488a520eb13 100644 (file)
@@ -63,6 +63,13 @@ function ffluci.http.prepare_content(type)
        print("Content-Type: "..type.."\n")
 end
 
+-- Asks the browser to redirect to "url"
+function ffluci.http.redirect(url)
+       ffluci.http.status(302, "Found")
+       ffluci.http.header("Location", url)
+       print()
+end
+
 -- Sets HTTP-Status-Header
 function ffluci.http.status(code, message)
        print("Status: " .. tostring(code) .. " " .. message)
index 87bb69302c915d03d2e9d6cbd1fc7c222fe0eb86..5e17ab7935607a092593e613f67669cd58166a16 100644 (file)
@@ -69,6 +69,13 @@ function ffluci.http.prepare_content(type)
        print("Content-Type: "..type.."\n")
 end
 
+-- Asks the browser to redirect to "url"
+function ffluci.http.redirect(url)
+       ffluci.http.status(302, "Found")
+       ffluci.http.header("Location", url)
+       print()
+end
+
 -- Sets HTTP-Status-Header
 function ffluci.http.status(code, message)
        print(webuci.env.SERVER_PROTOCOL .. " " .. tostring(code) .. " " .. message)