summaryrefslogtreecommitdiffstats
path: root/logfiles-view-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-06-02 15:56:37 +0000
committerTed Trask <ttrask01@yahoo.com>2008-06-02 15:56:37 +0000
commit3fb4985ae7cd7d5c8fc874ec03c5c0ad7c2d8456 (patch)
tree71cc0dc4e56853f93988330e118d32444825bbd1 /logfiles-view-html.lsp
parenta280c3b1faa2847b6d4f850a55d0cd4ea8453283 (diff)
downloadacf-alpine-baselayout-3fb4985ae7cd7d5c8fc874ec03c5c0ad7c2d8456.tar.bz2
acf-alpine-baselayout-3fb4985ae7cd7d5c8fc874ec03c5c0ad7c2d8456.tar.xz
Modified logfiles to use cfe's more properly.
git-svn-id: svn://svn.alpinelinux.org/acf/alpine-baselayout/trunk@1192 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'logfiles-view-html.lsp')
-rw-r--r--logfiles-view-html.lsp8
1 files changed, 4 insertions, 4 deletions
diff --git a/logfiles-view-html.lsp b/logfiles-view-html.lsp
index 299e895..4d30f14 100644
--- a/logfiles-view-html.lsp
+++ b/logfiles-view-html.lsp
@@ -6,15 +6,15 @@
<dl>
<dt>File name</dt>
-<dd><?= view.logfile.details.path ?></dd>
+<dd><?= view.value.filename.value ?></dd>
<dt>File size</dt>
-<dd><?= view.logfile.details.size ?></dd>
+<dd><?= view.value.filesize.value ?></dd>
<dt>Last modified</dt>
-<dd><?= view.logfile.details.mtime ?></dd>
+<dd><?= view.value.mtime.value ?></dd>
</dl>
<h2>Content</h2>
-<textarea name=""><? io.write(view.logfile.value) ?></textarea>
+<textarea name=""><? io.write(view.value.filecontent.value) ?></textarea>