* logs.jsp: Fix NPE (ticket #430)

This commit is contained in:
zzz
2011-03-10 14:04:16 +00:00
parent f71dfe50f9
commit b6a0426477
3 changed files with 11 additions and 2 deletions

View File

@@ -18,7 +18,7 @@
<%=intl._("You may use the username \"guest\" and password \"guest\" if you do not wish to register.")%> <%=intl._("You may use the username \"guest\" and password \"guest\" if you do not wish to register.")%>
<p><i><%=intl._("Please include this information in bug reports")%>:</i> <p><i><%=intl._("Please include this information in bug reports")%>:</i>
<p> <p>
<b>I2P version:</b> <jsp:getProperty name="helper" property="version" /><br> <b>I2P version:</b> <%=net.i2p.router.RouterVersion.FULL_VERSION%><br>
<b>Java version:</b> <%=System.getProperty("java.vendor")%> <%=System.getProperty("java.version")%> (<%=System.getProperty("java.runtime.name")%> <%=System.getProperty("java.runtime.version")%>)<br> <b>Java version:</b> <%=System.getProperty("java.vendor")%> <%=System.getProperty("java.version")%> (<%=System.getProperty("java.runtime.name")%> <%=System.getProperty("java.runtime.version")%>)<br>
<b>Platform:</b> <%=System.getProperty("os.name")%> <%=System.getProperty("os.arch")%> <%=System.getProperty("os.version")%><br> <b>Platform:</b> <%=System.getProperty("os.name")%> <%=System.getProperty("os.arch")%> <%=System.getProperty("os.version")%><br>
<b>Processor:</b> <%=net.i2p.util.NativeBigInteger.cpuModel()%> (<%=net.i2p.util.NativeBigInteger.cpuType()%>)<br> <b>Processor:</b> <%=net.i2p.util.NativeBigInteger.cpuModel()%> (<%=net.i2p.util.NativeBigInteger.cpuType()%>)<br>

View File

@@ -1,3 +1,12 @@
2011-03-10 zzz
* configclients.jsp: Split form up, fix HTML warnings
* configui.jsp: Fix lang setting broken by previous nonce change
* Console: Consolidate nonce handling
* eepget: Don't send X-Accept-Encoding header to proxy (ticket #422)
* logs.jsp: Fix NPE (ticket #430)
* netdb.jsp: Fix table alignment
* Tunnel Preprocessor: Use entropy for padding more efficiently
2011-03-08 zzz 2011-03-08 zzz
* Clock: Cleanups and javadocs * Clock: Cleanups and javadocs
* Console: * Console:

View File

@@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 4; public final static long BUILD = 5;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";