summaryrefslogtreecommitdiffstats
path: root/app/shorewall/shorewall-read-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'app/shorewall/shorewall-read-html.lsp')
-rw-r--r--app/shorewall/shorewall-read-html.lsp18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/shorewall/shorewall-read-html.lsp b/app/shorewall/shorewall-read-html.lsp
deleted file mode 100644
index cf73662..0000000
--- a/app/shorewall/shorewall-read-html.lsp
+++ /dev/null
@@ -1,18 +0,0 @@
-<?
-local view = ...
-?><h1>Edit</h1><table border=0><?
-local sct=""
-for i,item in ipairs(view.list) do
- if item.section ~= sct then
- ?><tr><td colspan='2'><h2><?= item.section ?></td></tr><?
- sct = item.section
- end
- ?><tr><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>