Files
i2p.itoopie/apps/routerconsole/jsp/confignav.jsp

16 lines
548 B
Plaintext
Raw Normal View History

<%
/*
* Included ~10 times, keep whitespace to a minimum
*/
%>
<jsp:useBean class="net.i2p.router.web.ConfigNavHelper" id="navHelper" scope="request" />
<jsp:setProperty name="navHelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
<jsp:setProperty name="navHelper" property="writer" value="<%=out%>" />
<div class="confignav" id="confignav">
2009-05-06 03:47:38 +00:00
<center>
<%
// moved to java for ease of translation and to avoid 10 copies
navHelper.renderNavBar(request.getRequestURI());
%>
2009-08-15 16:08:33 +00:00
</center></div>