summaryrefslogtreecommitdiffstats
path: root/dansguardian-category-html.lsp
diff options
context:
space:
mode:
authorAndreas Brodmann <andreas.brodmann@gmail.com>2008-01-18 10:52:39 +0000
committerAndreas Brodmann <andreas.brodmann@gmail.com>2008-01-18 10:52:39 +0000
commitbce897383c5090870e15f9ccd7d73922750d82ce (patch)
tree032495655383a3d826ce15afb48ca1248f86414a /dansguardian-category-html.lsp
parenta8f1553596ca2214f920c5f00ab1c9d1c1eab3af (diff)
downloadacf-dansguardian-bce897383c5090870e15f9ccd7d73922750d82ce.tar.bz2
acf-dansguardian-bce897383c5090870e15f9ccd7d73922750d82ce.tar.xz
initial import of the dansguardian stuff after separation from squid
git-svn-id: svn://svn.alpinelinux.org/acf/dansguardian/trunk@615 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'dansguardian-category-html.lsp')
-rw-r--r--dansguardian-category-html.lsp60
1 files changed, 60 insertions, 0 deletions
diff --git a/dansguardian-category-html.lsp b/dansguardian-category-html.lsp
new file mode 100644
index 0000000..d9ddcac
--- /dev/null
+++ b/dansguardian-category-html.lsp
@@ -0,0 +1,60 @@
+<?
+ 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 add/remove categories 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 class="submit" type="submit" name="srvcmd" value="start" <? io.write( srv1fill ) ?> style="width:100px"></td>
+<td><input class="submit" type="submit" name="srvcmd" value="stop" <? io.write( srv2fill ) ?> style="width:100px"></td>
+<td><input class="submit" 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>Categories</h1>
+<pre style="color: #ff2020;"><? io.write( service.cfgerr ) ?></pre><br>
+<h2>Delete Category</h2>
+
+<form action="" method="POST">
+<table>
+<?
+ for k,v in ipairs( config ) do
+ io.write( "<tr><td><input type=\"checkbox\" name=\"cats\" value=\"" .. v .. "\"> " .. v .. "</td></tr>\n" )
+ end
+?>
+<tr><td><input class="submit" type="submit" name="cmd" value="delete"></td></tr>
+</table>
+</form>
+