Files
i2p.i2p/apps/routerconsole/jsp/confignav.jsi
kytv 07162b56c8 escape quotation marks in jsp files
The routerconsole's precompilejsp target failed when using the jetty packages
from Debian. These escaped jsp files also work with 'our' jetty6 (and jetty6).
2011-12-25 22:37:30 +00:00

16 lines
552 B
Plaintext

<%
/*
* 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\")%>" />
<% navHelper.storeWriter(out); %>
<div class="confignav" id="confignav">
<%
// moved to java for ease of translation and to avoid 10 copies
// allowIFrame variable from summary.jsi
navHelper.renderNavBar(request.getRequestURI(), allowIFrame);
%>
</div>