libs: merge libs/cbi into libs/web
[project/luci.git] / libs / web / luasrc / view / cbi / firewall_zonelist.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 fwm = require "luci.model.firewall"
19 local nwm = require "luci.model.network"
20
21 local zone, net, iface
22 local zones = fwm:get_zones()
23 local value = self:formvalue(section)
24 if not value or value == "-" then value = self:cfgvalue(section) or self.default end
25
26 local selected = false
27 local checked = { }
28
29 if value and #value == 0 then
30 value = nil
31 elseif type(value) == "table" then
32 for _, value in ipairs(value) do
33 checked[value] = true
34 end
35 elseif value then
36 checked[value] = true
37 end
38 -%>
39
40 <ul style="margin:0; list-style-type:none; text-align:left">
41 <%
42 for _, zone in utl.spairs(zones, function(a,b) return (zones[a]:name() < zones[b]:name()) end) do
43 if zone:name() ~= self.exclude then
44 selected = selected or (value == zone:name())
45 %>
46 <li style="padding:0.5em">
47 <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 .. "." .. zone:name()) .. attr("name", cbid) .. attr("value", zone:name()) .. ifattr(checked[zone:name()], "checked", "checked")%> /> &nbsp;
48 <label<%=attr("for", cbid .. "." .. zone:name())%> style="background-color:<%=zone:get_color()%>; padding:0.5em">
49 <strong><%=zone:name()%>:</strong>
50 <%
51 local zempty = true
52 for _, net in ipairs(zone:get_networks()) do
53 net = nwm:get_network(net)
54 if net then
55 zempty = false
56 %>
57 &nbsp;
58 <%- if net:name() == self.network then -%>
59 <span style="background-color:#FFFFFF; border:1px solid #000000; padding:2px; font-weight:bold"><%=net:name()%>:
60 <%- else -%>
61 <span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>:
62 <%- end -%>
63 <%
64 local nempty = true
65 for _, iface in ipairs(net and net:get_interfaces() or {}) do
66 nempty = false
67 %>
68 <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" />
69 <% end %>
70 <% if nempty then %><em><%:(no interfaces attached)%></em><% end %>
71 </span>
72 <% end end %>
73 <% if zempty then %><em><%:(no interfaces attached)%></em><% end %>
74 </label>
75 </li>
76 <% end end %>
77
78 <% if self.widget ~= "checkbox" and not self.nocreate then %>
79 <li style="padding:0.5em">
80 <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)" type="radio"<%=attr("id", cbid .. "_new") .. attr("name", cbid) .. attr("value", "-") .. ifattr(not selected, "checked", "checked")%> /> &nbsp;
81 <div style="background-color:<%=fwm.zone.get_color()%>; padding:0.5em; display:inline">
82 <label<%=attr("for", cbid .. "_new")%>><em><%:unspecified -or- create:%>&nbsp;</em></label>
83 <input style="width:6em" type="text"<%=attr("name", cbid .. ".newzone") .. ifattr(not selected, "value", luci.http.formvalue(cbid .. ".newzone") or self.default)%> onfocus="document.getElementById('<%=cbid%>_new').checked=true" />
84 </div>
85 </li>
86 <% end %>
87 </ul>
88
89 <%+cbi/valuefooter%>