|
|
|
@ -112,11 +112,10 @@ function handleStatus(){
|
|
|
|
|
document.getElementById("postprocessing_webgraph").firstChild.nodeValue=getValue(getFirstChild(postprocessing, "webgraphRemainingCount"));
|
|
|
|
|
document.getElementById("postprocessing_remainingTimeMinutes").firstChild.nodeValue=getValue(getFirstChild(postprocessing, "remainingTimeMinutes"));
|
|
|
|
|
document.getElementById("postprocessing_remainingTimeSeconds").firstChild.nodeValue=getValue(getFirstChild(postprocessing, "remainingTimeSeconds"));
|
|
|
|
|
postprocessingElapsedTime=getValue(getFirstChild(postprocessing, "postprocessingElapsedTime"));
|
|
|
|
|
postprocessingRemainingTime=getValue(getFirstChild(postprocessing, "postprocessingRemainingTime"));
|
|
|
|
|
p = 100 * postprocessingElapsedTime / (postprocessingElapsedTime + postprocessingRemainingTime);
|
|
|
|
|
bar="<progress id='postprocessingBar' max='" + p + "' value='100' style='width:94%;'/>";
|
|
|
|
|
document.getElementById("postprocessing_bar").firstChild.nodeValue=bar;
|
|
|
|
|
postprocessingElapsedTime=parseInt(getValue(getFirstChild(postprocessing, "ElapsedTime")));
|
|
|
|
|
postprocessingRemainingTime=parseInt(getValue(getFirstChild(postprocessing, "RemainingTime")));
|
|
|
|
|
p = 100 * postprocessingElapsedTime / (postprocessingElapsedTime + postprocessingRemainingTime) || 0;
|
|
|
|
|
document.getElementById("postprocessing_bar").firstChild.setAttribute("value", p);
|
|
|
|
|
//document.getElementById("postprocessing_speed").firstChild.nodeValue=getValue(getFirstChild(postprocessing, "speed"));
|
|
|
|
|
|
|
|
|
|
load=getFirstChild(statusTag, "load");
|
|
|
|
|