summaryrefslogtreecommitdiffstats
path: root/dansguardian-plain-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-08-12 15:53:20 +0000
committerTed Trask <ttrask01@yahoo.com>2008-08-12 15:53:20 +0000
commit7ccca7213d3137b0764ef02165c44f4bd3373f45 (patch)
tree72f8ec88e7e5242abc5196043f21552d07e66f0f /dansguardian-plain-html.lsp
parenta538c188976821b77959aadbcfc7ce0639f0aa24 (diff)
downloadacf-dansguardian-7ccca7213d3137b0764ef02165c44f4bd3373f45.tar.bz2
acf-dansguardian-7ccca7213d3137b0764ef02165c44f4bd3373f45.tar.xz
Modified dansguardian to use new status, startstop, and expert (replaced plain) actions.
git-svn-id: svn://svn.alpinelinux.org/acf/dansguardian/trunk@1380 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'dansguardian-plain-html.lsp')
-rw-r--r--dansguardian-plain-html.lsp83
1 files changed, 0 insertions, 83 deletions
diff --git a/dansguardian-plain-html.lsp b/dansguardian-plain-html.lsp
deleted file mode 100644
index 5ad57b9..0000000
--- a/dansguardian-plain-html.lsp
+++ /dev/null
@@ -1,83 +0,0 @@
-<%
-require("viewfunctions")
- local form = ...
- local data = form.option
- local service = form.service
- local config = form.service.config
-
- local srv1fill = ""
- local srv2fill = "disabled"
- if form.info.status.value == "Enabled" then
- srv1fill = "disabled"
- srv2fill = ""
- end
-
- local ifthen = function( variable, value, result )
- if variable == value then
- io.write( result )
- end
- 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.info
-local tags = { "status", "version", "autostart", }
-displayinfo(myform,tags,"viewonly")
-%>
-</DL>
-
-<h1>Content Filter (Plain Config File)</h1>
-<DL>
-<DT>Warning</DT>
-<DD class=warning>Modifying the DansGuardian configuration file is generally not necessary.
-You must be familiar with the configuration file before proceeding.</DD>
-<DT>Information</DT>
-<DD>These parameters define the interface and port that Dansguardian uses to accept connections.</DD>
-</DL>
-
-<form action="" method="POST">
-<h2>Configuration</h2>
-<textarea name="config"><% io.write( service.config ) %></textarea>
-
-
-<h2>Save changes</h2>
-<dl>
-<%
-local myform = form.service
-local tags = { "cmdsave", }
-displayinfo(myform,tags)
-%>
-<% if (service) and (service.error) and (#service.error > 0) then %>
-<DT>Config status</DT><DD class="error"><% io.write(service.error ) %></DD>
-<% end %>
-<% if (service) and (service.cfgerr) and (#service.cfgerr > 0) then %>
-<DT>Config status</DT><DD class="error"><% io.write(service.cfgerr ) %></DD>
-<% end %>
-
-<DT>Process information</DT><DD>This process runs as a service. When you make and save changes, the configuration
-files for the service are changed. However, the changes will not be <i>applied</i>
-until you restart the service.</DD>
-
-</dl>
-</form>
-
-<h1>MANAGEMENT</h1>
-<form action="" method="POST">
-<dl>
-<DT>Daemon control</DT><dd><input class="submit" type="submit" name="srvcmd" value="start" <% io.write( srv1fill ) %>>
-<input class="submit" type="submit" name="srvcmd" value="stop" <% io.write( srv2fill ) %>>
-<input class="submit" type="submit" name="srvcmd" value="restart" <% io.write( srv2fill ) %>>
-<% if (service.message) and (service.message.descr) and (#service.message.descr > 0) then %><pre><% io.write( service.message.descr ) %></pre><% end %></dd>
-</dl>
-</form>