enoent.jsp revision 58
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekCDDL HEADER START
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekThe contents of this file are subject to the terms of the
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekCommon Development and Distribution License (the "License").
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekYou may not use this file except in compliance with the License.
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekSee LICENSE.txt included in this distribution for the specific
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozeklanguage governing permissions and limitations under the License.
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekWhen distributing Covered Code, include this CDDL HEADER in each
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozekfile and include the License file at LICENSE.txt.
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekIf applicable, add the following below this CDDL HEADER, with the
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozekfields enclosed by brackets "[]" replaced with your own identifying
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozekinformation: Portions Copyright [yyyy] [name of copyright owner]
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekCDDL HEADER END
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekCopyright 2005 Sun Microsystems, Inc. All rights reserved.
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekUse is subject to license terms.
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozekident "@(#)enoent.jsp 1.3 05/12/02 SMI"
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek--%><%@ page import = "javax.servlet.*,
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek%><%@ page session="false" %><%@ page isErrorPage="true" %><%
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekString context = request.getContextPath();
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekRuntimeEnvironment env = RuntimeEnvironment.getInstance();
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekString rawSource = env.getSourceRootPath();
4139a7a731f2831963a42b26aac111422be28792Jakub HrozekString configError = "";
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek configError = "SRC_ROOT parameter has not been configured in web.xml! Please configure your webapp.";
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek if (!env.getSourceRootFile().isDirectory()) {
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek configError = "SRC_ROOT parameter in web.xml does not point to a valid directory! Please configure your webapp.";
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek%><?xml version="1.0" encoding="iso-8859-1"?>
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek <title>File not found</title>
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek <link rel="icon" href="<%=context%>/img/icon.png" type="image/png"/>
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek <link rel="stylesheet" type="text/css" href="<%=context%>/style.css"/>
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek <link rel="stylesheet" type="text/css" href="<%=context%>/print.css" media="print" />
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek <link rel="alternate stylesheet" type="text/css" media="all" title="Paper White" href="<%=context%>/print.css"/>
f4bcfcb1b91bfa6a568c4c99c2b3d16cd86090c6Lukas Slebodnik<body><div id="page">
f4bcfcb1b91bfa6a568c4c99c2b3d16cd86090c6Lukas Slebodnik<form action="<%=context%>/search">
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek <div id="header">
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek <%= getServletContext().getInitParameter("HEADER") %>
24000ed5b08499b49595436b8a3b348fcd4012deLukas Slebodnik<div id="Masthead"></div>
24000ed5b08499b49595436b8a3b348fcd4012deLukas Slebodnik<div id="bar"><a id="home" href="<%=context%>">Home</a> | <input id="search" name="q" class="q"/> <input type="submit" value="Search" class="submit"/> </div>
24000ed5b08499b49595436b8a3b348fcd4012deLukas Slebodnik<h3 class="error">Error 404: File not found!</h3>
24000ed5b08499b49595436b8a3b348fcd4012deLukas SlebodnikThe requested resource is not available. <%=configError%>
4139a7a731f2831963a42b26aac111422be28792Jakub Hrozek<div style="display:block;height:10em"> </div><%@include file="foot.jsp"%>