summaryrefslogtreecommitdiffstats
path: root/iptables-editrule-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'iptables-editrule-html.lsp')
-rw-r--r--iptables-editrule-html.lsp13
1 files changed, 5 insertions, 8 deletions
diff --git a/iptables-editrule-html.lsp b/iptables-editrule-html.lsp
index 905980a..42f64df 100644
--- a/iptables-editrule-html.lsp
+++ b/iptables-editrule-html.lsp
@@ -3,7 +3,7 @@ htmlviewfunctions = require("htmlviewfunctions")
html = require("acf.html")
%>
-<H1><%= html.html_escape(form.label) %></H1>
+<h1><%= html.html_escape(form.label) %></h1>
<%
for name,val in pairs(form.value) do val.name = name end
form.value.table.readonly = true
@@ -14,13 +14,13 @@ form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/
htmlviewfunctions.displayformstart(form)
%>
-<H2>Rule Identification</H2><DL>
+<h2>Rule Identification</h2>
<%
htmlviewfunctions.displayformitem(form.value.table)
htmlviewfunctions.displayformitem(form.value.chain)
htmlviewfunctions.displayformitem(form.value.position)
%>
-</DL><H2>Basic Parameters</H2><DL>
+<h2>Basic Parameters</h2>
<%
htmlviewfunctions.displayformitem(form.value.jump)
htmlviewfunctions.displayformitem(form.value.protocol)
@@ -28,14 +28,11 @@ htmlviewfunctions.displayformitem(form.value.in_interface)
htmlviewfunctions.displayformitem(form.value.out_interface)
htmlviewfunctions.displayformitem(form.value.source)
htmlviewfunctions.displayformitem(form.value.destination)
-%>
-</DL><DL id="details">
-<%
htmlviewfunctions.displayformitem(form.value.goto)
htmlviewfunctions.displayformitem(form.value.fragment)
htmlviewfunctions.displayformitem(form.value.set_counters)
%>
-</DL><H2>Extended Parameters</H2><DL>
+<h2>Extended Parameters</h2>
<%
htmlviewfunctions.displayformitem(form.value.comment)
htmlviewfunctions.displayformitem(form.value.addrtype_src_type)
@@ -53,5 +50,5 @@ htmlviewfunctions.displayformitem(form.value.tcp_dport)
htmlviewfunctions.displayformitem(form.value.udp_sport)
htmlviewfunctions.displayformitem(form.value.udp_dport)
%>
-</DL><H2><%= html.html_escape(form.option) %></H2>
+<h2><%= html.html_escape(form.option) %></h2>
<% htmlviewfunctions.displayformend(form) %>