Optimized error handling
authorSteven Barth <steven@midlink.org>
Fri, 5 Sep 2008 09:37:02 +0000 (09:37 +0000)
committerSteven Barth <steven@midlink.org>
Fri, 5 Sep 2008 09:37:02 +0000 (09:37 +0000)
libs/web/luasrc/dispatcher.lua

index e3dc637..7692dd2 100644 (file)
@@ -464,18 +464,10 @@ function cbi(model)
                require("luci.cbi")
                require("luci.template")
 
                require("luci.cbi")
                require("luci.template")
 
-               local stat, maps = luci.util.copcall(luci.cbi.load, model, ...)
-               if not stat then
-                       error500(maps)
-                       return true
-               end
+               maps = luci.cbi.load(model, ...)
 
                for i, res in ipairs(maps) do
 
                for i, res in ipairs(maps) do
-                       local stat, err = luci.util.copcall(res.parse, res)
-                       if not stat then
-                               error500(err)
-                               return true
-                       end
+                       res:parse()
                end
 
                luci.template.render("cbi/header")
                end
 
                luci.template.render("cbi/header")
@@ -493,18 +485,10 @@ function form(model)
                require("luci.cbi")
                require("luci.template")
 
                require("luci.cbi")
                require("luci.template")
 
-               local stat, maps = luci.util.copcall(luci.cbi.load, model, ...)
-               if not stat then
-                       error500(maps)
-                       return true
-               end
+               maps = luci.cbi.load(model, ...)
 
                for i, res in ipairs(maps) do
 
                for i, res in ipairs(maps) do
-                       local stat, err = luci.util.copcall(res.parse, res)
-                       if not stat then
-                               error500(err)
-                               return true
-                       end
+                       res:parse()
                end
 
                luci.template.render("header")
                end
 
                luci.template.render("header")