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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
<!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 = The URL to be monitored by default (if any) (='$url').
exists = The URL is already monitored (='$exists').
-->
<HEAD>
<TITLE>WWWOFFLE - Pgina Interactiva de Monitorizacin</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 -->
$exists?{$current="The URL <tt>$url</tt> is currently monitored."}{$current="The URL <tt>$url</tt> is not currently monitored."}
<H1 align="center">WWWOFFLE Pgina Interactiva de Monitorizacin</H1>
Puede usar este formulario para monitorizar cualquier URL.
$url?{<p>
$current}{}
<p>
<form action="/monitor-request/" method=post>
Monitor <input type="text" name="url" value="$url" size=60>
<p>
Cuando las siguientes cuatro condiciones sean verdad:
<dl>
<dt>El mes sea:
<dd>
<ul>
<li><input name="mofy1" type="checkbox" $mofy1?{checked}{} value="Y"> Enero
<li><input name="mofy2" type="checkbox" $mofy2?{checked}{} value="Y"> Febrero
<li><input name="mofy3" type="checkbox" $mofy3?{checked}{} value="Y"> Marzo
<li><input name="mofy4" type="checkbox" $mofy4?{checked}{} value="Y"> Abril
<li><input name="mofy5" type="checkbox" $mofy5?{checked}{} value="Y"> Mayo
<li><input name="mofy6" type="checkbox" $mofy6?{checked}{} value="Y"> Junio
<li><input name="mofy7" type="checkbox" $mofy7?{checked}{} value="Y"> Julio
<li><input name="mofy8" type="checkbox" $mofy8?{checked}{} value="Y"> Agosto
<li><input name="mofy9" type="checkbox" $mofy9?{checked}{} value="Y"> Septiembre
<li><input name="mofy10" type="checkbox" $mofy10?{checked}{} value="Y"> Octubre
<li><input name="mofy11" type="checkbox" $mofy11?{checked}{} value="Y"> Noviembre
<li><input name="mofy12" type="checkbox" $mofy12?{checked}{} value="Y"> Diciembre
</ul>
<p>
<dt>El da del mes sea: (por defecto cualquier da)
<dd>
<input type="text" name="dofm" value="$dofm" size=60>
<p>
<dt>El da de la semana sea:
<dd>
<ul>
<li><input name="dofw0" type="checkbox" $dofw0?{checked}{} value="Y"> Domingo
<li><input name="dofw1" type="checkbox" $dofw1?{checked}{} value="Y"> Lunes
<li><input name="dofw2" type="checkbox" $dofw2?{checked}{} value="Y"> Martes
<li><input name="dofw3" type="checkbox" $dofw3?{checked}{} value="Y"> Mircoles
<li><input name="dofw4" type="checkbox" $dofw4?{checked}{} value="Y"> Jueves
<li><input name="dofw5" type="checkbox" $dofw5?{checked}{} value="Y"> Viernes
<li><input name="dofw6" type="checkbox" $dofw6?{checked}{} value="Y"> Sbado
</ul>
<p>
<dt>La hora del da (reloj 24 horas) sea: (por defecto una vez al da)
<dd>
<input type="text" name="hofd" value="$hofd" size=60>
</dl>
<input type="submit" value="Monitorizar Ahora">
</form>
<p>
<hr width="50%">
<p>
You can use this form to stop monitoring any URL.
$url?{<p>
$current}{}
<p>
<form action="/control/delete/mon" method="get">
Stop Monitoring <input type="text" name="url" value="$url" size="60">
<p>
<input type="submit" value="Stop Monitoring">
</form>
<div class="wwwoffle-nav" align="center">
[<a href="/index/monitor/?sort=alpha">Ver la lista de pginas monitorizadas</a>]
</div>
<!-- Standard WWWOFFLE Message Page Footer Start -->
<hr class="wwwoffle-footer">
<div class="wwwoffle-footer" align="center">
WWWOFFLE - [ \
<a href="$localurl/Welcome.html">Pgina de Bienvenida</a>| \
<a href="$localurl/FAQ.html">FAQ</a> \
] - WWWOFFLE
</div>
<!-- Standard WWWOFFLE Message Page Footer End -->
</BODY>
</HTML>
|