status.jsp revision 1124
798N/A<%--
798N/ACDDL HEADER START
798N/A
798N/AThe contents of this file are subject to the terms of the
798N/ACommon Development and Distribution License (the "License").
798N/AYou may not use this file except in compliance with the License.
798N/A
798N/ASee LICENSE.txt included in this distribution for the specific
798N/Alanguage governing permissions and limitations under the License.
798N/A
798N/AWhen distributing Covered Code, include this CDDL HEADER in each
798N/Afile and include the License file at LICENSE.txt.
798N/AIf applicable, add the following below this CDDL HEADER, with the
798N/Afields enclosed by brackets "[]" replaced with your own identifying
798N/Ainformation: Portions Copyright [yyyy] [name of copyright owner]
798N/A
798N/ACDDL HEADER END
798N/A
1124N/ACopyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
798N/A
798N/A--%><%@ page import = "java.util.List,
798N/Ajavax.servlet.*,
798N/Ajavax.servlet.http.*,
798N/Aorg.opensolaris.opengrok.configuration.RuntimeEnvironment,
798N/Aorg.opensolaris.opengrok.configuration.Project,
798N/Aorg.opensolaris.opengrok.web.*"
798N/A session="false" errorPage="error.jsp" %><%@ include file="projects.jspf" %><%
798N/ARuntimeEnvironment environment = RuntimeEnvironment.getInstance();
798N/Aenvironment.register();
798N/AString pageTitle = "Status";
798N/A %><%@ include file="httpheader.jspf" %>
798N/A<body>
798N/A<div id="page">
798N/A<div id="header"><%@ include file="pageheader.jspf" %></div>
798N/A<div id="Masthead"></div>
798N/A<div id="bar">
798N/A <h1>OpenGrok status page</h1>
798N/A <p>
798N/A This page is only used for testing purposes to dump some of the
798N/A internal settings on your OpenGrok server.
798N/A </p>
1124N/A <%Util.dumpConfiguration(out);%>
798N/A</div>
798N/A<%@include file="foot.jspf"%>