summaryrefslogtreecommitdiffstats
path: root/dnsmasq-config-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-02-03 21:27:08 +0000
committerTed Trask <ttrask01@yahoo.com>2014-02-03 21:27:08 +0000
commit54eb592837c417aca41c97f12b04f6f15fde36c8 (patch)
tree7d2a714008e2c604cd3fc747ee2bbaf8fe874fe8 /dnsmasq-config-html.lsp
parent985c8691721316227416278f57bda4d858afcac2 (diff)
downloadacf-dnsmasq-54eb592837c417aca41c97f12b04f6f15fde36c8.tar.bz2
acf-dnsmasq-54eb592837c417aca41c97f12b04f6f15fde36c8.tar.xz
Cleanup HTML including removing DL/DT/DD, use tablesorter where possible, and use lowercase tags
Diffstat (limited to 'dnsmasq-config-html.lsp')
-rw-r--r--dnsmasq-config-html.lsp25
1 files changed, 7 insertions, 18 deletions
diff --git a/dnsmasq-config-html.lsp b/dnsmasq-config-html.lsp
index 1fa36bc..5af9fcb 100644
--- a/dnsmasq-config-html.lsp
+++ b/dnsmasq-config-html.lsp
@@ -6,50 +6,39 @@ htmlviewfunctions = require("htmlviewfunctions")
viewlibrary.dispatch_component("status")
end %>
-<H1>Config</H1>
+<h1>Config</h1>
<%
form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action
htmlviewfunctions.displayformstart(form)
%>
-</DL>
-<H2>General Parameters</H2>
-<DL>
+<h2>General Parameters</h2>
<%
htmlviewfunctions.displayformitem(form.value.interface, "interface")
htmlviewfunctions.displayformitem(form.value.listen_address, "listen_address")
htmlviewfunctions.displayformitem(form.value.domain, "domain")
%>
-</DL>
-<H2>DNS Settings</H2>
-<H3>DNS Parameters</H3>
-<DL>
+<h2>DNS Settings</h2>
+<h3>DNS Parameters</h3>
<%
htmlviewfunctions.displayformitem(form.value.mx_host, "mx_host")
%>
-</DL>
-<H3>DNS Filtering</H3>
-<DL>
+<h3>DNS Filtering</h3>
<%
htmlviewfunctions.displayformitem(form.value.dns_filtering, "dns_filtering")
htmlviewfunctions.displayformitem(form.value.dns_whitelist, "dns_whitelist")
htmlviewfunctions.displayformitem(form.value.dns_default_address, "dns_default_address")
%>
-</DL>
-<H2>DHCP Parameters</H2>
-<DL>
+<h2>DHCP Parameters</h2>
<%
htmlviewfunctions.displayformitem(form.value.dhcp_range, "dhcp_range")
htmlviewfunctions.displayformitem(form.value.no_dhcp_interface, "no_dhcp_interface")
htmlviewfunctions.displayformitem(form.value.dhcp_host, "dhcp_host")
htmlviewfunctions.displayformitem(form.value.dhcp_option, "dhcp_option")
%>
-</DL>
-<H2>Save Changes</H2>
-<DL>
+<h2>Save Changes</h2>
<%
htmlviewfunctions.displayformend(form)
%>
-</DL>