httpheader.jspf revision 812
546N/A<%--
546N/ACDDL HEADER START
546N/A
546N/AThe contents of this file are subject to the terms of the
546N/ACommon Development and Distribution License (the "License").
546N/AYou may not use this file except in compliance with the License.
546N/A
546N/ASee LICENSE.txt included in this distribution for the specific
546N/Alanguage governing permissions and limitations under the License.
546N/A
546N/AWhen distributing Covered Code, include this CDDL HEADER in each
546N/Afile and include the License file at LICENSE.txt.
546N/AIf applicable, add the following below this CDDL HEADER, with the
546N/Afields enclosed by brackets "[]" replaced with your own identifying
546N/Ainformation: Portions Copyright [yyyy] [name of copyright owner]
546N/A
546N/ACDDL HEADER END
546N/A
546N/ACopyright 2007 Sun Microsystems, Inc. All rights reserved.
546N/AUse is subject to license terms.
546N/A
546N/A--%><%@ page import="org.opensolaris.opengrok.configuration.*"%><%
546N/AString laf = environment.getWebappLAF();
546N/AString httpHeaderContext = request.getContextPath();
546N/A%><?xml version="1.0" encoding="iso-8859-1"?>
546N/A<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
546N/A<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
546N/A<head>
546N/A <meta name="robots" content="noindex,nofollow">
546N/A <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
546N/A <meta name="generator" content="<%=org.opensolaris.opengrok.Info.getVersion()%> (<%=org.opensolaris.opengrok.Info.getRevision()%>)"/>
546N/A <link rel="icon" href="<%=httpHeaderContext%>/<%=laf%>/img/icon.png" type="image/png"/>
546N/A <link rel="stylesheet" type="text/css" href="<%=httpHeaderContext%>/<%=laf%>/style.css"/>
546N/A <link rel="stylesheet" type="text/css" href="<%=httpHeaderContext%>/<%=laf%>/print.css" media="print" />
546N/A <link rel="alternate stylesheet" type="text/css" media="all" title="Paper White" href="<%=httpHeaderContext%>/<%=laf%>/print.css"/>
546N/A <link rel="search" href="<%=httpHeaderContext%>/opensearch" type="application/opensearchdescription+xml" title="OpenGrok Search for current project" />
<title><%=pageTitle%></title>
<script type="text/javascript">
<!--
function toggle_annotations() {
var spans = document.getElementsByTagName("span");
for (var i = 0; i < spans.length; i++) {
var span = spans[i];
if (span.className == 'blame') {
span.className = 'blame-hidden';
} else if (span.className == 'blame-hidden') {
span.className = 'blame';
}
}
}
// -->
</script>
</head>