Skip to content

Commit

Permalink
status_p.xml values are working in konqueror now
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1614 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
allo committed Feb 11, 2006
1 parent e58b558 commit 5e04b13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions htroot/js/WatchCrawler.js
Expand Up @@ -28,12 +28,12 @@ function handleStatus(){
indexingqueue_size=indexingqueue.firstChild.nextSibling;
indexingqueue_max=indexingqueue_size.nextSibling.nextSibling;
ppm=statusResponse.getElementsByTagName("ppm")[0];*/
status=getFirstChild(statusResponse.firstChild, "status")
indexingqueue=getFirstChild(status, "indexingqueue");
statusTag=getFirstChild(getFirstChild(statusResponse, ""), "status")
indexingqueue=getFirstChild(statusTag, "indexingqueue");

indexingqueue_size=getValue(getFirstChild(indexingqueue, "size"));
indexingqueue_max=getValue(getFirstChild(indexingqueue, "max"));
ppm=getValue(getFirstChild(status, "ppm"));
ppm=getValue(getFirstChild(statusTag, "ppm"))

document.getElementById("indexingqueuesize").firstChild.nodeValue=indexingqueue_size;
document.getElementById("indexingqueuemax").firstChild.nodeValue=indexingqueue_max;
Expand Down

0 comments on commit 5e04b13

Please sign in to comment.