libs/web: align interface related widgets to changed network model api

This commit is contained in:
Jo-Philipp Wich 2011-09-24 03:49:17 +00:00
parent 575b32de81
commit bf49f78599
5 changed files with 6 additions and 6 deletions

View 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" />

View 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" />

View file

@ -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

View 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
%>

View 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
%>