%@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... %>
<%@include file="css.jsp" %> <%=intl.title("Page Not Found")%> <%@include file="summary.jsp" %>