diff options
author | Alexander Poslavsky <alexander.poslavsky@gmail.com> | 2007-11-02 09:24:27 +0000 |
---|---|---|
committer | Alexander Poslavsky <alexander.poslavsky@gmail.com> | 2007-11-02 09:24:27 +0000 |
commit | ccc6fc77ca7f75294c45f3cd571473488df0042d (patch) | |
tree | 6ae3291364c2a46ea48c176ac0f3f669355fe40d /app/shorewall-read-html.lsp | |
parent | 1f2bc0676beae8672512edc37fff46a5e76b02a2 (diff) | |
download | acf-shorewall-ccc6fc77ca7f75294c45f3cd571473488df0042d.tar.bz2 acf-shorewall-ccc6fc77ca7f75294c45f3cd571473488df0042d.tar.xz |
trying to get shorewall to install+status indicator, cleanup
git-svn-id: svn://svn.alpinelinux.org/acf/shorewall/trunk@252 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'app/shorewall-read-html.lsp')
-rw-r--r-- | app/shorewall-read-html.lsp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app/shorewall-read-html.lsp b/app/shorewall-read-html.lsp deleted file mode 100644 index c4732a0..0000000 --- a/app/shorewall-read-html.lsp +++ /dev/null @@ -1,24 +0,0 @@ -<? local view = ... ?> - -<? --Status Block - -?> - -<h1>Edit</h1> -<table border=0> -<? local sct="" -for i,item in ipairs(view.list) do - if item.section ~= sct then - ?><tr><td colspan='3'><h2><?= item.section ?></td></tr><? - sct = item.section - end - ?><tr><td><?= item.status or '' ?><? - ?><td><?= html.link{ - value = view.script .. view.prefix .. view.controller .. "/" - .. view.action .. "?id=" .. tostring(item.id), - label=item.name - } - ?></td><td><?= item.descr - ?></td></tr><? -end ?> -</table> |