
* Added the i2p.exe and i2pinstall.exe for windows users, using launch4j. * Added runplain.sh for *nix/osx users having problems using the java service wrapper (called from the install dir as: sh runplain.sh) * Bundle susidns and syndie, with links on the top nav * Have I2PTunnelHTTPClient and I2PTunnelHTTPServer use the x-i2p-gzip content-encoding (if offered), reducing the payload size before it reaches the streaming lib. The existing compression is at the i2cp level, so we've been packetizing 4KB of uncompressed data and then compressing those messages, rather than compressing and then packetizing 4KB of compressed data. This should reduce the number of round trips to fetch web pages substantially. * Adjust the startup and timing of the addressbook so that susidns always has config to work off, and expose a method for susidns to tell it to reload its config and rerun.
36 lines
1.5 KiB
Plaintext
36 lines
1.5 KiB
Plaintext
<% response.setHeader("Pragma", "no-cache");
|
|
response.setHeader("Cache-Control","no-cache");
|
|
response.setDateHeader("Expires", 0);
|
|
// the above will b0rk if the servlet engine has already flushed
|
|
// the response prior to including nav.jsp, so nav should be
|
|
// near the top
|
|
|
|
if (request.getParameter("i2p.contextId") != null) {
|
|
session.setAttribute("i2p.contextId", request.getParameter("i2p.contextId"));
|
|
}%>
|
|
|
|
<div class="logo">
|
|
<a href="index.jsp"><img src="i2plogo.png" alt="Router Console" width="187" height="35" /></a><br />
|
|
[<a href="config.jsp">configuration</a> | <a href="help.jsp">help</a>]
|
|
</div>
|
|
|
|
<h4>
|
|
<a href="susimail/susimail">Susimail</a> |
|
|
<a href="susidns/">SusiDNS</a> |
|
|
<a href="syndie/">Syndie</a> |
|
|
<a href="i2ptunnel/">I2PTunnel</a> |
|
|
<a href="tunnels.jsp">Tunnels</a> |
|
|
<a href="profiles.jsp">Profiles</a> |
|
|
<a href="netdb.jsp">NetDB</a> |
|
|
<a href="logs.jsp">Logs</a> |
|
|
<a href="oldstats.jsp">Stats</a> |
|
|
<a href="oldconsole.jsp">Internals</a>
|
|
<jsp:useBean class="net.i2p.router.web.NavHelper" id="navhelper" scope="request" />
|
|
<jsp:setProperty name="navhelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
|
|
<jsp:getProperty name="navhelper" property="clientAppLinks" />
|
|
</h4>
|
|
|
|
<jsp:useBean class="net.i2p.router.web.NoticeHelper" id="noticehelper" scope="request" />
|
|
<jsp:setProperty name="noticehelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
|
|
<b><jsp:getProperty name="noticehelper" property="systemNotice" /></b>
|