summaryrefslogtreecommitdiffstats
path: root/chrony-keyfile-html.lsp
blob: 16c8c5fc5244b1aa78665d00eac6d231b1337c20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<% local form, viewlibrary, page_info, session = ... %>
<% htmlviewfunctions = require("htmlviewfunctions") %>
<% html = require("acf.html") %>

<% htmlviewfunctions.displaycommandresults({"enablekeyfile"}, session) %>

<%
	local header_level = htmlviewfunctions.displaysectionstart(form.value.status, page_info)
	htmlviewfunctions.displayitem(form.value.status)
	if form.value.status.errtxt then
		htmlviewfunctions.displayitem(cfe({type="form", value={redir=cfe({ type="hidden", value=page_info.orig_action })}, label="", option="Enable", action="enablekeyfile" }), page_info, 0)
	end
	htmlviewfunctions.displaysectionend(header_level)
%>

<%
local pattern = string.gsub(page_info.prefix..page_info.controller, "[%(%)%.%%%+%-%*%?%[%]%^%$]", "%%%1")
local func = haserl.loadfile(page_info.viewfile:gsub(pattern..".*$", "/") .. "filedetails-html.lsp")
func(form, viewlibrary, page_info, session)
%>