Author: ljn1981
Date: 2006-09-28 16:31:36 +0000 (Thu, 28 Sep 2006)
New Revision: 10544
Modified:
trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
Log:
Changing some UI text a bit.
Modified: trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
2006-09-28 16:04:51 UTC (rev 10543)
+++ trunk/freenet/src/freenet/clients/http/StatisticsToadlet.java
2006-09-28 16:31:36 UTC (rev 10544)
@@ -146,10 +146,10 @@
overviewList.addChild("li",
"networkSizeEstimate48h:\u00a0" + networkSizeEstimate48h + "\u00a0nodes");
}
if ((networkSizeEstimateSession > 0) && ((swaps
> 0) || (noSwaps > 0))) {
- overviewList.addChild("li",
"avrPeersPerNodeU:\u00a0" +
(double)((double)networkSizeEstimateSession/(double)(swaps+noSwaps)));
+ overviewList.addChild("li",
"avrConnPeersPerNodeU:\u00a0" +
(double)((double)networkSizeEstimateSession/(double)(swaps+noSwaps)));
}
if ((numberOfLocationsSeenInSwaps > 0) &&
((swaps > 0) || (noSwaps > 0))) {
- overviewList.addChild("li",
"avrPeersPerNodeT:\u00a0" +
(double)((double)numberOfLocationsSeenInSwaps/(double)(swaps+noSwaps)));
+ overviewList.addChild("li",
"avrConnPeersPerNodeT:\u00a0" +
(double)((double)numberOfLocationsSeenInSwaps/(double)(swaps+noSwaps)));
}
overviewList.addChild("li", "nodeUptime:\u00a0"
+ nodeUptimeString);
overviewList.addChild("li",
"missRoutingDistance:\u00a0" + fix4.format(missRoutingDistance));