summaryrefslogtreecommitdiffstats
path: root/quagga-logfile-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'quagga-logfile-html.lsp')
-rw-r--r--quagga-logfile-html.lsp31
1 files changed, 0 insertions, 31 deletions
diff --git a/quagga-logfile-html.lsp b/quagga-logfile-html.lsp
deleted file mode 100644
index aa0b6e5..0000000
--- a/quagga-logfile-html.lsp
+++ /dev/null
@@ -1,31 +0,0 @@
-<? local form = ... ?>
-<?
-require("viewfunctions")
-?>
-
-<H1>SYSTEM INFO</H1>
-<DL>
-<?
-local myform = form.status
-local tags = { "status", "version", "autostart", }
-displayinfo(myform,tags,"viewonly")
-?>
-</DL>
-
-<form name="myform" action="" method="POST">
-<h1>LOGFILE</h1>
-<h2>Details</h2>
-<DL>
-<?
-local myform = form.logfile
-local tags = { "filename", "filesize", "mtime", "sumerrors", }
-displayinfo(myform,tags,"viewonly")
-?>
-</DL>
-
-<H3>FILE CONTENT</H3>
-<?
-io.write(html.form[myform.filecontent.type](myform.filecontent))
-?>
-
-</form>