summaryrefslogtreecommitdiffstats
path: root/squid-advanced-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'squid-advanced-html.lsp')
-rw-r--r--squid-advanced-html.lsp49
1 files changed, 49 insertions, 0 deletions
diff --git a/squid-advanced-html.lsp b/squid-advanced-html.lsp
new file mode 100644
index 0000000..afcc642
--- /dev/null
+++ b/squid-advanced-html.lsp
@@ -0,0 +1,49 @@
+<?
+ local form = ...
+ local data = form.option
+ local service = form.service
+
+ local srv1fill = ""
+ local srv2fill = "disabled"
+ if service.status == "running" then
+ srv1fill = "disabled"
+ srv2fill = ""
+ end
+
+?>
+<h1>Web Proxy Configuration</h1>
+<table border="2">
+ <tr>
+ <td style="width:80%">
+ <center>
+ <div style="color: #ff2020; font-weight: bold;">WARNING:</div><br>
+ Modifying the web proxy configuration file is generally not necessary.
+ You must be familiar with the configuration file before proceeding.
+ </center>
+ </td>
+ </tr>
+</table>
+
+<h2>Status</h2>
+<form action="" method="POST">
+<table><tr>
+<td>squid 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>
+
+<h2>Configuration</h2>
+<form action="" method="POST">
+<table>
+<tr><td><textarea name="config" style="width:600px;"><? io.write( service.config ) ?></textarea></td></tr>
+<tr><td><input type="submit" name="cmd" value="save" style="width:600px;"></td></tr>
+</table>
+</form>