* lib/sgi-cgi, lib/sgi-webuci: Enforce HTTP standards
authorSteven Barth <steven@midlink.org>
Sat, 28 Jun 2008 22:17:24 +0000 (22:17 +0000)
committerSteven Barth <steven@midlink.org>
Sat, 28 Jun 2008 22:17:24 +0000 (22:17 +0000)
libs/sgi-cgi/luasrc/sgi/cgi.lua
libs/sgi-webuci/luasrc/sgi/webuci.lua

index 5555e4a..7f54e70 100644 (file)
@@ -49,11 +49,11 @@ function run()
                end
 
                if id == 1 then
                end
 
                if id == 1 then
-                       io.write("Status: " .. tostring(data1) .. " " .. data2 .. "\n")
+                       io.write("Status: " .. tostring(data1) .. " " .. data2 .. "\r\n")
                elseif id == 2 then
                elseif id == 2 then
-                       io.write(data1 .. ": " .. data2 .. "\n")
+                       io.write(data1 .. ": " .. data2 .. "\r\n")
                elseif id == 3 then
                elseif id == 3 then
-                       io.write("\n")
+                       io.write("\r\n")
                elseif id == 4 then
                        io.write(data1)
                end
                elseif id == 4 then
                        io.write(data1)
                end
index cf8cbcc..b9033f3 100644 (file)
@@ -39,6 +39,8 @@ function run(env, vars)
        r.message.params = vars
        
        local x = coroutine.create(luci.dispatcher.httpdispatch)
        r.message.params = vars
        
        local x = coroutine.create(luci.dispatcher.httpdispatch)
+       local status = ""
+       local headers = {}
        
        while coroutine.status(x) ~= "dead" do
                local res, id, data1, data2 = coroutine.resume(x, r)
        
        while coroutine.status(x) ~= "dead" do
                local res, id, data1, data2 = coroutine.resume(x, r)
@@ -51,11 +53,15 @@ function run(env, vars)
                end
                
                if id == 1 then
                end
                
                if id == 1 then
-                       io.write(env.SERVER_PROTOCOL .. " " .. tostring(data1) .. " " .. data2 .. "\n")
+                       status = env.SERVER_PROTOCOL .. " " .. tostring(data1) .. " " .. data2 .. "\r\n"
                elseif id == 2 then
                elseif id == 2 then
-                       io.write(data1 .. ": " .. data2 .. "\n")
+                       headers[data1] = data2
                elseif id == 3 then
                elseif id == 3 then
-                       io.write("\n")
+                       io.write(status)
+                       for k, v in pairs(headers) do
+                               io.write(k .. ": " .. v .. "\r\n")
+                       end
+                       io.write("\r\n")
                elseif id == 4 then
                        io.write(data1)
                end
                elseif id == 4 then
                        io.write(data1)
                end