summaryrefslogtreecommitdiffstats
path: root/squid-status-html.lsp
blob: 806318f562177bfa98e34216b9a4082df81b6411 (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
<? local form = ... 
require("viewfunctions")
?>

<?
--[[ DEBUG INFORMATION
io.write("<H1>DEBUGGING</H1><span style='color:red'><H2>DEBUG INFO: CFE</H2>")
io.write(html.cfe_unpack(form))
io.write("</span>")
--]]
?>

<H1>SYSTEM INFO</H1>
<DL>
<? 
local myform = form.info
local tags = { "status", "version", "autostart", }
displayinfo(myform,tags,"viewonly")
?>
</DL>

<H2>General information</H2>
<p>
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.</p>