libs/web: use imatch() in model related widgets, support multivalues in netlist widget
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 30 Oct 2010 17:57:49 +0000 (17:57 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 30 Oct 2010 17:57:49 +0000 (17:57 +0000)
libs/web/luasrc/view/cbi/firewall_zonelist.htm
libs/web/luasrc/view/cbi/network_ifacelist.htm
libs/web/luasrc/view/cbi/network_netlist.htm

index 4f4106b87a5182bee0131c2d7c813faeb8d29d84..891c70e77a976194c6cd1b8e9229c461a55700e8 100644 (file)
@@ -15,8 +15,8 @@ $Id$
 
 <%-
        local utl = require "luci.util"
 
 <%-
        local utl = require "luci.util"
-       local fwm = require "luci.model.firewall"
-       local nwm = require "luci.model.network"
+       local fwm = require "luci.model.firewall".init()
+       local nwm = require "luci.model.network".init()
 
        local zone, net, iface
        local zones = fwm:get_zones()
 
        local zone, net, iface
        local zones = fwm:get_zones()
@@ -33,7 +33,7 @@ $Id$
                        checked[value] = true
                end
        elseif value then
                        checked[value] = true
                end
        elseif value then
-               checked[value] = true           
+               checked[value] = true
        end
 -%>
 
        end
 -%>
 
index 53a50e962faceb63c908e9061bed4f9958435fca..a69bd3284e12641a4f46d0725b173043ab857f63 100644 (file)
@@ -14,16 +14,16 @@ $Id$
 <%+cbi/valueheader%>
 
 <%-
 <%+cbi/valueheader%>
 
 <%-
-       local net = require "luci.model.network"
+       local utl = require "luci.util"
+       local net = require "luci.model.network".init()
 
        local iface
        local ifaces = net:get_interfaces()
 
        local iface
        local ifaces = net:get_interfaces()
-       local value = (self:formvalue(section) or self.default or "")
+       local value = (self:formvalue(section) or self.default)
        local checked = { }
 
        local checked = { }
 
-       if value and #value > 0 then
-               if type(value) == "table" then value = table.concat(value, " ") end
-               for value in value:gmatch("%S+") do
+       if value then
+               for value in utl.imatch(value) do
                        checked[value] = true
                end
        else
                        checked[value] = true
                end
        else
@@ -42,7 +42,12 @@ $Id$
             local link = iface:adminlink()
          if not self.nobridges or not iface:is_bridge() then %>
        <li>
             local link = iface:adminlink()
          if not self.nobridges or not iface:is_bridge() then %>
        <li>
-               <input class="cbi-input-<%=self.widget or "radio"%>" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "." .. iface:name()) .. attr("name", cbid) .. attr("value", iface:name()) .. ifattr(checked[iface:name()], "checked", "checked")%> /> &nbsp;
+               <input class="cbi-input-<%=self.widget or "radio"%>" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=
+                       attr("type", self.widget or "radio") ..
+                       attr("id", cbid .. "." .. iface:name()) ..
+                       attr("name", cbid) .. attr("value", iface:name()) ..
+                       ifattr(checked[iface:name()], "checked", "checked")
+               %> /> &nbsp;
                <label<%=attr("for", cbid .. "." .. iface:name())%>>
                        <% if link then -%><a href="<%=link%>"><% end -%>
                        <img title="<%=iface:get_type_i18n()%>" style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
                <label<%=attr("for", cbid .. "." .. iface:name())%>>
                        <% if link then -%><a href="<%=link%>"><% end -%>
                        <img title="<%=iface:get_type_i18n()%>" style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
index f5a6ce4436409556cd12f0a5e34cba9d7480fe08..2d464cc878d720e2f343f0db65f479573735d22d 100644 (file)
@@ -14,7 +14,8 @@ $Id$
 <%+cbi/valueheader%>
 
 <%-
 <%+cbi/valueheader%>
 
 <%-
-       local nwm = require "luci.model.network"
+       local utl = require "luci.util"
+       local nwm = require "luci.model.network".init()
 
        local net, iface
        local networks = nwm:get_networks()
 
        local net, iface
        local networks = nwm:get_networks()
@@ -23,13 +24,23 @@ $Id$
        if not value or value == "-" then
                value = self:cfgvalue(section) or self.default
        end
        if not value or value == "-" then
                value = self:cfgvalue(section) or self.default
        end
+
+       local checked = { }
+       for value in utl.imatch(value) do
+               checked[value] = true
+       end
 -%>
 
 <ul style="margin:0; list-style-type:none; text-align:left">
        <% for _, net in ipairs(networks) do
               if net:name() ~= "loopback" then %>
        <li style="padding:0.25em 0">
 -%>
 
 <ul style="margin:0; list-style-type:none; text-align:left">
        <% for _, net in ipairs(networks) do
               if net:name() ~= "loopback" then %>
        <li style="padding:0.25em 0">
-               <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "." .. net:name()) .. attr("name", cbid) .. attr("value", net:name()) .. ifattr(value == net:name(), "checked", "checked")%> /> &nbsp;
+               <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=
+                       attr("type", self.widget or "radio") ..
+                       attr("id", cbid .. "." .. net:name()) ..
+                       attr("name", cbid) .. attr("value", net:name()) ..
+                       ifattr(checked[net:name()], "checked", "checked")
+               %> /> &nbsp;
                <label<%=attr("for", cbid .. "." .. net:name())%>>
                        &nbsp;<span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>:
                                <%
                <label<%=attr("for", cbid .. "." .. net:name())%>>
                        &nbsp;<span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>:
                                <%