2006-10-25 02:41:41 +00:00
|
|
|
<?
|
|
|
|
/*
|
|
|
|
This file is part of the 'Science Fair In A Box' project
|
|
|
|
SFIAB Website: http://www.sfiab.ca
|
|
|
|
|
|
|
|
Copyright (C) 2005 Sci-Tech Ontario Inc <info@scitechontario.org>
|
|
|
|
Copyright (C) 2005 James Grant <james@lightbox.org>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public
|
|
|
|
License as published by the Free Software Foundation, version 2.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this pr<input type=\"submit\" value=\"".i18n("Save Configuration")."\" />\n";
|
|
|
|
ogram; see the file COPYING. If not, write to
|
|
|
|
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<?
|
|
|
|
require("../common.inc.php");
|
2007-11-18 23:50:23 +00:00
|
|
|
send_header("Scheduler Status",
|
|
|
|
array('Committee Main' => 'committee_main.php',
|
|
|
|
'Administration' => 'admin/index.php',
|
|
|
|
'Judges' => 'admin/judges.php')
|
|
|
|
);
|
2007-12-10 20:53:41 +00:00
|
|
|
require_once("../ajax.inc.php");
|
2006-10-25 02:41:41 +00:00
|
|
|
?>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2006-10-25 19:10:27 +00:00
|
|
|
var starttime=0;
|
|
|
|
var startpercent=0;
|
|
|
|
var deltatime=0;
|
|
|
|
var deltapercent=0;
|
|
|
|
var avgtimeperpercent=0;
|
|
|
|
var remainingpercent=0;
|
|
|
|
var remainingtime=0;
|
2006-10-25 02:41:41 +00:00
|
|
|
|
|
|
|
function updateStatus()
|
|
|
|
{
|
2006-10-25 03:19:54 +00:00
|
|
|
document.getElementById('updatestatus').innerHTML="Updating...";
|
2006-10-25 02:41:41 +00:00
|
|
|
var url="judges_scheduler_status_output.php";
|
|
|
|
http.open("GET",url,true);
|
2008-04-14 00:16:52 +00:00
|
|
|
http.readystate=0;
|
2006-10-25 02:41:41 +00:00
|
|
|
http.onreadystatechange=handleResponse;
|
|
|
|
http.send(null);
|
|
|
|
}
|
|
|
|
|
2006-10-25 03:19:54 +00:00
|
|
|
function clearUpdatingMessage()
|
|
|
|
{
|
|
|
|
document.getElementById('updatestatus').innerHTML="Waiting...";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-10-25 02:41:41 +00:00
|
|
|
function handleResponse()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
|
|
|
|
if(http.readyState==4)
|
|
|
|
{
|
|
|
|
var obj=http.responseText.split(":");
|
|
|
|
document.getElementById('schedulerstatus').innerHTML=obj[1];
|
2006-10-25 03:19:54 +00:00
|
|
|
if(obj[0]=="-1")
|
|
|
|
{
|
|
|
|
document.getElementById('schedulerpercent').innerHTML="100%";
|
|
|
|
document.getElementById('updatestatus').innerHTML="Scheduling Complete";
|
2006-10-25 19:10:27 +00:00
|
|
|
document.getElementById('schedulereta').innerHTML="Complete";
|
2006-10-25 03:19:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
document.getElementById('schedulerpercent').innerHTML=obj[0]+"%";
|
|
|
|
setTimeout('updateStatus()',5000);
|
|
|
|
document.getElementById('updatestatus').innerHTML="Updating... Done!";
|
|
|
|
setTimeout('clearUpdatingMessage()',500);
|
2006-10-25 19:10:27 +00:00
|
|
|
|
|
|
|
var currentTime=new Date();
|
|
|
|
if(starttime==0)
|
|
|
|
{
|
|
|
|
starttime=currentTime.getTime();
|
|
|
|
startpercent=obj[0];
|
|
|
|
}
|
|
|
|
deltatime=currentTime.getTime()-starttime;
|
|
|
|
deltapercent=obj[0]-startpercent;
|
|
|
|
|
|
|
|
avgtimeperpercent=deltatime/deltapercent;
|
|
|
|
remainingpercent=100-obj[0];
|
|
|
|
remainingtime=remainingpercent*avgtimeperpercent;
|
|
|
|
if(remainingtime && obj[0]>0)
|
|
|
|
document.getElementById('schedulereta').innerHTML=Math.round(remainingtime/1000)+" seconds";
|
|
|
|
else
|
|
|
|
document.getElementById('schedulereta').innerHTML="Calculating...";
|
2006-10-25 03:19:54 +00:00
|
|
|
}
|
2006-10-25 02:41:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(e)
|
|
|
|
{
|
|
|
|
alert('caught error'+e);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<?
|
|
|
|
if($config['judge_scheduler_percent']=="-1")
|
|
|
|
{
|
|
|
|
echo i18n("The judge scheduler is not currently running");
|
|
|
|
echo "<br />";
|
|
|
|
echo "<br />";
|
|
|
|
echo "<a href=\"judges_schedulerconfig.php\">".i18n("Judges Scheduler Configuration")."</a>";
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo "<table>";
|
|
|
|
echo "<tr><td>".i18n("Scheduler status").":</td><td><div id=\"schedulerstatus\" style=\"font-weight: bold;\"></div></td></tr>";
|
|
|
|
echo "<tr><td>".i18n("Scheduler percent").":</td><td><div id=\"schedulerpercent\" style=\"font-weight: bold;\"></div></td></tr>";
|
2006-10-25 19:10:27 +00:00
|
|
|
echo "<tr><td>".i18n("Scheduler ETA").":</td><td><div id=\"schedulereta\" style=\"font-weight: bold;\"></div></td></tr>";
|
2006-10-25 03:19:54 +00:00
|
|
|
echo "<tr><td align=\"center\" colspan=\"2\"><div id=\"updatestatus\" style=\"font-weight: bold; text-align: center;\"></div></td></tr>";
|
2006-10-25 02:41:41 +00:00
|
|
|
echo "</table>";
|
2006-10-25 03:19:54 +00:00
|
|
|
|
|
|
|
echo "<br />";
|
2007-12-27 00:40:59 +00:00
|
|
|
echo i18n("When scheduling is finished, the following links will be useful");
|
2006-10-25 03:19:54 +00:00
|
|
|
echo "<br />";
|
|
|
|
echo "<a href=\"judges_teams.php\">".i18n("Manage Judge Teams")."</a>";
|
|
|
|
echo "<br />";
|
|
|
|
echo "<a href=\"judges_teams_members.php\">".i18n("Manage Judge Members")."</a>";
|
|
|
|
echo "<br />";
|
|
|
|
echo "<a href=\"reports.php\">".i18n("Print/Export Reports")."</a>";
|
|
|
|
echo "<br />";
|
|
|
|
echo "<br />";
|
|
|
|
P
|
2006-10-25 02:41:41 +00:00
|
|
|
?>
|
|
|
|
<script type="text/javascript">updateStatus()</script>
|
|
|
|
<?
|
|
|
|
}
|
|
|
|
send_footer();
|
|
|
|
|
|
|
|
?>
|