Project

General

Profile

1
<%@ page    language="java" %>
2
<%
3
/**
4
 * 
5
 * '$RCSfile$'
6
 * Copyright: 2008 Regents of the University of California and the
7
 *             National Center for Ecological Analysis and Synthesis
8
 *    '$Author: leinfelder $'
9
 *      '$Date: 2008-09-24 17:41:55 -0700 (Wed, 24 Sep 2008) $'
10
 * '$Revision: 4388 $'
11
 * 
12
 * This program is free software; you can redistribute it and/or modify
13
 * it under the terms of the GNU General Public License as published by
14
 * the Free Software Foundation; either version 2 of the License, or
15
 * (at your option) any later version.
16
 * 
17
 * This program is distributed in the hope that it will be useful,
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
 * GNU General Public License for more details.
21
     
22
 * You should have received a copy of the GNU General Public License
23
 * along with this program; if not, write to the Free Software
24
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25
 */  
26
%>
27

    
28
<%@ include file="../../common/common-settings.jsp"%>
29
<%@ include file="../../common/configure-check.jsp"%>
30
<%@page import="edu.ucsb.nceas.metacat.service.SessionService"%>
31
<%@page import="java.util.Map"%>
32

    
33

    
34
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
35
<%@page import="java.util.Iterator"%>
36
<html>
37
<head>
38
<title>FIRST Data Repository</title>
39
<link rel="stylesheet" type="text/css"
40
	href="<%=STYLE_SKINS_URL%>/first/first.css"></link>
41
<script language="Javascript" type="text/JavaScript"
42
	src="<%=STYLE_COMMON_URL%>/prototype-1.5.1.1/prototype.js">
43
</script>		
44
<script language="Javascript" type="text/JavaScript"
45
	src="<%=STYLE_COMMON_URL%>/effects.js">
46
</script>
47
<script language="Javascript">
48
		
49
	function highlight() {
50
		//Effect.Pulsate('importantThings', { pulses: 1, duration: 2 });
51
		//Effect.Fade('importantThings');
52
		Effect.Shake('importantThings');
53
	}
54
</script>		
55
	
56
</head>
57

    
58
<body onload="highlight()">
59
<table width="100%" border="0" cellspacing="0" cellpadding="0">
60
	<tr valign="top">
61
		<td width="400">
62
			<img src="<%=STYLE_SKINS_URL%>/first/images/first2banner.jpg">	
63
		</td>
64
		<td>
65
			<table width="100%">
66
				<tr>
67
					<th colspan="3" class="title">
68
						FIRST Data Repository
69
					</th>
70
				</tr>
71
				<tr>
72
					<td>
73
						<a href="index.jsp" target="_top">
74
						Search	
75
						</a>
76
					</td>
77
					<!--
78
					<td valign="top">
79
						<p><a href="http://www.first2.org" target=_top">FIRST Site</a></p>
80
					</td>
81
					-->
82
					<td valign="top">
83
						<p><a href="about.jsp" target="_top">About</a></p>
84
					</td>
85
					<td>
86
						<%
87
						String[] docids = 
88
							SessionService.getRegisteredSession(request.getSession().getId()).getDocumentCart().getDocids();
89
						Map fields = 
90
							SessionService.getRegisteredSession(request.getSession().getId()).getDocumentCart().getFields();
91
						%>
92
						<a href="cart.jsp" target="_top">
93
							Cart 
94
						</a>	
95
							<div id="importantThings">
96
								(Items: <%=docids.length %>, Fields: <%=fields.size() %>)
97
							</div>
98
					</td>
99
				</tr>
100
				<tr>
101
					<td colspan="3">
102
						<!-- for use when downloading merged data -->
103
						<form id='fieldForm'>
104
						<%
105
						Iterator fieldIter =  fields.keySet().iterator();
106
						while (fieldIter.hasNext()) {
107
							String key = (String) fieldIter.next();
108
							String value = (String) fields.get(key);
109
						%>
110
							<input type="hidden" name="<%=key %>" value="<%=value %>" />
111
						<%	
112
						}
113
						%>	
114
						</form>
115
					</td>
116
				</tr>
117
			</table>
118
		</td>
119
	</tr>
120
</table>		
121
</body>
122
</html>
(12-12/14)