r27170 - trunk/freenet/src/freenet/clients/http

[email protected] Tue, 21 Apr 2009 21:45:29 +0000
Newsgroups gmane.network.freenet.cvs
Message-ID <[email protected]>
Author: toad
Date: 2009-04-21 21:45:28 +0000 (Tue, 21 Apr 2009)
New Revision: 27170

Modified:
   trunk/freenet/src/freenet/clients/http/FProxyToadlet.java
Log:
Slightly better


Modified: trunk/freenet/src/freenet/clients/http/FProxyToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/FProxyToadlet.java	2009-04-21 21:43:47 UTC (rev 27169)
+++ trunk/freenet/src/freenet/clients/http/FProxyToadlet.java	2009-04-21 21:45:28 UTC (rev 27170)
@@ -523,7 +523,7 @@
 				if(fr.mimeType != null) infoboxContent.addChild("br", "Content type: "+fr.mimeType);
 				if(fr.size > 0) infoboxContent.addChild("br", "Size: "+SizeUtil.formatSize(fr.size));
 				if(core.isAdvancedModeEnabled()) {
-					infoboxContent.addChild("br", "Blocks: need "+fr.requiredBlocks+" total "+fr.totalBlocks+" fetched "+fr.fetchedBlocks+" failed "+fr.failedBlocks+" fatally failed "+fr.fatallyFailedBlocks);
+					infoboxContent.addChild("br", "Blocks: " +fr.fetchedBlocks+" / "+fr.requiredBlocks+" (total "+fr.totalBlocks+" failed "+fr.failedBlocks+" fatally failed "+fr.fatallyFailedBlocks+")");
 				}
 				infoboxContent.addChild("br", "Time elapsed: "+TimeUtil.formatTime(System.currentTimeMillis() - fr.timeStarted));
 				long eta = fr.eta;