summaryrefslogtreecommitdiffstats
path: root/dansguardian-advanced-html.lsp
diff options
context:
space:
mode:
authorAndreas Brodmann <andreas.brodmann@gmail.com>2007-11-28 15:31:40 +0000
committerAndreas Brodmann <andreas.brodmann@gmail.com>2007-11-28 15:31:40 +0000
commit63e86a0669837c3845db1eb581f58ba388705ced (patch)
tree4c8f8666e7470e3f43bc94ba9a588bf6ce432da4 /dansguardian-advanced-html.lsp
parent9032d7d132e275795287d243553cc32871669fd7 (diff)
downloadacf-squid-63e86a0669837c3845db1eb581f58ba388705ced.tar.bz2
acf-squid-63e86a0669837c3845db1eb581f58ba388705ced.tar.xz
/acf/squid: updated dansguardian config gui, yet missing: category editor
git-svn-id: svn://svn.alpinelinux.org/acf/squid/trunk@381 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'dansguardian-advanced-html.lsp')
-rw-r--r--dansguardian-advanced-html.lsp58
1 files changed, 58 insertions, 0 deletions
diff --git a/dansguardian-advanced-html.lsp b/dansguardian-advanced-html.lsp
new file mode 100644
index 0000000..92c1d81
--- /dev/null
+++ b/dansguardian-advanced-html.lsp
@@ -0,0 +1,58 @@
+<?
+ local form = ...
+ local data = form.option
+ local service = form.service
+ local config = form.service.config
+
+ local srv1fill = ""
+ local srv2fill = "disabled"
+ if service.status == "running" then
+ srv1fill = "disabled"
+ srv2fill = ""
+ end
+
+ local ifthen = function( variable, value, result )
+ if variable == value then
+ io.write( result )
+ end
+ end
+
+?>
+<h1>Content Filter</h1>
+DansGuardian is web content filtering software. It works as a web proxy,
+making web requests in behalf of the client, and inspecting the returned
+content before passing on to the client. DansGuardian uses phraselists to
+identify harmful content. This means that updated "blacklists" are
+generally not necessary. DansGuardian must be used in combination with a
+"smart proxy", such as squid.
+<b>This page lets you manually configure the filter rule files for DansGuardian.</b><br><br>
+
+<h1>Status</h1>
+<form action="" method="POST">
+<table><tr>
+<td>dansguardian is: <b><? io.write( service.status ) ?> </b> </td>
+<td><input type="submit" name="srvcmd" value="start" <? io.write( srv1fill ) ?> style="width:100px"></td>
+<td><input type="submit" name="srvcmd" value="stop" <? io.write( srv2fill ) ?> style="width:100px"></td>
+<td><input type="submit" name="srvcmd" value="restart" <? io.write( srv2fill ) ?> style="width:100px"></td>
+</tr></table>
+</form>
+
+<pre style="color: #ff2020;"><? io.write( service.message ) ?></pre><br>
+
+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.<br><br><br>
+
+<h1>Configuration</h1>
+<pre style="color: #ff2020;"><? io.write( service.cfgerr ) ?></pre><br>
+<h2>Files</h2>
+Click on one of the files to edit it.<br><br>
+
+<table>
+<?
+ for k,v in ipairs( config.files ) do
+ io.write( "<tr><td><a href=\"" .. data.script .. data.prefix .. data.controller .. "/edit?name=" .. v .. "\">" .. v .. "</a></td></tr>\n" )
+ end
+?>
+</table>
+