summaryrefslogtreecommitdiffstats
path: root/squid-authentication-html.lsp
diff options
context:
space:
mode:
authorAndreas Brodmann <andreas.brodmann@gmail.com>2007-11-29 19:28:10 +0000
committerAndreas Brodmann <andreas.brodmann@gmail.com>2007-11-29 19:28:10 +0000
commit4bbff2d10dbd88bb8781ada7c6e0549b51032018 (patch)
treee8e14dfc6a303b2e230d589b4eaedb265d53a3ec /squid-authentication-html.lsp
parentd778aa11d469fa8c415c471dfae92272da14d83b (diff)
downloadacf-squid-4bbff2d10dbd88bb8781ada7c6e0549b51032018.tar.bz2
acf-squid-4bbff2d10dbd88bb8781ada7c6e0549b51032018.tar.xz
/acf/squid: daily update on trunk
git-svn-id: svn://svn.alpinelinux.org/acf/squid/trunk@389 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'squid-authentication-html.lsp')
-rw-r--r--squid-authentication-html.lsp105
1 files changed, 105 insertions, 0 deletions
diff --git a/squid-authentication-html.lsp b/squid-authentication-html.lsp
new file mode 100644
index 0000000..1c693f0
--- /dev/null
+++ b/squid-authentication-html.lsp
@@ -0,0 +1,105 @@
+<?
+ 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>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 lets you modify the authentication scheme of squid.<br><br>
+
+<h1>Status</h1>
+<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><br>
+
+<form action="" method="POST">
+<h1>Configuration</h1>
+
+<h2>Authentication Scheme</h2>
+Choose the desired authentication mechanisms and their order.<br><br>
+
+<input type="hidden" name="authmethod" value="<? io.write( config.authmethod.value ) ?>">
+<table>
+<tr><td>
+ <table><tr><td>
+ <input type="submit" value="^">
+ </td></tr><tr><td>
+ <input type="submit" value="v">
+ </td></tr></table>
+</td><td>
+ <b>Active</b><br>
+ <select name="tmpauth" size="5" style="width:150px;">
+ <?
+ local lap = 1
+ local method = config.authmethod.value
+ if #config.authmethod.value > 0 then
+ while lap <= #config.authmethod.value do
+ if string.sub( method, lap, lap ) == "D" then
+ io.write( "<option value=\"D\">Digest</option>\n" )
+ elseif string.sub( method, lap, lap ) == "N" then
+ io.write( "<option value=\"N\">NTLM</option>\n" )
+ elseif string.sub( method, lap, lap ) == "B" then
+ io.write( "<option value=\"B\">Basic</option>\n" )
+ end
+ lap = lap + 1
+ end
+ end
+ ?>
+ </select>
+</td><td>
+ <table border="0"><tr><td>
+ <input type="submit" value=" << ">
+ </td></tr><tr><td>
+ <input type="submit" value=" >> ">
+ </td></tr></table>
+</td><td>
+ <b>Selectable</b><br>
+ <select name="tmpempty" size="5" style="width:150px;">
+<?
+ if string.match( config.authmethod.value, "D" ) == nil then
+ io.write( "<option value=\"D\">Digest</option>\n" )
+ end
+ if string.match( config.authmethod.value, "N" ) == nil then
+ io.write( "<option value=\"N\">NTLM</option>\n" )
+ end
+ if string.match( config.authmethod.value, "B" ) == nil then
+ io.write( "<option value=\"B\">Basic</option>\n" )
+ end
+?>
+ </select>
+</td></tr>
+</table><br>
+
+<input type="submit" name="cmd" value="save" style="width:100px"><br>
+</form><br>
+