yacy_search_server/htroot/js/WatchCrawler.js
allo 749f44d144 LiveUpdate.
(this does not work correctly at the Moment :-/)


git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1003 6c8d7289-2bf4-0310-a012-ef5d649a1542
2005-10-29 10:52:21 +00:00

42 lines
1.5 KiB
JavaScript

function handleResponse(){
if(http.readyState == 4){
var response = http.responseXML;
indexingTable=document.getElementById("indexingTable");
entries=response.getElementsByTagName("entry");
//skip the Tableheade
row=indexingTable.firstChild.nextSibling.nextSibling;
while(row != null){ //delete old entries
indexingTable.removeChild(row);
row=indexingTable.firstChild.nextSibling.nextSibling;
}
dark=false;
for(i=0;i<entries.length;i++){
row=document.createElement("tr");
//simply add all fields chronologically
//TODO: add them by Name
field=entries[i].firstChild;
while(field != null){
if(field.nodeType == 1 && field.firstChild!=null && field.nodeName != "inProcess"){//Element
col=document.createElement("td");
text=document.createTextNode(field.firstChild.nodeValue);
col.appendChild(text);
row.appendChild(col);
}
field=field.nextSibling;
}
if(dark){
row.setAttribute("class", "TableCellDark");
}else{
row.setAttribute("class", "TableCellLight");
}
indexingTable.appendChild(row);
dark=!dark;
}
}
}
window.setInterval("sndReq('/xml/queues/indexing_p.xml')", 5000);