Author: nextgens
Date: 2006-08-09 14:51:04 +0000 (Wed, 09 Aug 2006)
New Revision: 9999
Modified:
trunk/freenet/src/freenet/clients/http/staticfiles/themes/clean/theme.css
trunk/freenet/src/freenet/node/Node.java
Log:
* we need the TO NEW peers to be in red on with the clean theme
* we don't need the line "base64=true" in the references anymore
Modified:
trunk/freenet/src/freenet/clients/http/staticfiles/themes/clean/theme.css
===================================================================
--- trunk/freenet/src/freenet/clients/http/staticfiles/themes/clean/theme.css
2006-08-09 14:19:27 UTC (rev 9998)
+++ trunk/freenet/src/freenet/clients/http/staticfiles/themes/clean/theme.css
2006-08-09 14:51:04 UTC (rev 9999)
@@ -291,7 +291,7 @@
}
span.peer_too_new {
- color: #d0a0a0;
+ color: #ff0000;
}
span.peer_too_old {
Modified: trunk/freenet/src/freenet/node/Node.java
===================================================================
--- trunk/freenet/src/freenet/node/Node.java 2006-08-09 14:19:27 UTC (rev
9998)
+++ trunk/freenet/src/freenet/node/Node.java 2006-08-09 14:51:04 UTC (rev
9999)
@@ -2504,7 +2504,6 @@
public SimpleFieldSet exportPublicFieldSet() {
SimpleFieldSet fs = new SimpleFieldSet();
Peer[] ips = getPrimaryIPAddress();
- fs.put("base64", "true");
if(ips != null) {
for(int i=0;i<ips.length;i++)
fs.put("physical.udp", ips[i].toString());