Author: ljn1981
Date: 2006-04-23 17:05:50 +0000 (Sun, 23 Apr 2006)
New Revision: 8570
Modified:
trunk/freenet/src/freenet/clients/http/DarknetConnectionsToadlet.java
trunk/freenet/src/freenet/node/Version.java
Log:
Fixing a small HTML bug from the changes in 651, thanks to lloyd on #freenet
for the HTML and CSS changes in the previous versionand the fix in this one.
Modified: trunk/freenet/src/freenet/clients/http/DarknetConnectionsToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/DarknetConnectionsToadlet.java
2006-04-23 15:08:19 UTC (rev 8569)
+++ trunk/freenet/src/freenet/clients/http/DarknetConnectionsToadlet.java
2006-04-23 17:05:50 UTC (rev 8570)
@@ -84,7 +84,7 @@
buf.append("<h2>My Connections</h2>\n");
buf.append("<form action=\".\" method=\"post\"
enctype=\"multipart/form-data\">\n");
buf.append("<table class=\"darknet_connections\">\n");
- buf.append("<tr><th>Status</th><th>Name</th><th
title=\"Address:Port\" style=\"border-bottom:1px
dotted;cursor:help;\">Address</th><th>Version</th><th>Location</th><th
title=\"Temporarily disconnected. Other node busy? Wait time(ms)
remaining/total\" style=\"border-bottom:1px
dotted;cursor:help;\">Backoff</th><th title=\"Number of minutes since the node
was last seen in this session\" style=\"border-bottom:1px
dotted;cursor:help;\">Idle</th><th></th></tr>\n");
+ buf.append("<tr><th>Status</th><th>Name</th><th> <span
title=\"Address:Port\" style=\"border-bottom:1px
dotted;cursor:help;\">Address</span></th><th>Version</th><th>Location</th><th>
<span title=\"Temporarily disconnected. Other node busy? Wait time(ms)
remaining/total\" style=\"border-bottom:1px
dotted;cursor:help;\">Backoff</span></th><th> <span title=\"Number of minutes
since the node was last seen in this session\" style=\"border-bottom:1px
dotted;cursor:help;\">Idle</span></th><th></th></tr>\n");
final Integer CONNECTED = new Integer(0);
final Integer BACKED_OFF = new Integer(1);
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-04-23 15:08:19 UTC (rev
8569)
+++ trunk/freenet/src/freenet/node/Version.java 2006-04-23 17:05:50 UTC (rev
8570)
@@ -20,7 +20,7 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 651;
+ private static final int buildNumber = 652;
/** Oldest build of Fred we will talk to */
private static final int lastGoodBuild = 591;