git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1603 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
allo 19 years ago
parent f008dfe16e
commit a1e1aa039c

@ -110,16 +110,18 @@ function createRow(initiator, depth, modified, anchor, url, size, hash){
row.appendChild(createCol(depth)); row.appendChild(createCol(depth));
row.appendChild(createCol(modified)); row.appendChild(createCol(modified));
row.appendChild(createCol(anchor)); row.appendChild(createCol(anchor));
row.appendChild(createCol(url)); row.appendChild(createLinkCol(url, url));
row.appendChild(createCol(size)); row.appendChild(createCol(size));
row.appendChild(createLinkCol("IndexCreateIndexingQueue_p.html?deleteEntry="+hash, DELETE_STRING));
//create delete link return row;
}
function createLinkCol(url, linktext){
col=document.createElement("td"); col=document.createElement("td");
link=document.createElement("a"); link=document.createElement("a");
link.setAttribute("href", "IndexCreateIndexingQueue_p.html?deleteEntry="+hash); link.setAttribute("href", url);
text=document.createTextNode(DELETE_STRING); link.setAttribute("target", "_blank");
text=document.createTextNode(linktext);
link.appendChild(text); link.appendChild(text);
col.appendChild(link) col.appendChild(link)
row.appendChild(col); return col
return row;
} }

Loading…
Cancel
Save