xref: /OpenGrok/opengrok-web/src/main/webapp/eforbidden.jsp (revision 9554a08a19f02ccda403718e715fa49c454c7fff)
10d40e9d0SAdam Hornáček<%--
20d40e9d0SAdam HornáčekCDDL HEADER START
30d40e9d0SAdam Hornáček
40d40e9d0SAdam HornáčekThe contents of this file are subject to the terms of the
50d40e9d0SAdam HornáčekCommon Development and Distribution License (the "License").
60d40e9d0SAdam HornáčekYou may not use this file except in compliance with the License.
70d40e9d0SAdam Hornáček
80d40e9d0SAdam HornáčekSee LICENSE.txt included in this distribution for the specific
90d40e9d0SAdam Hornáčeklanguage governing permissions and limitations under the License.
100d40e9d0SAdam Hornáček
110d40e9d0SAdam HornáčekWhen distributing Covered Code, include this CDDL HEADER in each
120d40e9d0SAdam Hornáčekfile and include the License file at LICENSE.txt.
130d40e9d0SAdam HornáčekIf applicable, add the following below this CDDL HEADER, with the
140d40e9d0SAdam Hornáčekfields enclosed by brackets "[]" replaced with your own identifying
150d40e9d0SAdam Hornáčekinformation: Portions Copyright [yyyy] [name of copyright owner]
160d40e9d0SAdam Hornáček
170d40e9d0SAdam HornáčekCDDL HEADER END
180d40e9d0SAdam Hornáček
19*9554a08aSVladimir KotalCopyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
201e60c4b2SAdam HornáčekPortions Copyright (c) 2018, Chris Fraire <cfraire@me.com>.
2156f072caSAdam Hornáček--%>
22*9554a08aSVladimir Kotal<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
23d8a7afe2SAdam Hornacek<%@page session="false" import="org.opengrok.web.PageConfig" %>
24*9554a08aSVladimir Kotal<%@ page import="jakarta.servlet.http.HttpServletResponse" %>
2556f072caSAdam Hornáček<%
26*9554a08aSVladimir Kotal/* ---------------------- eforbidden.jsp start --------------------- */
270d40e9d0SAdam Hornáček{
280d40e9d0SAdam Hornáček    response.setStatus(HttpServletResponse.SC_FORBIDDEN);
29*9554a08aSVladimir Kotal%><%@
30*9554a08aSVladimir Kotal
31*9554a08aSVladimir Kotal        include file="httpheader.jspf"
32*9554a08aSVladimir Kotal
33*9554a08aSVladimir Kotal%><body>
34*9554a08aSVladimir Kotal<div id="page">
35*9554a08aSVladimir Kotal    <div id="whole_header">
36*9554a08aSVladimir Kotal        <div id="header"><%@
37*9554a08aSVladimir Kotal
38*9554a08aSVladimir Kotal                include file="pageheader.jspf"
39*9554a08aSVladimir Kotal
40*9554a08aSVladimir Kotal        %></div>
41*9554a08aSVladimir Kotal    </div>
42*9554a08aSVladimir Kotal<h3 class="error">Error: access forbidden</h3>
43*9554a08aSVladimir Kotal<p>The request was forbidden. This can be either file/directory permissions problem or insufficient authorization.</p>
442ffbb0cfSVladimir Kotal<%= PageConfig.get(request).getEnv().getIncludeFiles().getForbiddenIncludeFileContent(false) %>
450d40e9d0SAdam Hornáček<%
460d40e9d0SAdam Hornáček}
47*9554a08aSVladimir Kotal/* ---------------------- eforbidden.jsp end --------------------- */
48*9554a08aSVladimir Kotal%><%@
49*9554a08aSVladimir Kotal
50*9554a08aSVladimir Kotal        include file="foot.jspf"
51*9554a08aSVladimir Kotal
520d40e9d0SAdam Hornáček%>
53