summaryrefslogtreecommitdiffstats
path: root/fetchmail-status-html.lsp
diff options
context:
space:
mode:
authorMika Havela <mika.havela@gmail.com>2008-04-08 15:11:02 +0000
committerMika Havela <mika.havela@gmail.com>2008-04-08 15:11:02 +0000
commit52a457602fc2d7d106ddfa0a686ee8a07c979875 (patch)
tree32531bc6d460c143988a9bead94c255bc7529f7d /fetchmail-status-html.lsp
parent386b8d30f58c3309e25ab707982cfff47e86a745 (diff)
downloadacf-fetchmail-52a457602fc2d7d106ddfa0a686ee8a07c979875.tar.bz2
acf-fetchmail-52a457602fc2d7d106ddfa0a686ee8a07c979875.tar.xz
Cleaning up code.
git-svn-id: svn://svn.alpinelinux.org/acf/fetchmail/trunk@955 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'fetchmail-status-html.lsp')
-rw-r--r--fetchmail-status-html.lsp42
1 files changed, 12 insertions, 30 deletions
diff --git a/fetchmail-status-html.lsp b/fetchmail-status-html.lsp
index 9b3372a..61494ae 100644
--- a/fetchmail-status-html.lsp
+++ b/fetchmail-status-html.lsp
@@ -1,44 +1,26 @@
-<? local form = ... ?>
-
+<? local form = ...
+require("viewfunctions")
+?>
<?
-function informationform(myform,tags)
- io.write("<DL>")
- for k,v in pairs(tags) do
- if (myform[v]) then
- local val = myform[v]
- io.write("\t<DT")
- if (#val.errtxt > 0) then io.write(" class='error'") end
- io.write(">" .. val.label .. "</DT>\n")
-
- io.write("\t\t<DD>" .. val.value .. "\n")
- if (val.descr) and (#val.descr > 0) then io.write("\t\t<P CLASS='descr'>" .. string.gsub(val.descr, "\n", "<BR>") .. "</P>\n") end
- if (#val.errtxt > 0) then io.write("\t\t<P CLASS='error'>" .. string.gsub(val.errtxt, "\n", "<BR>") .. "</P>\n") end
- io.write("\t\t</DD>\n")
- end
- end
- io.write("</DL>")
-end
+--[[ DEBUG INFORMATION
+io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
+io.write(html.cfe_unpack(form))
+io.write("</span>")
+--]]
?>
<H1>SYSTEM INFO</H1>
+<DL>
<?
local myform = form.status
local tags = { "status", "version", "autostart", }
-informationform(myform,tags)
+displayinfo(myform,tags,"viewonly")
?>
+</DL>
<H2>PROGRAM SPECIFIC OPTIONS/INFORMATION</H2>
<?
local myform = form.status
local tags = { "configfile", }
-informationform(myform,tags)
+displayinfo(myform,tags,"viewonly")
?>
-
-<?
---[[ DEBUG INFORMATION
-io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
-io.write(html.cfe_unpack(form))
-io.write("</span>")
---]]
-?>
-