removed superfluous column

This commit is contained in:
Michael Peter Christen 2012-05-07 00:54:00 +02:00
parent 77f8e9fb9b
commit dcccbe0be8
2 changed files with 1 additions and 5 deletions

View File

@ -43,7 +43,6 @@
<col width="10" />
<col width="10" />
<col width="10" />
<col width="10" />
<col />
</colgroup>
<tr class="TableHeader">
@ -55,7 +54,6 @@
<th>Depth</th>
<th>Modified Date</th>
<th>Anchor Name</th>
<th>Delta/ms</th>
<th>URL</th>
</tr>
#{host}#
@ -63,7 +61,7 @@
<td>#[hostcount]#</td>
<td>#[hostdelta]#</td>
<td><a href="IndexCreateQueues_p.html?#(embed)#::embed=&#(/embed)#delete=&stack=#[queuename]#&option=1&pattern=.*#[hostname]#.*&urlsPerHost=#[urlsPerHost]#"><img src="env/grafics/trash.gif"></a>&nbsp;#[hostname]#</td>
<td colspan="7"></td>
<td colspan="6"></td>
</tr>
#{list}#
<tr class="TableCellLight">
@ -73,7 +71,6 @@
<td>#[depth]#</td>
<td>#[modified]#</td>
<td>#[anchor]#</td>
<td>#[delta]#</td>
<td><a href="#[url]#">#[url]#</a></td>
</tr>
#{/list}#

View File

@ -148,7 +148,6 @@ public class IndexCreateQueues_p {
prop.put("crawler_host_" + hc + "_list_" + count + "_depth", request.depth());
prop.put("crawler_host_" + hc + "_list_" + count + "_modified", daydate(request.appdate()) );
prop.putHTML("crawler_host_" + hc + "_list_" + count + "_anchor", request.name());
prop.put("crawler_host_" + hc + "_list_" + count + "_delta", sb.crawlQueues.noticeURL.getDomainSleepTime(stackType, sb.robots, sb.crawler, request));
prop.putHTML("crawler_host_" + hc + "_list_" + count + "_url", request.url().toNormalform(false, true));
prop.put("crawler_host_" + hc + "_list_" + count + "_hash", request.url().hash());
count++;