Project

General

Profile

1 3780 daigle
<%@ page    language="java" %>
2
<%
3
/**
4
 *  '$RCSfile$'
5
 *      Authors: Matt Jones
6
 *    Copyright: 2008 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 is an HTML document for displaying metadata catalog tools
15
 *
16
 * This program is free software; you can redistribute it and/or modify
17
 * it under the terms of the GNU General Public License as published by
18
 * the Free Software Foundation; either version 2 of the License, or
19
 * (at your option) any later version.
20
 *
21
 * This program is distributed in the hope that it will be useful,
22
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24
 * GNU General Public License for more details.
25
 *
26
 * You should have received a copy of the GNU General Public License
27
 * along with this program; if not, write to the Free Software
28
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
29
 */
30
%>
31
32
<%@ include file="../../common/common-settings.jsp"%>
33 4080 daigle
<%@ include file="../../common/configure-check.jsp"%>
34 3780 daigle
35
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
36
<html>
37
<head>
38
<title>UCNRS Data Registry</title>
39
  <link rel="stylesheet" type="text/css"
40
        href="<%=STYLE_SKINS_URL%>/nrs/nrs.css"></link>
41
  <script language="JavaScript" type="text/JavaScript"
42
          src="<%=STYLE_SKINS_URL%>/nrs/nrs.js"></script>
43
  <script language="JavaScript" type="text/JavaScript"
44
          src="<%=STYLE_COMMON_URL%>/branding.js"></script>
45
  <script language="Javascript">
46
47
        function trim(stringToTrim) {
48
                return stringToTrim.replace(/^\s*/, '').replace(/\s*$/,'');
49
        }
50
51
        function checkSearch(submitFormObj) {
52
                var searchString = trim(submitFormObj.searchstring.value);
53
		var checkBox = document.getElementById("searchAll");
54
55
                if (searchString=="") {
56
			if (confirm("Show *all* data in the KNB?")) {
57
            			searchString = "%";
58
          		} else {
59
            			return false;
60
          		}
61
                }
62
63
		if(!checkBox.checked && searchString!="%"){
64
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
65
							   +"<querytitle>Web-Search</querytitle>"
66
							   +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
67
							   +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
68
							   +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
69
							   +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
70
							   +"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
71
							   +"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
72
	                                                   +"<returnfield>originator/individualName/surName</returnfield>"
73
        	                                           +"<returnfield>originator/individualName/givenName</returnfield>"
74
                	                                   +"<returnfield>creator/individualName/surName</returnfield>"
75
                        	                           +"<returnfield>creator/individualName/givenName</returnfield>"
76
                                	                   +"<returnfield>originator/organizationName</returnfield>"
77
                                        	           +"<returnfield>creator/organizationName</returnfield>"
78
                                                	   +"<returnfield>dataset/title</returnfield>"
79
	                                                   +"<returnfield>keyword</returnfield>"
80
        	                                           +"<querygroup operator=\"INTERSECT\">"
81
							   	+"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
82
                        	                           		+"<value>University of California Natural Reserve System</value>"
83
									+"<pathexpr>organizationName</pathexpr>"
84
							   	+"</queryterm>"
85
							   	+"<querygroup operator=\"UNION\">"
86
									+"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
87
							     			+"<value>" + searchString + "</value>"
88
							     			+"<pathexpr>surName</pathexpr>"
89
									+"</queryterm>"
90
									+"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
91
							     			+"<value>" + searchString + "</value>"
92
							     			+"<pathexpr>givenName</pathexpr>"
93
									+"</queryterm>"
94
									+"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
95
							     			+"<value>" + searchString + "</value>"
96
							     			+"<pathexpr>keyword</pathexpr>"
97
									+"</queryterm>"
98
									+"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
99
							     			+"<value>" + searchString + "</value>"
100
							     			+"<pathexpr>para</pathexpr>"
101
									+"</queryterm>"
102
									+"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
103
							     			+"<value>" + searchString + "</value>"
104
							     			+"<pathexpr>geographicDescription</pathexpr>"
105
									+"</queryterm>"
106
									+"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
107
							     			+"<value>" + searchString + "</value>"
108
							     			+"<pathexpr>literalLayout</pathexpr>"
109
									+"</queryterm>"
110
									+"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
111
							     			+"<value>" + searchString + "</value>"
112
							     			+"<pathexpr>title</pathexpr>"
113
									+"</queryterm>"
114
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
115
                                                                                +"<value>" + searchString + "</value>"
116
                                                                                +"<pathexpr>@packageId</pathexpr>"
117
                                                                        +"</queryterm>"
118
									+"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
119
							     			+"<value>" + searchString + "</value>"
120
							     			+"<pathexpr>abstract/para</pathexpr>"
121
									+"</queryterm>"
122
							   	+"</querygroup>"
123
							  +"</querygroup>"
124
						  +"</pathquery>";
125
                } else {
126
			queryTermString = "";
127
			if(searchString != "%"){
128
				queryTermString = "<queryterm searchmode=\"contains\" casesensitive=\"false\">"
129
                                                  	+"<value>" + searchString + "</value>"
130
                                                 +"</queryterm>";
131
			}
132
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
133
                                                           +"<querytitle>Web-Search</querytitle>"
134
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
135
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
136
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
137
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
138
                                                           +"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
139
                                                           +"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
140
                                                           +"<returnfield>originator/individualName/surName</returnfield>"
141
                                                           +"<returnfield>originator/individualName/givenName</returnfield>"
142
                                                           +"<returnfield>creator/individualName/surName</returnfield>"
143
                                                           +"<returnfield>creator/individualName/givenName</returnfield>"
144
                                                           +"<returnfield>originator/organizationName</returnfield>"
145
                                                           +"<returnfield>creator/organizationName</returnfield>"
146
                                                           +"<returnfield>dataset/title</returnfield>"
147
                                                           +"<returnfield>keyword</returnfield>"
148
                                                           +"<querygroup operator=\"INTERSECT\">"
149
                                                                +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
150
                                                                        +"<value>University of California Natural Reserve System</value>"
151
                                                                        +"<pathexpr>organizationName</pathexpr>"
152
                                                                +"</queryterm>"
153
								+ queryTermString
154
                                                           +"</querygroup>"
155
						    +"</pathquery>";
156
157
                }
158
                return true;
159
        }
160
161
        function searchAll(){
162
                var checkBox = document.getElementById("searchCheckBox");
163
                if(checkBox.checked == true){
164
                        alert("You have selected to search all possible existing fields. This search will take longer.");
165
                }
166
        }
167
  </script>
168
</head>
169
<body>
170
      <script language="JavaScript">
171 4080 daigle
          insertTemplateOpening("<%=CONTEXT_URL%>");
172
          insertSearchBox("<%=CONTEXT_URL%>");
173 3780 daigle
      </script>
174
<table width="760" border="0" cellspacing="0" cellpadding="0">
175
  <tr><td colspan="5">
176
<p>
177
Welcome to the NRS Data Registry. This is the primary source for
178
comprehensive information about scientific and research data sets collected
179
within or under the auspices of the University of California's Natural
180
Reserve System.
181
</p>
182
</td></tr>
183
<tr><td colspan="5">
184
<p>
185
This project is a cooperative effort of the
186
<a href="http://nrs.ucop.edu">University of California's Natural Reserve System</a>,
187
and the <a href="http://www.nceas.ucsb.edu">National Center for
188
Ecological Analysis and Synthesis (NCEAS)</a>.
189
The Data Registry is based on software developed by the
190
<a href="http://knb.ecoinformatics.org">Knowledge Network for
191
Biocomplexity (KNB)</a>, and
192
houses metadata that are compliant with
193
<a href="http://knb.ecoinformatics.org/software/eml/">Ecological Metadata
194
Language (EML)</a>.
195
</p>
196
</td></tr>
197
<tr><td colspan="5">
198
<p>
199
Credit for the datasets in this registry goes to the investigators who
200
collected the data, and also to the NRS system for providing an effective and
201
pleasant environment for research and education at the individual reserves.
202
Our particular thanks go out to the NRS reserve managers and stewards, as
203
well as the system-wide NRS office maintained by the University of
204
California, for their comments and continuing support.
205
</p>
206
</td></tr>
207
<tr><td colspan="5">
208
<p><b>Registry Tools</b></p>
209
<p>
210
<menu>
211
<li><span class="searchbox"><a name="search"> Search for Data Sets</a></span><br />
212
    <menu>
213
<form method="POST" action="<%=SERVLET_URL%>" target="_top" onSubmit="return checkSearch(this)">
214
  <input value="UNION" name="operator" type="hidden">
215
  &nbsp;<input size="14" name="searchstring" type="text" value="" id="searchBox">
216
  <input name="query" type="hidden"/>
217
  <input name="qformat" value="nrs" type="hidden">
218
  <input name="enableediting" value="true" type="hidden">
219
  <input type="hidden" name="action" value="squery">
220
  <input value="Search" type="submit">
221
</form>
222
<form>
223
  <input name="search" type="radio" checked><span class="text_plain"> Search Title, Abstract, Keywords, Personnel (Quicker)</span></input><br>
224
  <input name="search" type="radio" id="searchAll"><span class="text_plain"> Search all fields (Slower)</span></input><br>
225
</form>
226
      This tool allows you to search the registry for data
227
      sets of interest. When you type text in the box and
228
      click on the "Search" button, the search will only
229
      be conducted within the title, author, abstract,
230
      and keyword fields. Checking the "Search All Fields"
231
      box will search on these and all other existing
232
      fields (this search will take more time).
233
     <br><br>
234
      You can use the '%' character as a wildcard in your
235
      searches (e.g., '%biodiversity%' would locate any
236
      phrase with the word biodiversity embedded within it).
237
      </menu>
238
    <br><br>
239
  </li>
240
241
  <li><a href="<%=SERVLET_URL%>?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;organizationName=University%20of%20California%20Natural%20Reserve%20System&amp;qformat=nrs&amp;enableediting=true&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returnfield=dataset/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName">Browse existing NRS data sets</a><br />
242
    <menu>
243
      The registry search system is used to locate data sets of interest
244
      by searching through existing registered data sets.
245
      Presently the search covers all fields, including
246
      author, title, abstract, keywords, and other documentation
247
      for each dataset.  (More sophisticated search capabilities,
248
      including boolean field searches, will be available in future.)
249
    </menu>
250
  </li>
251
  <p>&nbsp;</p>
252
  <li><a href="<%=CGI_URL%>/register-dataset.cgi?cfg=nrs">Register a new UCNRS
253
       data set</a><br />
254
    <menu>
255
      The registration page is used to submit information about a <b>new</b>
256
      data set associated with UCNRS research.  The documentation about the
257
      data set will be reviewed and then submitted to the Registry.
258
    </menu>
259
  </li>
260
261
  <p>&nbsp;</p>
262
  <li>
263
      <a href="map.jsp"> View Interactive Map </a>
264
      <menu> View and query the geographic coverages of the data sets. </menu>
265
  </li>
266
267
</menu>
268
</p>
269
  </td></tr>
270
</table>
271
<p>&nbsp;</p>
272
<script language="JavaScript">
273 4080 daigle
    insertTemplateClosing("<%=CONTEXT_URL%>");
274 3780 daigle
</script>
275
</body>
276
</html>