Author: zothar
Date: 2006-05-25 00:11:57 +0000 (Thu, 25 May 2006)
New Revision: 8862

Modified:
   trunk/freenet/src/freenet/clients/http/DarknetConnectionsToadlet.java
   trunk/freenet/src/freenet/clients/http/staticfiles/themes/aqua/theme.css
   trunk/freenet/src/freenet/clients/http/staticfiles/themes/clean/theme.css
   trunk/freenet/src/freenet/clients/http/staticfiles/themes/sky/theme.css
Log:
Renamed /darknet/'s 'INCOMPATIBLE' to 'TOO OLD'

Modified: trunk/freenet/src/freenet/clients/http/DarknetConnectionsToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/DarknetConnectionsToadlet.java       
2006-05-24 23:53:19 UTC (rev 8861)
+++ trunk/freenet/src/freenet/clients/http/DarknetConnectionsToadlet.java       
2006-05-25 00:11:57 UTC (rev 8862)
@@ -101,7 +101,7 @@
                        int numberOfConnected = 0;
                        int numberOfBackedOff = 0;
                        int numberOfTooNew = 0;
-                       int numberOfIncompatible = 0;
+                       int numberOfTooOld = 0;
                        int numberOfDisconnected = 0;

                        // Create array
@@ -165,8 +165,8 @@
                                        numberOfTooNew++;
                                }
                                else if(x == Node.PEER_NODE_STATUS_TOO_OLD) {
-                                       row[1] = "<span 
class=\"peer_incompatible\">INCOMPATIBLE</span>";
-                                       numberOfIncompatible++;
+                                       row[1] = "<span 
class=\"peer_too_old\">TOO OLD</span>";
+                                       numberOfTooOld++;
                                }
                                else if(x == 
Node.PEER_NODE_STATUS_DISCONNECTED) {
                                        row[1] = "<span 
class=\"peer_disconnected\">DISCONNECTED</span>";
@@ -235,10 +235,10 @@
                                buf.append("<span class=\"peer_too_new\">TOO 
NEW: " + numberOfTooNew + "</span>");
                                separatorNeeded = true;
                        }
-                       if (numberOfIncompatible != 0) {
+                       if (numberOfTooOld != 0) {
                                if (separatorNeeded)
                                        buf.append(" | ");
-                               buf.append("<span 
class=\"peer_incompatible\">INCOMPATIBLE: " + numberOfIncompatible + "</span>");
+                               buf.append("<span class=\"peer_too_old\">TOO 
OLD: " + numberOfTooOld + "</span>");
                                separatorNeeded = true;
                        }
                        if (numberOfDisconnected != 0) {

Modified: 
trunk/freenet/src/freenet/clients/http/staticfiles/themes/aqua/theme.css
===================================================================
--- trunk/freenet/src/freenet/clients/http/staticfiles/themes/aqua/theme.css    
2006-05-24 23:53:19 UTC (rev 8861)
+++ trunk/freenet/src/freenet/clients/http/staticfiles/themes/aqua/theme.css    
2006-05-25 00:11:57 UTC (rev 8862)
@@ -112,7 +112,7 @@
        color: red;
 }

-.peer_incompatible {
+.peer_too_old {
        color: blue;
 }


Modified: 
trunk/freenet/src/freenet/clients/http/staticfiles/themes/clean/theme.css
===================================================================
--- trunk/freenet/src/freenet/clients/http/staticfiles/themes/clean/theme.css   
2006-05-24 23:53:19 UTC (rev 8861)
+++ trunk/freenet/src/freenet/clients/http/staticfiles/themes/clean/theme.css   
2006-05-25 00:11:57 UTC (rev 8862)
@@ -280,7 +280,7 @@
        color: #d0a0a0;
 }

-table.darknet_connections span.peer_incompatible {
+table.darknet_connections span.peer_too_old {
        color: #d0a0d0;
 }


Modified: 
trunk/freenet/src/freenet/clients/http/staticfiles/themes/sky/theme.css
===================================================================
--- trunk/freenet/src/freenet/clients/http/staticfiles/themes/sky/theme.css     
2006-05-24 23:53:19 UTC (rev 8861)
+++ trunk/freenet/src/freenet/clients/http/staticfiles/themes/sky/theme.css     
2006-05-25 00:11:57 UTC (rev 8862)
@@ -293,7 +293,7 @@
        color: #d0a0a0;
 }

-table.darknet_connections span.peer_incompatible {
+table.darknet_connections span.peer_too_old {
        color: #d0a0d0;
 }



Reply via email to