summaryrefslogtreecommitdiffstats
path: root/chrony-logfile-html.lsp
blob: f3d889e7ee61e9049b5d238186df974f9df3c49d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<% local form = ... %>
<%
require("viewfunctions")
%>

<H1>SYSTEM INFO</H1>
<DL>
<% 
local myform = form.status 
local tags = { "status", "version", "autostart", }
displayinfo(myform,tags,"viewonly")
%>
</DL>

<form name="myform" action="" method="POST">
<h1>LOGFILE</h1>
<h2>Details</h2>
<DL>
<% 
local myform = form.logfile
local tags = { "filename", "filesize", "mtime", "sumerrors", }
displayinfo(myform,tags,"viewonly")
%>
</DL>

<H3>FILE CONTENT</H3>
<% 
io.write(html.form[myform.filecontent.type](myform.filecontent))
%>

</form>