* Routerconsole build: rename include files so they aren't

compiled and bundled separately (~15KB)
This commit is contained in:
zzz
2009-11-21 13:33:57 +00:00
parent 26a71232f0
commit 88dbd7710a
30 changed files with 92 additions and 70 deletions

View File

@@ -0,0 +1,15 @@
<%
/*
* 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">
<center>
<%
// moved to java for ease of translation and to avoid 10 copies
navHelper.renderNavBar(request.getRequestURI());
%>
</center></div>