summaryrefslogtreecommitdiffstats
path: root/dansguardian-plain-html.lsp
blob: 2e24fd0143c1cb010f598d4ae6100bea70ac033b (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
<? 
   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>
                                                
<h2>Status</h2>
<form action="" method="POST">
<dt>dansguardian is: <? io.write( service.status ) ?> </dt>
<dd><input class="submit" type="submit" name="srvcmd" value="start" <? io.write( srv1fill ) ?> style="width:100px">
<input class="submit" type="submit" name="srvcmd" value="stop" <? io.write( srv2fill ) ?> style="width:100px">
<input class="submit" type="submit" name="srvcmd" value="restart" <? io.write( srv2fill ) ?> style="width:100px"></dd>
</form>
<p class="error"><? io.write( service.message ) ?></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>

<form action="" method="POST">
<h2>Configuration</h2>
<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:100%"><? io.write( service.config ) ?></textarea></td></tr>
</table><br>

<h3>Save Changes</h3>
<dt>Save the contents of the above box</dt><dd><input class="submit" type="submit" name="cmd" value="save" style="width:100px"></dd>
</form>