CBI: Free dependencies
authorSteven Barth <steven@midlink.org>
Mon, 23 Nov 2009 13:09:52 +0000 (13:09 +0000)
committerSteven Barth <steven@midlink.org>
Mon, 23 Nov 2009 13:09:52 +0000 (13:09 +0000)
libs/cbi/htdocs/luci-static/resources/cbi.js
libs/cbi/luasrc/view/cbi/full_valuefooter.htm

index 7ba81189eeb869a834b4ea71eb997f5550c06059..08ee593356eb3570cf02cc94a62753ff1b581cb5 100644 (file)
@@ -65,9 +65,9 @@ function cbi_d_check(deps) {
                var istat = true;
                reverse = false;
                for (var j in deps[i]) {
-                       if (j.slice(-8) == "!reverse") {
+                       if (j == "!reverse") {
                                reverse = true;
-                       } else if (j.slice(-8) == "!default") {
+                       } else if (j == "!default") {
                                def = true;
                                istat = false;
                        } else {
index 9130a99f96f38a7b699a4a267bd2bae3b08c6e4d..e1174e250d96cb275d922ccd215eba00e63abddf 100644 (file)
@@ -34,8 +34,16 @@ $Id$
                        cbi_d_add("cbi-<%=self.config.."-"..section.."-"..self.option..d.add%>", {
                <%-
                        for k,v in pairs(d.deps) do
+                               local depk
+                               if k:find("!", 1, true) then
+                                       depk = string.format('"%s"', k)
+                               elseif k:find(".", 1, true) then
+                                       depk = string.format('"cbid.%s"', k)
+                               else
+                                       depk = string.format('"cbid.%s.%s.%s"', self.config, section, k)
+                               end
                -%>
-                       <%-=string.format('"cbid.%s.%s.%s"', self.config, section, k) .. ":" .. string.format("%q", v)-%>
+                       <%-= depk .. ":" .. string.format("%q", v)-%>
                        <%-if next(d.deps, k) then-%>,<%-end-%>
                <%-
                        end