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
|
<!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').
-->
<HEAD>
<TITLE>WWWOFFLE - Interactive Control 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 -->
<H1 align="center">WWWOFFLE Interactive Control Page</H1>
The <tt>wwwoffled</tt> demon program can be controlled from here.
<h2>Command Line Replacements</h2>
All of the control actions available in the <tt>wwwoffle</tt> program are here.
<p>
<form action="$localurl/control/online" method=post>
<input type="hidden" name=action value="online">
<input type="submit" value="Online"> Put the <tt>wwwoffled</tt> program online.
</form>
<p>
<form action="$localurl/control/autodial" method=post>
<input type="hidden" name=action value="autodial">
<input type="submit" value="Autodial"> Put the <tt>wwwoffled</tt> program in the autodial mode.
</form>
<p>
<form action="$localurl/control/offline" method=post>
<input type="hidden" name=action value="offline">
<input type="submit" value="Offline"> Put the <tt>wwwoffled</tt> program offline.
</form>
<p>
<form action="$localurl/control/fetch" method=post>
<input type="hidden" name=action value="fetch">
<input type="submit" value="Fetch"> Fetch the pages that <tt>wwwoffled</tt> has pending.
</form>
<p>
<form action="$localurl/control/purge" method=post>
<input type="hidden" name=action value="purge">
<input type="submit" value="Purge"> Force the <tt>wwwoffled</tt> cache to be purged.
</form>
<p>
<form action="$localurl/control/status" method=post>
<input type="hidden" name=action value="status">
<input type="submit" value="Status"> Get the status of the <tt>wwwoffled</tt> server.
</form>
<h2>The Configuration File</h2>
The configuration file <tt>wwwoffle.conf</tt> can be edited on the following pages.
<p>
<a href="$localurl/control/edit/">Traditional</a>: One web page with all sections
individually editable.
<br>
<a href="$localurl/configuration/">Modern</a>: Easy to use with lists of sections, items
in each section and editing of individual entries for each item.
<p>
<form action="$localurl/control/config" method=post>
<input type="hidden" name=action value="config">
<input type="submit" value="Config"> Force <tt>wwwoffled</tt> to re-read the configuration file.
</form>
<!-- Standard WWWOFFLE Message Page Footer Start -->
<hr class="wwwoffle-footer">
<div class="wwwoffle-footer" align="center">
WWWOFFLE - [ \
<a href="$localurl/Welcome.html" title="An introduction to WWWOFFLE">Welcome Page</a>| \
<a href="$localurl/FAQ.html" title="Frequently Asked Questions about WWWOFFLE">FAQ</a> \
] - WWWOFFLE
</div>
<!-- Standard WWWOFFLE Message Page Footer End -->
</BODY>
</HTML>
|