* Fixed apply function
authorSteven Barth <steven@midlink.org>
Tue, 6 May 2008 16:31:16 +0000 (16:31 +0000)
committerSteven Barth <steven@midlink.org>
Tue, 6 May 2008 16:31:16 +0000 (16:31 +0000)
* Fixed a few typos

core/src/ffluci/sgi/haserl.lua
core/src/ffluci/sgi/webuci.lua
module/admin-core/src/controller/admin/uci.lua

index 041cffc..76dc385 100644 (file)
@@ -31,7 +31,7 @@ FORM = FORM or {}
 -- HTTP interface
 
 -- Returns a table of all COOKIE, GET and POST Parameters
-function ffluci.http.formvalues(prefix)
+function ffluci.http.formvalues()
        return FORM
 end
 
index 05348e4..2977802 100644 (file)
@@ -28,7 +28,7 @@ module("ffluci.sgi.webuci", package.seeall)
 -- HTTP interface
 
 -- Returns a table of all COOKIE, GET and POST Parameters
-function ffluci.http.formvalues(prefix)
+function ffluci.http.formvalues()
        return webuci.vars
 end
 
index 5c34e56..cb4a95b 100644 (file)
@@ -8,25 +8,29 @@ function action_apply()
        local output  = ""
        
        if changes then
-               local apply = {}
+               local com = {}
+               local run = {}
                
                -- Collect files to be applied and commit changes
                for i, line in ipairs(ffluci.util.split(changes)) do
                        local r = line:match("^-?([^.]+)")
-                       if r and not ffluci.util.contains(apply, ffluci.config.uci_oncommit[r]) then
-                               table.insert(apply, ffluci.config.uci_oncommit[r])
-                               ffluci.model.uci.commit(r)
+                       if r then
+                               com[r] = true
+                               
+                               if ffluci.config.uci_oncommit and ffluci.config.uci_oncommit[r] then
+                                       run[ffluci.config.uci_oncommit[r]] = true
+                               end
                        end
                end
                
+               -- Apply
+               for config, i in pairs(com) do
+                       ffluci.model.uci.commit(config)
+               end 
                
                -- Search for post-commit commands
-               if ffluci.config.uci_oncommit then
-                       for i, cmd in ipairs(apply) do
-                               if cmd then
-                                       output = output .. cmd .. ":" .. ffluci.sys.exec(cmd) .. "\n"
-                               end
-                       end
+               for cmd, i in pairs(run) do
+                       output = output .. cmd .. ":" .. ffluci.sys.exec(cmd) .. "\n"
                end
        end