summaryrefslogtreecommitdiffstats
path: root/shorewall-edit-html.lsp
diff options
context:
space:
mode:
authorMika Havela <mika.havela@gmail.com>2007-11-28 18:15:49 +0000
committerMika Havela <mika.havela@gmail.com>2007-11-28 18:15:49 +0000
commitd81ce7886c20e537161083279e9bc96cf6b74290 (patch)
tree91222d2be2251f71ac059598e82abe613ae22ccc /shorewall-edit-html.lsp
parentf9975a98a1e3404c2f75ed093f8de47f89b339e5 (diff)
downloadacf-shorewall-d81ce7886c20e537161083279e9bc96cf6b74290.tar.bz2
acf-shorewall-d81ce7886c20e537161083279e9bc96cf6b74290.tar.xz
Still have problems showing owner of a file in cleartext (instead of uid)
git-svn-id: svn://svn.alpinelinux.org/acf/shorewall/trunk@384 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'shorewall-edit-html.lsp')
-rw-r--r--shorewall-edit-html.lsp11
1 files changed, 8 insertions, 3 deletions
diff --git a/shorewall-edit-html.lsp b/shorewall-edit-html.lsp
index 3e12554..f1c4958 100644
--- a/shorewall-edit-html.lsp
+++ b/shorewall-edit-html.lsp
@@ -12,17 +12,22 @@
<dd><?= view.filecontent.filedetails.size ?></dd>
<dt>Last modified</dt>
-<dd><?= view.filecontent.filedetails.mtime ?></dd>
+<dd><?= view.filecontent.filedetails.mtimelong ?></dd>
<dt>Mode</dt>
<dd><?= view.filecontent.filedetails.mode ?></dd>
<dt>Owner:Group</dt>
-<dd><?= view.filecontent.filedetails.uid ?>:<?= view.filecontent.filedetails.gid ?></dd>
+<dd><?= view.filecontent.filedetails.gid ?>:<?= view.filecontent.filedetails.group ?></dd>
<h2>Content</h2>
<textarea name="" style="width:100%;height:400px;"><?= view.filecontent.value ?></textarea>
-
+<h2>DEUB INFO</h2>
+<?
+for a,b in pairs(view.filecontent.filedetails) do
+print (a,b .. "<BR>")
+end
+?>
</body>
</html>