| 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:cfgvalue(section) or self.default |
|---|
| 24 | local selected = false |
|---|
| 25 | |
|---|
| 26 | if value and #value == 0 then value = nil end |
|---|
| 27 | -%> |
|---|
| 28 | |
|---|
| 29 | <ul style="margin:0; list-style-type:none"> |
|---|
| 30 | <% |
|---|
| 31 | for _, zone in utl.spairs(zones, function(a,b) return (zones[a]:name() < zones[b]:name()) end) do |
|---|
| 32 | selected = selected or (value == zone:name()) |
|---|
| 33 | %> |
|---|
| 34 | <li style="padding:0.5em"> |
|---|
| 35 | <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)" type="radio"<%=attr("id", cbid .. "." .. zone:name()) .. attr("name", cbid) .. attr("value", zone:name()) .. ifattr(value == zone:name(), "checked", "checked")%> /> |
|---|
| 36 | <label<%=attr("for", cbid .. "." .. zone:name())%> style="background-color:<%=zone:get_color()%>; padding:0.5em"> |
|---|
| 37 | <strong><%=zone:name()%>:</strong> |
|---|
| 38 | <% |
|---|
| 39 | local empty = true |
|---|
| 40 | for _, net in ipairs(zone:get_networks()) do |
|---|
| 41 | net = nwm:get_network(net) |
|---|
| 42 | for _, iface in ipairs(net and net:get_interfaces() or {}) do |
|---|
| 43 | if not iface:is_bridgeport() then |
|---|
| 44 | empty = false |
|---|
| 45 | %> |
|---|
| 46 | <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" /> |
|---|
| 47 | <% if iface:name() == self.iface then %><strong><%=iface:shortname()%></strong><% else %><%=iface:shortname()%><% end %> |
|---|
| 48 | <% end end end %> |
|---|
| 49 | <% if empty then %><em><%:a_s_ipt_zone_empty (no interfaces attached)%></em><% end %> |
|---|
| 50 | </label> |
|---|
| 51 | </li> |
|---|
| 52 | <% end %> |
|---|
| 53 | |
|---|
| 54 | <% if not self.nocreate then %> |
|---|
| 55 | <li style="padding:0.5em"> |
|---|
| 56 | <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")%> /> |
|---|
| 57 | <div style="background-color:<%=fwm.zone.get_color()%>; padding:0.5em; display:inline"> |
|---|
| 58 | <label<%=attr("for", cbid .. "_new")%>><em><%:a_s_ipt_zone_unspec_create unspecified -or- create:%> </em></label> |
|---|
| 59 | <input style="width:6em" type="text"<%=attr("name", cbid .. ".newzone") .. ifattr(not selected, "value", self.default)%> onfocus="document.getElementById('<%=cbid%>_new').checked=true" /> |
|---|
| 60 | </div> |
|---|
| 61 | </li> |
|---|
| 62 | <% end %> |
|---|
| 63 | </ul> |
|---|
| 64 | |
|---|
| 65 | <%+cbi/valuefooter%> |
|---|