Project

General

Profile

1 5385 leinfelder
<%@ page    language="java" %>
2 5788 leinfelder
<%@page import="edu.ucsb.nceas.metacat.util.AuthUtil"%>
3 5385 leinfelder
<!--
4
  *  '$RCSfile$'
5
  *      Authors: Matt Jones, CHad Berkley
6
  *    Copyright: 2000 Regents of the University of California and the
7
  *               National Center for Ecological Analysis and Synthesis
8
  *  For Details: http://www.nceas.ucsb.edu/
9
  *
10
  *   '$Author$'
11
  *     '$Date$'
12
  * '$Revision$'
13
  *
14
  * This program is free software; you can redistribute it and/or modify
15
  * it under the terms of the GNU General Public License as published by
16
  * the Free Software Foundation; either version 2 of the License, or
17
  * (at your option) any later version.
18
  *
19
  * This program is distributed in the hope that it will be useful,
20
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
  * GNU General Public License for more details.
23
  *
24
  * You should have received a copy of the GNU General Public License
25
  * along with this program; if not, write to the Free Software
26
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27
  *
28
-->
29 5566 leinfelder
<%@ include file="../../common/common-settings.jsp"%>
30
<%@ include file="../../common/configure-check.jsp"%>
31 5385 leinfelder
<head>
32 5509 leinfelder
  <title>Metacat Data Catalog - Semtools</title>
33 5385 leinfelder
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
34
  <link href="<%=STYLE_SKINS_URL%>/semtools/semtools.css"
35
    rel="stylesheet" type="text/css">
36
  <script language="javascript" type="text/javascript"
37 5509 leinfelder
    src="<%=STYLE_SKINS_URL%>/semtools/semtools.js"></script>
38 5385 leinfelder
  </head>
39
40 5566 leinfelder
<body>
41 5569 leinfelder
<table width="100%" height="100" class="banner" cellpadding="0" cellspacing="0" border="0">
42 5566 leinfelder
	<tr>
43 5569 leinfelder
		<td valign="bottom">
44
			<table width="1022" height="100" background="<%=STYLE_SKINS_URL%>/semtools/images/semtools_web_banner.jpg">
45
				<tr height="80%">
46
					<td>&nbsp;</td>
47
				</tr>
48
				<tr>
49
				    <td align="center" valign="middle" class="sectionheader">
50
				    	<a target="_top" href="<%=STYLE_SKINS_URL%>/semtools/index.jsp">Home</a></td>
51
					<td align="center" valign="middle" class="sectionheader">
52 5788 leinfelder
						<%
53
							boolean loggedIn = AuthUtil.isUserLoggedIn(request);
54
							if (loggedIn) {
55
						%>
56
							<a href="<%=SERVLET_URL%>?action=logout&qformat=semtools" target="_top">Logout</a>
57
						<%
58
							} else {
59
						%>
60
							<a target="_top" href="<%=STYLE_SKINS_URL%>/semtools/login.jsp">Login</a>
61
						<%
62
							}
63
						%>
64
				    </td>
65 5569 leinfelder
					<td align="center" valign="middle" class="sectionheader">
66 5788 leinfelder
						<a target="_top" href="<%=STYLE_SKINS_URL%>/semtools/ontologies.jsp">Ontologies</a></td>
67
					<td align="center" valign="middle" class="sectionheader">
68
						<a target="_new" href="http://bioportal.bioontology.org/">BioPortal</a></td>
69 5569 leinfelder
				</tr>
70
			</table>
71
		</td>
72 5566 leinfelder
	</tr>
73
</table>
74 5385 leinfelder
75
</body>
76
</html>