libs/web: add support for exclude property to ifacelist and netlist widgets
[project/luci.git] / libs / web / luasrc / view / cbi / network_ifacelist.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2009 Jo-Philipp Wich <xm@subsignal.org>
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 $Id$
12
13 -%>
14 <%+cbi/valueheader%>
15
16 <%-
17 local utl = require "luci.util"
18 local net = require "luci.model.network".init()
19
20 local iface
21 local ifaces = net:get_interfaces()
22 local value = (self:formvalue(section) or self.default)
23 local checked = { }
24
25 if value then
26 for value in utl.imatch(value) do
27 checked[value] = true
28 end
29 else
30 local n = self.network and net:get_network(self.network)
31 if n then
32 local i
33 for _, i in ipairs(n:get_interfaces()) do
34 checked[i:name()] = true
35 end
36 end
37 end
38 -%>
39
40 <ul style="margin:0; list-style-type:none">
41 <% for _, iface in ipairs(ifaces) do
42 local link = iface:adminlink()
43 if (not self.nobridges or not iface:is_bridge()) and iface:name() ~= self.exclude then %>
44 <li>
45 <input class="cbi-input-<%=self.widget or "radio"%>" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=
46 attr("type", self.widget or "radio") ..
47 attr("id", cbid .. "." .. iface:name()) ..
48 attr("name", cbid) .. attr("value", iface:name()) ..
49 ifattr(checked[iface:name()], "checked", "checked")
50 %> /> &nbsp;
51 <label<%=attr("for", cbid .. "." .. iface:name())%>>
52 <% if link then -%><a href="<%=link%>"><% end -%>
53 <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" />
54 <% if link then -%></a><% end -%>
55 <%=iface:get_i18n()%><% local n = iface:get_network(); if n then %> (<a href="<%=n:adminlink()%>"><%=n:name()%></a>)<% end %>
56 </label>
57 </li>
58 <% end end %>
59 <% if not self.nocreate then %>
60 <li>
61 <input class="cbi-input-<%=self.widget or "radio"%>" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=
62 attr("type", self.widget or "radio") ..
63 attr("id", cbid .. "_custom") ..
64 attr("name", cbid)
65 %> /> &nbsp;
66 <label<%=attr("for", cbid .. "_custom")%>>
67 <img title="<%:Custom Interface%>" style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/ethernet_disabled.png" />
68 <%:Custom Interface%>:
69 </label>
70 <input type="text" style="width:50px" onfocus="document.getElementById('<%=cbid%>_custom').checked=true" onblur="var x=document.getElementById('<%=cbid%>_custom'); x.value=this.value; x.checked=true" />
71 </li>
72 <% end %>
73 </ul>
74
75 <%+cbi/valuefooter%>