<%@page contentType="text/html"%> <%@page pageEncoding="UTF-8"%> <% // Let's make this easy... final Integer ERROR_CODE = (Integer) request.getAttribute(org.mortbay.jetty.servlet.ServletHandler.__J_S_ERROR_STATUS_CODE); final String ERROR_URI = (String) request.getAttribute(org.mortbay.jetty.servlet.ServletHandler.__J_S_ERROR_REQUEST_URI); final String ERROR_MESSAGE = (String) request.getAttribute(org.mortbay.jetty.servlet.ServletHandler.__J_S_ERROR_MESSAGE); if (ERROR_CODE != null && ERROR_MESSAGE != null) { // this is deprecated but we don't want sendError() response.setStatus(ERROR_CODE.intValue(), ERROR_MESSAGE); } // If it can't find the iframe or viewtheme.jsp I wonder if the whole thing blows up... %> I2P Router Console <%@include file="css.jsp" %> <% if (System.getProperty("router.consoleNonce") == null) { System.setProperty("router.consoleNonce", new java.util.Random().nextLong() + ""); } %> <%@include file="summary.jsp" %>

<%=ERROR_CODE%> <%=ERROR_MESSAGE%>

The Router Console page <%=ERROR_URI%> was not found.