diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-10 14:51:59 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-10 14:51:59 +0000 |
commit | 17f2921341f3503677f407d88885a1cb41ad6380 (patch) | |
tree | a14ebca80c9bbe24b571e5559d4600c4537910d4 /libs | |
parent | 988de587ee5e159f4991f8ab855c75b9cfcee847 (diff) |
libs/cbi: add network picker widget
Diffstat (limited to 'libs')
-rw-r--r-- | libs/cbi/luasrc/view/cbi/network_netlist.htm | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/libs/cbi/luasrc/view/cbi/network_netlist.htm b/libs/cbi/luasrc/view/cbi/network_netlist.htm new file mode 100644 index 000000000..efff02432 --- /dev/null +++ b/libs/cbi/luasrc/view/cbi/network_netlist.htm @@ -0,0 +1,58 @@ +<%# +LuCI - Lua Configuration Interface +Copyright 2009 Jo-Philipp Wich <xm@subsignal.org> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ + +-%> +<%+cbi/valueheader%> + +<%- + local utl = require "luci.util" + local nwm = require "luci.model.network" + + local net, iface + local networks = nwm:get_networks() + local value = self:cfgvalue(section) or self.default + + if value and #value == 0 then value = nil end +-%> + +<ul style="margin:0; list-style-type:none"> + <% for _, net in utl.spairs(networks, function(a,b) return (networks[a]:name() < networks[b]:name()) end) do + if net:name() ~= "loopback" then %> + <li style="padding:0.25em 0"> + <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)" type="radio"<%=attr("id", cbid .. "." .. net:name()) .. attr("name", cbid) .. attr("value", net:name()) .. ifattr(value == net:name(), "checked", "checked")%> /> + <label<%=attr("for", cbid .. "." .. net:name())%>> + <strong><%=net:name()%>:</strong> + <% + local empty = true + for _, iface in ipairs(net:get_interfaces()) do if not iface:is_bridgeport() then + empty = false + %> + <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" /> + <% if iface:name() == self.iface then %><strong><%=iface:name()%></strong><% else %><%=iface:name()%><% end %> + <% end end %> + <% if empty then %><em><%:a_s_ipt_zone_empty (no interfaces attached)%></em><% end %> + </label> + </li> + <% end end %> + + <% if not self.nocreate then %> + <li style="padding:0.25em 0"> + <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 value, "checked", "checked")%> /> + <div style="padding:0.5em; display:inline"> + <label<%=attr("for", cbid .. "_new")%>><em><%:a_s_ipt_zone_unspec_create unspecified -or- create:%> </em></label> + <input style="width:6em" type="text"<%=attr("name", cbid .. ".newiface")%> onfocus="document.getElementById('<%=cbid%>_new').checked=true" /> + </div> + </li> + <% end %> +</ul> + +<%+cbi/valuefooter%> |