summaryrefslogtreecommitdiffstats
path: root/quagga-logfile-html.lsp
blob: aa0b6e5e84d80191f3904d54728867044ee28f61 (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>