summaryrefslogtreecommitdiff
path: root/htroot/yacyinteractive.html
diff options
context:
space:
mode:
authororbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542>2009-02-23 07:59:11 +0000
committerorbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542>2009-02-23 07:59:11 +0000
commit7cfab2ee9a18f2aecd2a306c16a075a376445830 (patch)
tree1b0fa66676d86009873e9513bdbec676ccdd155c /htroot/yacyinteractive.html
parent4693495bbe04ee4bb81dc1a793c2ea5994fc3f87 (diff)
added a size field to the search results. The file size is now shown in the html search page and the yacyinteractive. The field is presen in the rss and json
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5638 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/yacyinteractive.html')
-rw-r--r--htroot/yacyinteractive.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/htroot/yacyinteractive.html b/htroot/yacyinteractive.html
index 60d61f23e..a84e77543 100644
--- a/htroot/yacyinteractive.html
+++ b/htroot/yacyinteractive.html
@@ -54,11 +54,13 @@ function updatepage(str) {
html += "<table class=\"networkTable\" border=\"0\" cellpadding=\"2\" cellspacing=\"1\" width=\"99%\">";
html += "<tr class=\"TableHeader\" valign=\"bottom\">";
html += "<td width=\"30%\">Name</td>";
+ html += "<td width=\"60\">Size</td>";
//html += "<td>Description</td>";
html += "<td>Link</td></tr>";
for (var i = 0; i < firstChannel.items.length; i++) {
item = firstChannel.items[i];
html += "<tr class=\"TableCellLight\"><td>"+ item.title + "</td>";
+ html += "<td align=\"right\">" + item.sizename + "</td>";
//html += "<td>" + item.description + "</td>";
html += "<td><a href=\"" + item.link + "\">" + item.link + "</a></td></tr>";
}