1<%-- 2CDDL HEADER START 3 4The contents of this file are subject to the terms of the 5Common Development and Distribution License (the "License"). 6You may not use this file except in compliance with the License. 7 8See LICENSE.txt included in this distribution for the specific 9language governing permissions and limitations under the License. 10 11When distributing Covered Code, include this CDDL HEADER in each 12file and include the License file at LICENSE.txt. 13If applicable, add the following below this CDDL HEADER, with the 14fields enclosed by brackets "[]" replaced with your own identifying 15information: Portions Copyright [yyyy] [name of copyright owner] 16 17CDDL HEADER END 18 19Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved. 20Portions Copyright (c) 2018, Chris Fraire <cfraire@me.com>. 21--%> 22<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 23<%@page session="false" import="org.opengrok.web.PageConfig" %> 24<%@ page import="jakarta.servlet.http.HttpServletResponse" %> 25<% 26/* ---------------------- eforbidden.jsp start --------------------- */ 27{ 28 response.setStatus(HttpServletResponse.SC_FORBIDDEN); 29%><%@ 30 31 include file="httpheader.jspf" 32 33%><body> 34<div id="page"> 35 <header id="whole_header"> 36 <%@include file="pageheader.jspf" %> 37 </header> 38<h3 class="error">Error: access forbidden</h3> 39<p>The request was forbidden. This can be either file/directory permissions problem or insufficient authorization.</p> 40<%= PageConfig.get(request).getEnv().getIncludeFiles().getForbiddenIncludeFileContent(false) %> 41<% 42} 43/* ---------------------- eforbidden.jsp end --------------------- */ 44%><%@ 45 46 include file="foot.jspf" 47 48%> 49