Author: toad
Date: 2006-05-19 16:30:10 +0000 (Fri, 19 May 2006)
New Revision: 8789
Modified:
trunk/freenet/src/freenet/clients/http/QueueToadlet.java
trunk/freenet/src/freenet/node/Version.java
Log:
729: Completed dir uploads weren't being shown on queue page.
Modified: trunk/freenet/src/freenet/clients/http/QueueToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/QueueToadlet.java 2006-05-19
15:02:54 UTC (rev 8788)
+++ trunk/freenet/src/freenet/clients/http/QueueToadlet.java 2006-05-19
16:30:10 UTC (rev 8789)
@@ -202,7 +202,7 @@
if(!completedDirUpload.isEmpty()) {
// FIXME include filename??
writeTableHead("Completed directory uploads",
new String[] { "", "Identifier", "Files", "Total Size", "Persistence", "Key" },
buf);
- for(Iterator
i=completedUpload.iterator();i.hasNext();) {
+ for(Iterator
i=completedDirUpload.iterator();i.hasNext();) {
ClientPutDir p = (ClientPutDir)
i.next();
writeRowStart(buf);
writeDeleteCell(p, buf);
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-05-19 15:02:54 UTC (rev
8788)
+++ trunk/freenet/src/freenet/node/Version.java 2006-05-19 16:30:10 UTC (rev
8789)
@@ -18,7 +18,7 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 728;
+ private static final int buildNumber = 729;
/** Oldest build of Fred we will talk to */
private static final int lastGoodBuild = 698;