summaryrefslogtreecommitdiffstats
path: root/shorewall-logfile-html.lsp
blob: 593a8d17312bd4908de97cb146386aaab41788fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<? local view = ... ?>
<html>
<body>
<h1>LOGFILE</h1>

<h2>Details</h2>

<dt>Logfile</dt>
<dd><?= view.logfile.cmd ?></dd>

<h2>Content</h2>
<textarea name=""><? io.write(view.logfile.value) ?></textarea>
</body>
</html>

<?
--[[ DEBUG INFORMATION
require("debugs")
io.write(debugs.variables(view))
--]]
?>