<%
- if (!canConfigure) {
+ if (!jettySSLFileExists) {
%>
-
Cannot configure, no Jetty SSL configuration template exists
+
Cannot configure, Jetty SSL configuration file does not exist: <%=jettySSLFile.toString()%>
<%
+ } else if (!jettySSLFileValid) {
+%>
+
Cannot configure, Jetty SSL configuration file is too old or invalid: <%=jettySSLFile.toString()%>
+<%
+ if (error.length() > 0) {
+%>
+
<%=error%>
+<%
+ }
} else {
%>
@@ -741,7 +754,7 @@ input.default { width: 1px; height: 1px; visibility: hidden; }
<%
} else {
%>
-<%=intl._t("Password")%>:
+<%=intl._t("New Certificate Password")%>:
" value="" class="freetext password" />
<%
if (isEnabled) {
diff --git a/history.txt b/history.txt
index 7f679bd28..cd31937ab 100644
--- a/history.txt
+++ b/history.txt
@@ -1,3 +1,9 @@
+2018-05-05 zzz
+ * i2ptunnel:
+ - Link to SSL wizard
+ - Enable SSL to i2p hosts by default
+ * Streaming: Don't send HTTP response on an HTTPS connection
+
2018-05-01 meeh
* launchers:
- Added deployment profile for Mac OS X launcher.
@@ -13,23 +19,23 @@
- Initial work on SSL wizard
2018-04-27 zzz
- * Tunnels: Fix and consolidate allow-zero-hop logic,
- prevent zero-hop client tunnels when no active peers
+ * Tunnels: Fix and consolidate allow-zero-hop logic,
+ prevent zero-hop client tunnels when no active peers
2018-04-24 meeh
- * Mac OS X launcher is still WIP, but:
- - Building the I2P.app bundle is mostly done
- - It copies certificates, locale and manuals
- - It copies jar and war files to the bundle
- * Added new entries to mtn-ignore so we avoid any PEBCAK with commiting build directories
- * Added an SBT AutoPlugin named IconHelper to generate valid ICNS images for Mac OS X
+ * Mac OS X launcher is still WIP, but:
+ - Building the I2P.app bundle is mostly done
+ - It copies certificates, locale and manuals
+ - It copies jar and war files to the bundle
+ * Added new entries to mtn-ignore so we avoid any PEBCAK with commiting build directories
+ * Added an SBT AutoPlugin named IconHelper to generate valid ICNS images for Mac OS X
2018-04-23 zzz
* Clock: Fix early NPE via DoH
* EepGet: Handle HTTP response line with no status text
2018-04-23 meeh
- * Added launchers for Browser Bundle and Mac OS X
+ * Added launchers for Browser Bundle and Mac OS X
2018-04-22 zzz
* SusiMail: Include attachments when forwarding (ticket #2087)
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index a6204817e..f2522cd4e 100644
--- a/router/java/src/net/i2p/router/RouterVersion.java
+++ b/router/java/src/net/i2p/router/RouterVersion.java
@@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION;
- public final static long BUILD = 8;
+ public final static long BUILD = 9;
/** for example "-test" */
public final static String EXTRA = "";