summaryrefslogtreecommitdiffstats
path: root/squid-advanced-html.lsp
blob: 2a62e885ac4b7f4a6183fa2c21b555bf967912b6 (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
<? 
require("viewfunctions")

   local form = ... 
   local data = form.option
   local service = form.service
   
   local srv1fill = ""
   local srv2fill = "disabled"
   if form.info.status.value == "Enabled" then
   	srv1fill = "disabled"
   	srv2fill = ""
   end
   
?>
<H1>SYSTEM INFO</H1>
<DL>
<? 
local myform = form.info
local tags = { "status", "version", "autostart", }
displayinfo(myform,tags,"viewonly")
?>
</DL>


<h1>Advanced configuration</h1>
<dl>
<dt>Warning</dt>
<dd class="attention">
  Modifying the web proxy configuration file is generally not necessary.
  You must be familiar with the configuration file before proceeding.
</dd>
</dl>

<h2>Configuration</h2>
<form action="" method="POST">
<textarea name="config"><? io.write( service.config ) ?></textarea>

<h3>Save Changes</h3>
<dl>
<dt>Save the contents of the box above</dt><dd><input class="submit" type="submit" name="cmd" value="save"></dd>
<dt>Process information</dt><dd>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.</dd>
</dl>
</form>

<h1>MANAGEMENT</h1>
<form action="" method="POST">
<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 ) ?>>
<? if (service.message) and (service.message.descr) and (#service.message.descr > 0) then ?><pre><? io.write( service.message.descr ) ?></pre><? end ?></dd>
</dl>
</form>