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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<!--
Available WWWOFFLE Variables (all with a '$' prefix).
localurl = The root URL of the server running wwwoffled (='$localurl').
version = The version of the WWWOFFLE server (='$version').
url = Set if we requested to delete URLs. (='$url').
mon = Set if we requested to delete monitored URLs (='$mon').
req = Set if we requested to delete outgoing URLs (='$req').
path = Set to the path that this request form is. (='$path').
hash = Set to the hash that this request included. (='$hash').
-->
<HEAD>
$url?{<TITLE>WWWOFFLE - Control Delete URLs Page</TITLE>}{}
$mon?{<TITLE>WWWOFFLE - Control Delete Monitored URLs Page</TITLE>}{}
$req?{<TITLE>WWWOFFLE - Control Delete Outgoing URLs Page</TITLE>}{}
<LINK href="$localurl/wwwoffle.css" type="text/css" rel="stylesheet">
</HEAD>
<BODY class="wwwoffle-message">
<!-- Standard WWWOFFLE Message Page Header Start -->
<div class="wwwoffle-header" align="center">
<b>WWWOFFLE</b> <b>-</b> <b>W</b>orld <b>W</b>ide <b>W</b>eb <b>Offl</b>ine <b>E</b>xplorer <b>-</b> <b>v$version</b>
</div>
<hr class="wwwoffle-header">
<!-- Standard WWWOFFLE Message Page Header End -->
$url?{<H1 align="center">WWWOFFLE Control Delete URLs Page</H1>}{}
$mon?{<H1 align="center">WWWOFFLE Control Delete Monitored URLs Page</H1>}{}
$req?{<H1 align="center">WWWOFFLE Control Delete Outgoing URLs Page</H1>}{}
<div class="wwwoffle-message" align="center">
$url?{
Your request to delete cached URLs produced the following
}{}
$mon?{
Your request to delete monitored URLs produced the following
}{}
$req?{
Your request to delete outgoing requests produced the following
}{}
</div>
<p>
<form action="$path" method="post">
$hash?{<input type="hidden" name="hash" value="$hash">}{}
<dl>
<!-- This is just the head of this page since the body is generated separately -->
|