summaryrefslogtreecommitdiffstats
path: root/logfiles-view-html.lsp
blob: 09232308088e1632f017e92f4555c2b0ec208083 (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 view = ... ?>

<h1>LOGFILE</h1>

<h2>Details</h2>

<dl>
<dt>File name</dt>
<dd><?= view.logfile.details.path ?></dd>
</dl>

<dl>
<dt>File size</dt>
<dd><?= view.logfile.details.size ?></dd>
</dl>

<dl>
<dt>Last modified</dt>
<dd><?= view.logfile.details.mtime ?></dd>
</dl>

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

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