libs/web: align interface related widgets to changed network model api
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 24 Sep 2011 03:49:17 +0000 (03:49 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 24 Sep 2011 03:49:17 +0000 (03:49 +0000)
libs/web/luasrc/view/cbi/firewall_zoneforwards.htm
libs/web/luasrc/view/cbi/firewall_zonelist.htm
libs/web/luasrc/view/cbi/network_ifacelist.htm
libs/web/luasrc/view/cbi/network_netinfo.htm
libs/web/luasrc/view/cbi/network_netlist.htm

index debfddc..8e0a6a1 100644 (file)
@@ -35,7 +35,7 @@
                        <%- end -%>
                        <%
                                local nempty = true
-                               for _, iface in ipairs(net and net:get_interfaces() or {}) do
+                               for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
                                        nempty = false
                         %>
                                <img<%=attr("title", iface:get_i18n())%> style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
index ee38cad..a22b790 100644 (file)
@@ -57,7 +57,7 @@
                                <%- end -%>
                                <%
                                        local nempty = true
-                                       for _, iface in ipairs(net and net:get_interfaces() or {}) do
+                                       for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
                                                nempty = false
                                 %>
                                        <img<%=attr("title", iface:get_i18n())%> style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
index beca159..76ea74a 100644 (file)
@@ -8,7 +8,7 @@
        local iface
        local ifaces = net:get_interfaces()
        local value
-       
+
        if self.map:formvalue(cbeid) == "1" then
                value = self:formvalue(section) or self.default or ""
        else
@@ -25,7 +25,7 @@
                local n = self.network and net:get_network(self.network)
                if n then
                        local i
-                       for _, i in ipairs(n:get_interfaces()) do
+                       for _, i in ipairs(n:is_bridge() and n:get_interfaces() or { n:get_interface() }) do
                                checked[i:name()] = true
                        end
                end
index 19e98c0..89389f8 100644 (file)
@@ -15,7 +15,7 @@
        <span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>:
                <%
                        local empty = true
-                       for _, iface in ipairs(net:get_interfaces()) do
+                       for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
                                if not iface:is_bridge() then
                                        empty = false
                 %>
index 4119ed3..1723932 100644 (file)
@@ -32,7 +32,7 @@
                        &#160;<span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>:
                                <%
                                        local empty = true
-                                       for _, iface in ipairs(net:get_interfaces()) do
+                                       for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
                                                if not iface:is_bridge() then
                                                        empty = false
                                 %>