Made SGIs even more standards compliant (respect EOF command from LuCI)
[project/luci.git] / libs / sgi-webuci / luasrc / sgi / webuci.lua
index b9033f3702b798e9a17f8f6f3d7c0f61aa874060..e20dc5de02f5b2ad302c06f94abe77d725b2d584 100644 (file)
@@ -5,7 +5,7 @@ Description:
 Server Gateway Interface for Webuci
 
 FileId:
-$Id: webuci.lua 2027 2008-05-07 21:16:35Z Cyrus $
+$Id$
 
 License:
 Copyright 2008 Steven Barth <steven@midlink.org>
@@ -24,7 +24,7 @@ limitations under the License.
 
 ]]--
 module("luci.sgi.webuci", package.seeall)
-require("ltn12")
+local ltn12 = require("luci.ltn12")
 require("luci.http")
 require("luci.util")
 require("luci.dispatcher")
@@ -41,6 +41,7 @@ function run(env, vars)
        local x = coroutine.create(luci.dispatcher.httpdispatch)
        local status = ""
        local headers = {}
+       local active = true
        
        while coroutine.status(x) ~= "dead" do
                local res, id, data1, data2 = coroutine.resume(x, r)
@@ -52,19 +53,22 @@ function run(env, vars)
                        break;
                end
                
-               if id == 1 then
-                       status = env.SERVER_PROTOCOL .. " " .. tostring(data1) .. " " .. data2 .. "\r\n"
-               elseif id == 2 then
-                       headers[data1] = data2
-               elseif id == 3 then
-                       io.write(status)
-                       for k, v in pairs(headers) do
-                               io.write(k .. ": " .. v .. "\r\n")
+               if active then
+                       if id == 1 then
+                               status = env.SERVER_PROTOCOL .. " " .. tostring(data1) .. " " .. data2 .. "\r\n"
+                       elseif id == 2 then
+                               headers[data1] = data2
+                       elseif id == 3 then
+                               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)
+                       elseif id == 5 then
+                               active = false
                        end
-                       io.write("\r\n")
-               elseif id == 4 then
-                       io.write(data1)
                end
-               
        end
 end