summaryrefslogtreecommitdiffstats
path: root/dansguardian-category-html.lsp
blob: bbe1a20c6e609c036d50b503f8eb325723c4dc2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<? 
   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>
<p>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></p>

<h1>Status</h1>
<form action="" method="POST">
<dl><dt>dansguardian is:</dt><dd><b><? io.write( service.status ) ?></b></dd></dl>
<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 ) ?>></dd></dl>
</form>

<p><pre class=error><? io.write( service.message ) ?></pre></p>

<p>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.</p>

<h1>Categories</h1>
<p><pre class=error><? io.write( service.cfgerr ) ?></pre></p>
<h2>Add Category</h2>
<p>
To add a category, or to add a file to an existing category, please fill in the corresponding information below.
(Due to a limitation with DansGuardian, all categories must be lowercase.)
</p>
<dl><dt>Category name</dt><dd><input type="text" name="newcat" value=""></dd></dl>
<dl><dt>Category files</dt><dd><input type="checkbox" name="cattype" value="w">weighted <input type="checkbox" name="cattype" value="b">banned <input type="checkbox" name="cattype" value="e">exception</dd></dl>
<dl><dt>Action</dt><dd><input class="submit" type="submit" name="cmd" value="add"></dd></dl>
<p></p>

<h2>Delete Category</h2>
<p>
Select the categories you wish to delete. Please note that this deletes the category, but does not
delete the link in the corresponding phraselist above. You will also need to edit the phraselist file 
above if you delete a category.
</p>
<form action="" method="POST">
<dl><dt>Categories available</dt><dd>(please check the ones you want to delete)</dd></dl>
<?
   for k,v in ipairs( config ) do
      io.write( "<dl><dt></dt><dd><input type=\"checkbox\" name=\"cats\" value=\"" .. v .. "\"> " .. v .. "</dd></dl>\n" )
   end
?>
<dl><dt>Action</dt><dd><input class="submit" type="submit" name="cmd" value="delete"></dd></dl>
</form>