summaryrefslogtreecommitdiffstats
path: root/squid-basic-html.lsp
diff options
context:
space:
mode:
authorAndreas Brodmann <andreas.brodmann@gmail.com>2007-11-20 19:47:58 +0000
committerAndreas Brodmann <andreas.brodmann@gmail.com>2007-11-20 19:47:58 +0000
commitb2a4c830601186377d8999bac02ea465fd704e66 (patch)
treeb0b5fe21c3d156daaa3fe2cacc06135dad30b8e4 /squid-basic-html.lsp
parent5c0d2431db19eb77acc9e9b76ae0010e40240dcc (diff)
downloadacf-squid-b2a4c830601186377d8999bac02ea465fd704e66.tar.bz2
acf-squid-b2a4c830601186377d8999bac02ea465fd704e66.tar.xz
initial import of acf-squidv1.0_alpha1
git-svn-id: svn://svn.alpinelinux.org/acf/squid/trunk@350 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'squid-basic-html.lsp')
-rw-r--r--squid-basic-html.lsp40
1 files changed, 40 insertions, 0 deletions
diff --git a/squid-basic-html.lsp b/squid-basic-html.lsp
new file mode 100644
index 0000000..941dfba
--- /dev/null
+++ b/squid-basic-html.lsp
@@ -0,0 +1,40 @@
+<?
+ 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</h1>
+Squid is a web proxy server. It makes web requests in behalf of the client, and
+inspecting the returned and optionally caches that content so that the next time
+a client request is made, the content can be served from local disk. This can make
+web surfing faster. Squid can also forward its requests on to a content filter,
+such as DansGuardian.<br><br>
+This page determines the general operational settings for squid.<br>
+
+<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>
+
+<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>