Last change
on this file was 62, checked in by Kris Deugau, 9 years ago |
/trunk/uribl
Commit accumulated tweaks and fixes from production:
- add "use Encode;" and set the HTTP charset header to deal with
non-ASCII more sanely
- reorder mangling of request-URI components a little so we can
symlink index.cgi -> uridb.cgi
- collapse results from extract-data showing a hit on some other
DNSBL into a single field rather than just treating it as
"another domain" that needs to be hand-reflagged as "don't list"
- use POST for form submissions; mainly to clean up the working URL
|
File size:
1.3 KB
|
Rev | Line | |
---|
[27] | 1 | <html>
|
---|
| 2 | <head>
|
---|
| 3 | <title><TMPL_IF pgtitle><TMPL_VAR pgtitle><TMPL_ELSE>DNSBL database</TMPL_IF> - adding <TMPL_VAR NAME=ip></title>
|
---|
| 4 | <link rel="stylesheet" type="text/css" href="templates/dnsbl.css">
|
---|
| 5 | </head>
|
---|
| 6 | <body>
|
---|
| 7 | <TMPL_VAR NAME=pgcomment><br>
|
---|
| 8 | <a href="<TMPL_VAR NAME=uridbsiteroot>">Back</a>
|
---|
[62] | 9 | <form action="<TMPL_VAR NAME=cgiself>" method="POST">
|
---|
[27] | 10 | <input type=hidden name=page value="dbreport">
|
---|
| 11 | <table border=1>
|
---|
[62] | 12 | <tr><td colspan=2> </td><td colspan=4 align=center>List as:</td></tr>
|
---|
| 13 | <tr><td>Domain</td><td>Other lists</td><td>Don't list</td><td>Black</td><td>Grey</td><td>URL shortener</td><td>Comment</td></tr>
|
---|
[27] | 14 | <TMPL_LOOP NAME=domlist>
|
---|
| 15 | <tr>
|
---|
| 16 | <td><TMPL_VAR NAME=domain><input type=hidden name=dom<TMPL_VAR NAME=domindex> value="<TMPL_VAR NAME=domain>"></td>
|
---|
[62] | 17 | <td><TMPL_VAR NAME=otherlists></td>
|
---|
[27] | 18 | <td align="center"><input type=radio name=dom<TMPL_VAR NAME=domindex>type value="0"></td>
|
---|
| 19 | <td align="center"><input type=radio name=dom<TMPL_VAR NAME=domindex>type value="2" checked></td>
|
---|
| 20 | <td align="center"><input type=radio name=dom<TMPL_VAR NAME=domindex>type value="4"></td>
|
---|
| 21 | <td align="center"><input type=radio name=dom<TMPL_VAR NAME=domindex>type value="8"></td>
|
---|
| 22 | <td><input name=dom<TMPL_VAR NAME=domindex>comment></td>
|
---|
| 23 | </tr>
|
---|
| 24 | </TMPL_LOOP>
|
---|
| 25 | <tr><td colspan=5 align=center><input type=submit></td></tr>
|
---|
| 26 | </table>
|
---|
| 27 | </form>
|
---|
| 28 | </body>
|
---|
| 29 | </html>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.