diff options
author | Andreas Brodmann <andreas.brodmann@gmail.com> | 2007-11-27 16:24:04 +0000 |
---|---|---|
committer | Andreas Brodmann <andreas.brodmann@gmail.com> | 2007-11-27 16:24:04 +0000 |
commit | 9032d7d132e275795287d243553cc32871669fd7 (patch) | |
tree | 16d4ac8783488a5de3442fcc4a9cb8f7d4bcb1fc | |
parent | f9e85abf11c0dfc699e8634fbf4fd25f4be01ec0 (diff) | |
download | acf-squid-9032d7d132e275795287d243553cc32871669fd7.tar.bz2 acf-squid-9032d7d132e275795287d243553cc32871669fd7.tar.xz |
daily update on the acf-squid module (missed dansguardian-plain-html.lsp)
git-svn-id: svn://svn.alpinelinux.org/acf/squid/trunk@374 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r-- | dansguardian-plain-html.lsp | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/dansguardian-plain-html.lsp b/dansguardian-plain-html.lsp new file mode 100644 index 0000000..6b0bf2e --- /dev/null +++ b/dansguardian-plain-html.lsp @@ -0,0 +1,61 @@ +<? + 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 (Plain Config File)</h1> +<table border="2"> + <tr> + <td style="width:80%"> + <center> + <div style="color: #ff2020; font-weight: bold;">WARNING:</div><br> + Modifying the DansGuardian configuration file is generally not necessary. + You must be familiar with the configuration file before proceeding. + </center> + </td> + </tr> +</table><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> + +<form action="" method="POST"> +<h1>Configuration</h1> +<pre style="color: #ff2020;"><? io.write( service.cfgerr ) ?></pre><br> +These parameters define the interface and port that Dansguardian uses to accept connections.<br><br> + +<table> +<tr><td><textarea name="config" style="width:600px"><? io.write( service.config ) ?></textarea></td></tr> +</table><br> + +<input type="submit" name="cmd" value="save" style="width:100px"><br> +</form> + |