diff --git a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java index 0d7334d631..ce655f17bb 100644 --- a/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java +++ b/apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClient.java @@ -490,7 +490,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable else if(ahelper != 0) str = FileUtil.readTextFile("docs/dnfb-header.ht", 100, true); else - str = FileUtil.readTextFile("docs/dnf-header.ht", 100, true); + str = FileUtil.readTextFile("docs/dnfh-header.ht", 100, true); if (str != null) header = str.getBytes(); else diff --git a/build.xml b/build.xml index 8c75886f18..40a3155f3b 100644 --- a/build.xml +++ b/build.xml @@ -299,6 +299,7 @@ + @@ -373,6 +374,7 @@ + diff --git a/history.txt b/history.txt index 6000968a9e..99c42e1e9b 100644 --- a/history.txt +++ b/history.txt @@ -1,4 +1,8 @@ -$Id: history.txt,v 1.311 2005/10/31 15:03:11 jrandom Exp $ +$Id: history.txt,v 1.312 2005/11/01 19:35:21 jrandom Exp $ + +2005-11-03 zzz + * Added a new error page to the eepproxy to differentiate the full 60 + second timeout from the immediate "I don't know this base64" failure. 2005-11-01 jrandom * Added a few more css elements (thanks identiguy!) diff --git a/installer/resources/dnfh-header.ht b/installer/resources/dnfh-header.ht new file mode 100644 index 0000000000..035d63b29a --- /dev/null +++ b/installer/resources/dnfh-header.ht @@ -0,0 +1,42 @@ +HTTP/1.1 404 Domain Not Found +Content-Type: text/html; charset=iso-8859-1 +Cache-control: no-cache + + +Eepsite unknown + + + + +
+The eepsite was not found in your router's addressbook. +Check the link or find a BASE64 address. +If you have the BASE64 address, paste it into your userhosts.txt using SusiDNS +here. +or use a BASE64 address helper. +You may be able to find the eepsite's address helper at orion.i2p. +

Could not find the following destination:

diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 6cb5c124b2..bd84cc8701 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -15,9 +15,9 @@ import net.i2p.CoreVersion; * */ public class RouterVersion { - public final static String ID = "$Revision: 1.280 $ $Date: 2005/10/29 18:20:05 $"; + public final static String ID = "$Revision: 1.281 $ $Date: 2005/10/30 00:47:57 $"; public final static String VERSION = "0.6.1.4"; - public final static long BUILD = 1; + public final static long BUILD = 2; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);