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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML>
<!--
Available WWWOFFLE Variables (all with a '$' prefix).
localhost = The hostname of the server running wwwoffled (='$localhost').
url = The URL that was asked for (or none) (='$url').
The FetchOptions section of the config file:
stylesheets (='$stylesheets').
images (='$images').
frames (='$frames').
scripts (='$scripts').
objects (='$objects').
-->
<HEAD>
<TITLE>WWWOFFLE - Interactive Refresh Form</TITLE>
</HEAD>
<BODY>
<H1 align=center>WWWOFFLE Interactive Refresh Form</H1>
You can use this form to refresh or fetch any URL, either a single one or by following links recursively.
<p>
<form action="/refresh-request/" method=post>
Fetch <select name="method">
<option value="-none" selected>this URL only
<option value="-dir-1" >recursively to depth 1 in the same directory
<option value="-dir-2" >recursively to depth 2 in the same directory
<option value="-dir-3" >recursively to depth 3 in the same directory
<option value="-dir-4" >recursively to depth 4 in the same directory
<option value="-dir-5" >recursively to depth 5 in the same directory
<option value="-host-1" >recursively to depth 1 on the same host
<option value="-host-2" >recursively to depth 2 on the same host
<option value="-host-3" >recursively to depth 3 on the same host
<option value="-host-4" >recursively to depth 4 on the same host
<option value="-any-1" >recursively to depth 1 on any host
<option value="-any-2" >recursively to depth 2 on any host
<option value="-any-3" >recursively to depth 3 on any host
</select>
<br>
<input type="text" name="url" value="$url" size=60>
<br>
<input name="stylesheets" type="checkbox" value="-stylesheets" $stylesheets?{checked}{}>
Fetch stylesheets in the pages
<br>
<input name="images" type="checkbox" value="-images" $images?{checked}{}>
Fetch images in the pages
<br>
<input name="frames" type="checkbox" value="-frames" $frames?{checked}{}>
Fetch frames in the pages
<br>
<input name="scripts" type="checkbox" value="-scripts" $scripts?{checked}{}>
Fetch scripts in the pages
<br>
<input name="objects" type="checkbox" value="-objects" $objects?{checked}{}>
Fetch objects in the pages
<br>
<input name="force" type="checkbox" value="-force">
Force refresh even if already cached
<br>
<input type="submit" value="Fetch Now">
</form>
<p>
Notes:
<ol>
<li>The default protocol is http if none is specified.
<li>To get a directory listing using ftp make sure that the path ends with '/'.
<li>To finger user@remote.host you should enter the URL as finger://remote.host/user.
</ol>
<!--
Useful WWWOFFLE Buttons
$Welcome = http://$localhost/Welcome.html
$FAQ = http://$localhost/FAQ.html
$Outgoing = http://$localhost/index/outgoing/?none
-->
<p align=center>
+[<a href="$Outgoing">Outgoing Requests</a>|<a href="$Welcome">Welcome Page</a>|<a href="$FAQ">FAQ</a>]
</p>
</BODY>
</HTML>
|