Update error pages to valid XHTML format

Also change some text and how the messages are displayed,
to look better.
This commit is contained in:
Mukund Sivaraman 2008-07-14 11:58:19 +05:30
parent 7751efc218
commit 922e0be574
3 changed files with 137 additions and 58 deletions

View File

@ -1,48 +1,56 @@
<html> <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head> <head>
<title> <title>{cause}</title>
Request failed - {cause} <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</title>
</head> </head>
<body> <body>
<center>{cause}</center>
<blockquote> <h1>HTTP proxy error</h1>
The request you made failed. Here are the error variables:
<dt> <p>The following error has occured at the HTTP proxy: {detail}</p>
request
<dd> <p>Here are the error variables:</p>
{request}
<dt> <dl>
cause
<dd> <dt>request</dt>
{cause} <dd>{request}</dd>
<dt>
clientip <dt>cause</dt>
<dd> <dd>{cause}</dd>
{clientip}
<dt> <dt>clientip</dt>
clienthost <dd>{clientip}</dd>
<dd>
{clienthost} <dt>clienthost</dt>
<dt> <dd>{clienthost}</dd>
version
<dd> <dt>version</dt>
{version} <dd>{version}</dd>
<dt>
package <dt>package</dt>
<dd> <dd>{package}</dd>
{package}
<dt> <dt>date</dt>
date <dd>{date}</dd>
<dd>
{date} <dt>detail</dt>
<dt> <dd>{detail}</dd>
detail
<dd> <dt>url</dt>
{detail} <dd>{url}</dd>
<dt>
url </dl>
<dd>
{url} <hr />
<p><em>Generated by {package} ({version})</em></p>
</body> </body>
</html> </html>

View File

@ -1,7 +1,23 @@
<html><head><title>{cause}</title></head> <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>{cause}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body> <body>
<font size=\+2\>Cache Error!</font><br>
The following error has occured: {detail} <h1>HTTP proxy error</h1>
<hr>
<font size=\-1\><em>Generated by {package} ({version})</em></font> <p>The following error has occured at the HTTP proxy: {detail}</p>
</body></html>
<hr />
<p><em>Generated by {package} ({version})</em></p>
</body>
</html>

View File

@ -1,10 +1,65 @@
<html><head><title>{package} ({version}) stats</title></head> <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>{package} {version} run-time statistics</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css" media="screen" title="Mukund theme">
<!--/*--><![CDATA[<!--*/
th, td
{
text-align: left;
padding: 0.5em;
border: 1px solid gray;
}
/*]]>*/-->
</style>
</head>
<body> <body>
<center><h2>{package} ({version}) run-time statistics</h2></center><hr>
<blockquote> <h2>{package} {version} run-time statistics</h2>
Number of open connections: {opens}<br>
Number of requests: {reqs}<br> <table>
Number of bad connections: {badconns}<br>
Number of denied connections: {deniedconns}<br> <tr>
Number of refused connections due to high load: {refusedconns}<br> <th>Name</th>
</blockquote></body></html> <th>Value</th>
</tr>
<tr>
<td>Number of open connections</td>
<td>{opens}</td>
</tr>
<tr>
<td>Number of requests</td>
<td>{reqs}</td>
</tr>
<tr>
<td>Number of bad connections</td>
<td>{badconns}</td>
</tr>
<tr>
<td>Number of denied connections</td>
<td>{deniedconns}</td>
</tr>
<tr>
<td>Number of refused connections due to high load</td>
<td>{refusedconns}</td>
</tr>
</table>
</body>
</html>