You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.9 KiB
73 lines
2.9 KiB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<script type="text/javascript" src="js/ajax.js"></script>
|
|
<title>YaCy '#[clientname]#': Steering</title>
|
|
#%env/templates/metas.template%#
|
|
</head>
|
|
<body style="margin:40px;text-align:center;">
|
|
|
|
<script type="text/javascript">
|
|
<!--
|
|
var ro;
|
|
|
|
function pingPeer() {
|
|
ro = createRequestObject();
|
|
var url = "yacy/hello.html" + '?' + Math.random();
|
|
ro.open("Get",url,true);
|
|
ro.onreadystatechange = callback;
|
|
ro.send(null);
|
|
document.getElementById("status").innerHTML = 'Checking peer status...';
|
|
}
|
|
|
|
function callback() {
|
|
if (ro.readyState == 4) {
|
|
if(ro.status == 200) {
|
|
document.getElementById("status").innerHTML = 'Peer is online again, forwarding to status page...';
|
|
window.location.replace('Status.html');
|
|
} else {
|
|
isDown = true;
|
|
document.getElementById("status").innerHTML = 'Peer is not online yet, will check again in a few seconds...';
|
|
}
|
|
}
|
|
}
|
|
|
|
function setPingInterval() {
|
|
window.setInterval('pingPeer()', 5000);
|
|
pingPeer();
|
|
}
|
|
|
|
//-->
|
|
</script>
|
|
|
|
|
|
<p><img src="env/grafics/kaskelix_exit.png" alt="Kaskelix"/></p>
|
|
#(info)#
|
|
<p><b>No action submitted</b><br />
|
|
Go back to the <a href="Settings_p.html">Settings</a> page</p>
|
|
::
|
|
<p><b>Your system is not protected by a password</b><br />
|
|
Please go to the <a href="/ConfigAccounts_p.html">User Administration</a> page and set an administration password.</p>
|
|
::
|
|
<p><b>You don't have the correct access right to perform this task.</b><br />
|
|
Please log in.<br />
|
|
You can now go back to the <a href="Settings_p.html">Settings</a> page if you want to make more changes.</p>
|
|
::
|
|
<h2>See you soon!</h2>
|
|
<p>Application will terminate after working off all scheduled tasks.</p>
|
|
::
|
|
<h2>Just a moment, please!</h2>
|
|
<p>Application will terminate after working off all scheduled tasks.<br />
|
|
Then YaCy will restart.<br />
|
|
If you can't reach YaCy's interface after 5 minutes restart failed.</p>
|
|
<script type="text/javascript">window.setTimeout('setPingInterval()', 60000);</script>
|
|
<div id="status"></div>
|
|
::
|
|
<h2>Just a moment, please!</h2>
|
|
<p><b>Installing release #[release]#</b><br />
|
|
YaCy will be restarted after installation.</p>
|
|
<script type="text/javascript">window.setTimeout('setPingInterval()', 60000);</script>
|
|
<div id="status"></div>
|
|
#(/info)#
|
|
</body>
|
|
</html> |