More links

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1603 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
allo 2006-02-10 19:28:28 +00:00
parent f008dfe16e
commit a1e1aa039c

View File

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