I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit bc49f51d authored by zzz's avatar zzz
Browse files

use custom toolbar.html in the summary bar if it exists

parent ccf9cd3f
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,14 @@ ...@@ -12,6 +12,14 @@
<jsp:setProperty name="uhelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" /> <jsp:setProperty name="uhelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
<centre><a href="index.jsp" target="_top"><img src="/themes/console/images/i2plogo.png" alt="I2P Router Console" title="I2P Router Console"/></a></centre><hr /> <centre><a href="index.jsp" target="_top"><img src="/themes/console/images/i2plogo.png" alt="I2P Router Console" title="I2P Router Console"/></a></centre><hr />
<centre> <centre>
<% java.io.File lpath = new java.io.File(net.i2p.I2PAppContext.getGlobalContext().getBaseDir(), "docs/toolbar.html");
// you better have target="_top" for the links in there...
if (lpath.exists()) { %>
<jsp:useBean class="net.i2p.router.web.ContentHelper" id="linkhelper" scope="request" />
<jsp:setProperty name="linkhelper" property="page" value="<%=lpath.getAbsolutePath()%>" />
<jsp:setProperty name="linkhelper" property="maxLines" value="100" />
<jsp:getProperty name="linkhelper" property="content" />
<% } else { %>
<u><b>I2P Services</b></u><br /> <u><b>I2P Services</b></u><br />
<a href="susimail/susimail" target="blank">Susimail</a> <a href="susimail/susimail" target="blank">Susimail</a>
<a href="susidns/index.jsp" target="_blank">SusiDNS</a> <a href="susidns/index.jsp" target="_blank">SusiDNS</a>
...@@ -29,6 +37,7 @@ ...@@ -29,6 +37,7 @@
<a href="oldconsole.jsp" target="_top">Internals</a> --> <a href="oldconsole.jsp" target="_top">Internals</a> -->
<a href="config.jsp" target="_top">Configuration</a> <a href="config.jsp" target="_top">Configuration</a>
<a href="help.jsp" target="_top">Help</a></b> <a href="help.jsp" target="_top">Help</a></b>
<% } %>
</center> </center>
<hr /> <hr />
<u><b>General</b></u><br /> <u><b>General</b></u><br />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment