modules/admin-full: generalize field descriptions in system status page
[project/luci.git] / modules / admin-full / luasrc / view / admin_status / iptables.htm
index 2b8f12c..957604e 100644 (file)
@@ -1,7 +1,7 @@
 <%#
 LuCI - Lua Configuration Interface
 Copyright 2008-2009 Steven Barth <steven@midlink.org>
-Copyright 2008-2009 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+Copyright 2008-2011 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.
@@ -17,8 +17,17 @@ $Id$
 
        require "luci.sys.iptparser"
        require "luci.tools.webadmin"
+       require "luci.fs"
 
-       local ipt = luci.sys.iptparser.IptParser()
+       local has_ip6tables = luci.fs.access("/usr/sbin/ip6tables")
+       local mode = 4
+
+       if has_ip6tables then
+               mode = luci.dispatcher.context.requestpath
+           mode = tonumber(mode[#mode] ~= "iptables" and mode[#mode]) or 4
+       end
+
+       local ipt = luci.sys.iptparser.IptParser(mode)
        local wba = luci.tools.webadmin
 
        local rowcnt = 1
@@ -45,24 +54,42 @@ $Id$
                return i
        end
 
+       local tables = { "Filter", "NAT", "Mangle", "Raw" }
+       if mode == 6 then
+               tables = { "Filter", "Mangle", "Raw" }
+       end
 -%>
 
 <%+header%>
 
-<h2><a id="content" name="content"><%:a_s_ipt_status Firewall Status%></a></h2>
+<style type="text/css">
+       span:target {
+               color: blue;
+               text-decoration: underline;
+       }
+</style>
+
+<h2><a id="content" name="content"><%:Firewall Status%></a></h2>
+
+<% if has_ip6tables then %>
+<ul class="cbi-tabmenu">
+       <li class="cbi-tab<%= mode ~= 4 and "-disabled" %>"><a href="<%=luci.dispatcher.build_url("admin/status/iptables/4")%>"><%:IPv4 Firewall%></a></li>
+       <li class="cbi-tab<%= mode ~= 6 and "-disabled" %>"><a href="<%=luci.dispatcher.build_url("admin/status/iptables/6")%>"><%:IPv6 Firewall%></a></li>
+</ul>
+<% end %>
 
 <form method="post" action="<%=REQUEST_URI%>">
        <div class="cbi-map">
                <fieldset class="cbi-section">
-                       <h3><%:a_s_ipt_actions Actions%></h3>
+                       <h3><%:Actions%></h3>
                        <ul>
-                               <li><a href="<%=REQUEST_URI%>?zero=1"><%:a_s_ipt_reset Reset Counters%></a></li>
-                               <li><a href="<%=REQUEST_URI%>?restart=1"><%:a_s_ipt_restart Restart Firewall%></a></li>
+                               <li><a href="<%=REQUEST_URI%>?zero=<%=mode%>"><%:Reset Counters%></a></li>
+                               <li><a href="<%=REQUEST_URI%>?restart=1"><%:Restart Firewall%></a></li>
                        </ul>
                        <br /><br />
 
-                       <% for _, tbl in ipairs({"Filter", "NAT", "Mangle"}) do chaincnt = 0 %>
-                               <h3><%:a_s_ipt_table Table%>: <%=tbl%></h3>
+                       <% for _, tbl in ipairs(tables) do chaincnt = 0 %>
+                               <h3><%:Table%>: <%=tbl%></h3>
                                <table class="cbi-section-table" style="font-size:90%">
                                        <% for _, chain in ipairs(ipt:chains(tbl)) do
                                                rowcnt    = 0
@@ -71,27 +98,27 @@ $Id$
                                        %>
                                                <tr class="cbi-section-table-titles cbi-rowstyle-<%=rowstyle()%>">
                                                        <th class="cbi-section-table-cell" style="text-align:left" colspan="11">
-                                                               <br /><a name="rule_<%=tbl:lower()%>_<%=chain%>"></a>
-                                                               <%:a_s_ipt_chain Chain%> <em><%=chain%></em>
+                                                               <br /><span id="rule_<%=tbl:lower()%>_<%=chain%>">
+                                                               <%:Chain%> <em><%=chain%></em>
                                                                (<%- if chaininfo.policy then -%>
-                                                                       <%:a_s_ipt_policy Policy%>: <em><%=chaininfo.policy%></em>, <%:a_s_ipt_packets Packets%>: <%=chaininfo.packets%>, <%:a_s_ipt_bytes Traffic%>: <%=wba.byte_format(chaininfo.bytes)-%>
+                                                                       <%:Policy%>: <em><%=chaininfo.policy%></em>, <%:Packets%>: <%=chaininfo.packets%>, <%:Traffic%>: <%=wba.byte_format(chaininfo.bytes)-%>
                                                                <%- else -%>
-                                                                       <%:a_s_ipt_references References%>: <%=chaininfo.references-%>
-                                                               <%- end -%>)
+                                                                       <%:References%>: <%=chaininfo.references-%>
+                                                               <%- end -%>)</span>
                                                        </th>
                                                </tr>
                                                <tr class="cbi-section-table-descr">
-                                                       <th class="cbi-section-table-cell"><%:a_s_ipt_rulenum Rule #%></th>
-                                                       <th class="cbi-section-table-cell"><%:a_s_ipt_packets Pkts.%></th>
-                                                       <th class="cbi-section-table-cell"><%:a_s_ipt_bytes Traffic%></th>
-                                                       <th class="cbi-section-table-cell"><%:a_s_ipt_target Target%></th>
-                                                       <th class="cbi-section-table-cell"><%:a_s_ipt_proto Prot.%></th>
-                                                       <th class="cbi-section-table-cell"><%:a_s_ipt_flags Flags%></th>
-                                                       <th class="cbi-section-table-cell"><%:a_s_ipt_inputif In%></th>
-                                                       <th class="cbi-section-table-cell"><%:a_s_ipt_outputif Out%></th>
-                                                       <th class="cbi-section-table-cell"><%:a_s_ipt_source Source%></th>
-                                                       <th class="cbi-section-table-cell"><%:a_s_ipt_destination Destination%></th>
-                                                       <th class="cbi-section-table-cell"><%:a_s_ipt_options Options%></th>
+                                                       <th class="cbi-section-table-cell"><%:Rule #%></th>
+                                                       <th class="cbi-section-table-cell"><%:Pkts.%></th>
+                                                       <th class="cbi-section-table-cell"><%:Traffic%></th>
+                                                       <th class="cbi-section-table-cell"><%:Target%></th>
+                                                       <th class="cbi-section-table-cell"><%:Prot.%></th>
+                                                       <th class="cbi-section-table-cell"><%:Flags%></th>
+                                                       <th class="cbi-section-table-cell"><%:In%></th>
+                                                       <th class="cbi-section-table-cell"><%:Out%></th>
+                                                       <th class="cbi-section-table-cell"><%:Source%></th>
+                                                       <th class="cbi-section-table-cell"><%:Destination%></th>
+                                                       <th class="cbi-section-table-cell" style="width:30%"><%:Options%></th>
                                                </tr>
 
                                                <% for _, rule in ipairs(ipt:find({table=tbl, chain=chain})) do %>
@@ -106,20 +133,20 @@ $Id$
                                                                <td><%=link_iface(rule.outputif)%></td>
                                                                <td><%=rule.source%></td>
                                                                <td><%=rule.destination%></td>
-                                                               <td><small><%=#rule.options > 0 and table.concat(rule.options, " ") or "-"%></small></td>
+                                                               <td style="width:30%"><small><%=#rule.options > 0 and luci.util.pcdata(table.concat(rule.options, " ")) or "-"%></small></td>
                                                        </tr>
                                                <% end %>
 
                                                <% if rowcnt == 1 then %>
                                                        <tr class="cbi-section-table-titles cbi-rowstyle-<%=rowstyle()%>">
-                                                               <td colspan="11"><em><%:a_s_ipt_norules No rules in this chain%></em></td>
+                                                               <td colspan="11"><em><%:No rules in this chain%></em></td>
                                                        </tr>
                                                <% end %>
                                        <% end %>
 
                                        <% if chaincnt == 0 then %>
                                                <tr class="cbi-section-table-titles cbi-rowstyle-<%=rowstyle()%>">
-                                                       <td colspan="11"><em><%:a_s_ipt_nochains No chains in this table%></em></td>
+                                                       <td colspan="11"><em><%:No chains in this table%></em></td>
                                                </tr>
                                        <% end %>
                                </table>