status.jsp revision 798
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
798N/ACopyright 2009 Sun Microsystems, Inc. All rights reserved.
798N/AUse is subject to license terms.
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>
798N/A <table border="1" width="100%">
798N/A <tr>
798N/A <th>Variable</th><th>Value</th>
798N/A </tr>
798N/A <tr>
798N/A <td>Source root</td><td><%=environment.getSourceRootPath()%></td>
798N/A </tr>
798N/A <tr>
798N/A <td>Data root</td><td><%=environment.getDataRootPath()%></td>
798N/A </tr>
798N/A <tr>
798N/A <td>CTags</td><td><%=environment.getCtags()%></td>
798N/A </tr>
798N/A <tr>
798N/A <td>Bug page</td><td><%=environment.getBugPage()%></td>
798N/A </tr>
798N/A <tr>
798N/A <td>Bug pattern</td><td><%=environment.getBugPattern()%></td>
798N/A </tr>
798N/A <tr>
798N/A <td>User page</td><td><%=environment.getUserPage()%></td>
798N/A </tr>
798N/A <tr>
798N/A <td>Review page</td><td><%=environment.getReviewPage()%></td>
798N/A </tr>
798N/A <tr>
798N/A <td>Review pattern</td><td><%=environment.getReviewPattern()%></td>
798N/A </tr>
798N/A <tr>
798N/A <td>Using projects</td><td><%=environment.hasProjects()%></td>
798N/A </tr>
798N/A <tr>
798N/A <td>Ignored files</td><td><ul><%
798N/A for (String s : environment.getIgnoredNames().getIgnoredPatterns()) {
798N/A %><li><%=s%></li><%
798N/A }
798N/A %></ul></td>
798N/A </tr>
798N/A <tr>
798N/A <td>Index word limit</td><td><%=environment.getIndexWordLimit()%></td>
798N/A </tr>
798N/A <tr>
798N/A <td>Allow leading wildcard in search</td><td><%=environment.isAllowLeadingWildcard()%></td>
798N/A </tr>
798N/A
798N/A </table>
798N/A</div>
798N/A<%@include file="foot.jspf"%>