Project

General

Profile

1
<%@ page    language="java" %>
2
<%@page import="edu.ucsb.nceas.metacat.util.AuthUtil"%>
3
<!--
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: leinfelder $'
11
  *     '$Date: 2011-01-07 13:00:14 -0800 (Fri, 07 Jan 2011) $'
12
  * '$Revision: 5788 $'
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
<%@ include file="../../common/common-settings.jsp"%>
30
<%@ include file="../../common/configure-check.jsp"%>
31
<head>
32
  <title>Metacat Data Catalog - Semtools</title>
33
  <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
    src="<%=STYLE_SKINS_URL%>/semtools/semtools.js"></script>
38
  </head>
39

    
40
<body>
41
<table width="100%" height="100" class="banner" cellpadding="0" cellspacing="0" border="0">
42
	<tr>
43
		<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
						<%
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
					<td align="center" valign="middle" class="sectionheader">
66
						<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
				</tr>
70
			</table>
71
		</td>
72
	</tr>
73
</table>
74

    
75
</body>
76
</html>
(3-3/16)