diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/echolot.html | 8 | ||||
-rw-r--r-- | templates/fromlinesindex.html | 57 |
2 files changed, 64 insertions, 1 deletions
diff --git a/templates/echolot.html b/templates/echolot.html index 82d710c..2fdce0b 100644 --- a/templates/echolot.html +++ b/templates/echolot.html @@ -3,7 +3,7 @@ <title>Remailer Reliability Stats [<TMPL_VAR NAME="SITE_NAME">]</title> <META HTTP-EQUIV="Expires" CONTENT="<TMPL_VAR NAME="EXPIRES">"> <link href="echolot.css" rel="stylesheet" type="text/css"> - <!-- $Id: echolot.html,v 1.10 2002/12/03 02:59:13 weasel Exp $ --> + <!-- $Id: echolot.html,v 1.11 2003/02/18 06:38:13 weasel Exp $ --> </head> <body> <h1>Remailer Reliability Stats [<TMPL_VAR NAME="SITE_NAME">]</h1> @@ -122,6 +122,12 @@ over 98.0% in terms of overall reliability. Find the Thesaurus index in <a href="thesaurus/">thesaurus/</a>. </TMPL_IF> +<h2>From Header Lines</h2> + +A summary of <a href="from.html">From Headers/</a> each remailer uses has also +been compiled. It also lists which remailers allow setting the From: Header. +</TMPL_IF> + <hr> Created by <a href="http://www.palfrader.org/echolot/">Echolot <TMPL_VAR NAME="version"></a> at <TMPL_VAR NAME="CURRENT_TIMESTAMP"> (individual pages diff --git a/templates/fromlinesindex.html b/templates/fromlinesindex.html new file mode 100644 index 0000000..65dc884 --- /dev/null +++ b/templates/fromlinesindex.html @@ -0,0 +1,57 @@ +<html> +<head> + <title>From Headers [<TMPL_VAR NAME="SITE_NAME">]</title> + <META HTTP-EQUIV="Expires" CONTENT="<TMPL_VAR NAME="EXPIRES">"> + <link href="echolot.css" rel="stylesheet" type="text/css"> + <!-- $Id: fromlinesindex.html,v 1.1 2003/02/18 06:38:34 weasel Exp $ --> +</head> +<body> +<h1>From Headers [<TMPL_VAR NAME="SITE_NAME">]</h1> + +<p> +<a href="./">Up</a> + +<h2>Default From: Headers</h2> +<p> +<table border=1> + +<tr><tr><th>nick</th><th>From Lines</th><th>type</th></tr> + +<TMPL_LOOP NAME="default"> + <TMPL_LOOP NAME="data"> + <tr> + <td><TMPL_VAR NAME="nick"></td> + <td><TMPL_VAR NAME="from"></td> + <td><small><TMPL_VAR NAME="types"></small></td> + </tr> + </TMPL_LOOP> +</TMPL_LOOP> + +</table> + +<h2>User Supplied From: Headers</h2> +<p> +<table border=1> + +<tr><tr><th>nick</th><th>From Lines</th><th>type</th></tr> + +<TMPL_LOOP NAME="usersupplied"> + <TMPL_LOOP NAME="data"> + <tr> + <td><TMPL_VAR NAME="nick"></td> + <td><TMPL_VAR NAME="from"></td> + <td><small><TMPL_VAR NAME="types"></small></td> + </tr> + </TMPL_LOOP> +</TMPL_LOOP> + +</table> + +<hr> +Created by <a href="http://www.palfrader.org/echolot/">Echolot <TMPL_VAR NAME="version"></a>.<br> +Last update: <TMPL_VAR NAME="CURRENT_TIMESTAMP">. +</body> + +<!-- vim:set ts=2: --> +<!-- vim:set shiftwidth=2: --> +</html> |