From b559127bef4697311f929e039a8143cfd8fef478 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Thu, 10 Apr 2014 06:19:17 +0000 Subject: Changes to use new htmlviewfunctions functions --- dnsmasq-config-html.lsp | 37 ++++++++++++++----------------------- 1 file changed, 14 insertions(+), 23 deletions(-) diff --git a/dnsmasq-config-html.lsp b/dnsmasq-config-html.lsp index 5af9fcb..6334e6f 100644 --- a/dnsmasq-config-html.lsp +++ b/dnsmasq-config-html.lsp @@ -6,39 +6,30 @@ htmlviewfunctions = require("htmlviewfunctions") viewlibrary.dispatch_component("status") end %> -

Config

-<% - form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action - htmlviewfunctions.displayformstart(form) -%> -

General Parameters

<% +local header_level = htmlviewfunctions.displaysectionstart(cfe({label="Config"}), page_info) + htmlviewfunctions.displayformstart(form, page_info) +local header_level2 = htmlviewfunctions.displaysectionstart(cfe({label="General Parameters"}), page_info, htmlviewfunctions.incrementheader(header_level)) htmlviewfunctions.displayformitem(form.value.interface, "interface") htmlviewfunctions.displayformitem(form.value.listen_address, "listen_address") htmlviewfunctions.displayformitem(form.value.domain, "domain") -%> -

DNS Settings

-

DNS Parameters

-<% +htmlviewfunctions.displaysectionend(header_level2) +htmlviewfunctions.displaysectionstart(cfe({label="DNS Settings"}), page_info, header_level2) +local header_level3 = htmlviewfunctions.displaysectionstart(cfe({label="DNS Parameters"}), page_info, htmlviewfunctions.incrementheader(header_level2)) htmlviewfunctions.displayformitem(form.value.mx_host, "mx_host") -%> - -

DNS Filtering

-<% +htmlviewfunctions.displaysectionend(header_level3) +htmlviewfunctions.displaysectionstart(cfe({label="DNS Filtering"}), page_info, header_level3) 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") -%> - -

DHCP Parameters

-<% +htmlviewfunctions.displaysectionend(header_level3) +htmlviewfunctions.displaysectionend(header_level2) +htmlviewfunctions.displaysectionstart(cfe({label="DHCP Parameters"}), page_info, header_level2) 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") -%> - -

Save Changes

-<% - htmlviewfunctions.displayformend(form) +htmlviewfunctions.displaysectionend(header_level2) + htmlviewfunctions.displayformend(form, header_level2) +htmlviewfunctions.displaysectionend(header_level) %> -- cgit v1.2.3