Project

General

Profile

1
<!--
2
  *  '$RCSfile$'
3
  *    Copyright: 2004 Regents of the University of California and the
4
  *               National Center for Ecological Analysis and Synthesis
5
  *  For Details: http://www.nceas.ucsb.edu/
6
  *
7
  *   '$Author: sgarg $'
8
  *     '$Date: 2005-10-20 14:01:24 -0700 (Thu, 20 Oct 2005) $'
9
  * '$Revision: 2686 $'
10
  * 
11
  * This is an HTML document for displaying metadata catalog tools
12
  *
13
  * This program is free software; you can redistribute it and/or modify
14
  * it under the terms of the GNU General Public License as published by
15
  * the Free Software Foundation; either version 2 of the License, or
16
  * (at your option) any later version.
17
  *
18
  * This program is distributed in the hope that it will be useful,
19
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
  * GNU General Public License for more details.
22
  *
23
  * You should have received a copy of the GNU General Public License
24
  * along with this program; if not, write to the Free Software
25
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
-->
27
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
28
<html>
29
<head>
30
<title>ESA Data Registry</title>
31
<link rel="stylesheet" href="@html-path@/style/default.css" type="text/css">
32
  <link rel="stylesheet" type="text/css" 
33
        href="@systemidserver@@style-skins-path@/esa/esa.css"></link>
34
  <script language="JavaScript" type="text/JavaScript"
35
          src="@systemidserver@@style-skins-path@/esa/esa.js"></script>
36
  <script language="JavaScript" type="text/JavaScript"
37
          src="@systemidserver@@style-common-path@/branding.js"></script>
38
  <script language="Javascript">
39

    
40
	function trim(stringToTrim) {
41
                return stringToTrim.replace(/^\s*/, '').replace(/\s*$/,'');
42
        }
43

    
44
        function checkSearch(submitFormObj) {
45
                var checkBox = document.getElementById("searchCheckBox");
46
                var searchBox = document.getElementById("searchBox");
47
                var searchString = trim(searchBox.value);
48

    
49
                if (searchString=="") {
50
                        searchString="%";
51
                }
52

    
53
                if(checkBox.checked == false){
54
			if(searchString!="%"){
55
                        	searchBox.name = "title";
56
				searchBox.id = "searchBox";
57
			
58
                        	submitFormObj.surName.value = searchString;
59
	                        submitFormObj.givenName.value = searchString;
60
        	                submitFormObj.keyword.value = searchString;
61
                        	submitFormObj.organizationName.value = searchString;
62
	                        submitFormObj.para.value = searchString;
63
        	                submitFormObj.geographicDescription.value = searchString;
64
                	        submitFormObj.literalLayout.value = searchString;
65
				submitFormObj.operator.value="UNION";
66
	                        var abs = document.getElementById("abstract");
67
        	                abs.value=searchString;
68
			} else {
69
	                        searchBox.name = "anyfield";
70
				searchBox.id = "searchBox";
71
				submitFormObj.surName.value = "";
72
                                submitFormObj.givenName.value = "";
73
                                submitFormObj.keyword.value = "";
74
                                submitFormObj.organizationName.value = "";
75
                                submitFormObj.para.value = "";
76
                                submitFormObj.geographicDescription.value = "";
77
                                submitFormObj.literalLayout.value = "";
78
                                submitFormObj.operator.value="INTERSECT";
79
                                var abs = document.getElementById("abstract");
80
                                abs.value="";
81

    
82
			}
83
                } else {
84
                        searchBox.name = "anyfield";
85
			searchBox.id = "searchBox";
86
			submitFormObj.surName.value = "";
87
	                submitFormObj.givenName.value = "";
88
                        submitFormObj.keyword.value = "";
89
                        submitFormObj.organizationName.value = "";
90
                        submitFormObj.para.value = "";
91
                        submitFormObj.geographicDescription.value = "";
92
                        submitFormObj.literalLayout.value = "";
93
                        submitFormObj.operator.value="INTERSECT";
94
                        var abs = document.getElementById("abstract");
95
                        abs.value="";
96
		}
97

    
98
                var knbCheckBox = document.getElementById("knbCheckBox");
99
                if(knbCheckBox.checked == true){
100
                        document.forms[0].action = "http://knb.ecoinformatics.org/knb/servlet/metacat";
101
                }
102

    
103
                var actionField=document.createElement("input");
104
                actionField.setAttribute("type", "hidden");
105
                actionField.setAttribute("name", "action");
106
                actionField.setAttribute("value", "query");
107
                submitFormObj.appendChild(actionField);
108

    
109
                return true;
110
        }
111

    
112
        function searchAll(){
113
                var checkBox = document.getElementById("searchCheckBox");
114
                if(checkBox.checked == true){
115
                        alert("You have selected to search all possible existing fields. This search will take longer.");
116
                }
117
        }
118

    
119
	function searchKNB(){
120
                var checkBox = document.getElementById("knbCheckBox");
121
                if(checkBox.checked == true){
122
                        alert("You have selected to search KNB data also.");
123
                }
124
        }
125

    
126

    
127
  </script>
128
</head>
129
<body>
130
      <script language="JavaScript">
131
          insertTemplateOpening();
132
          insertSearchBox();
133
      </script>
134
<table width="760" border="0" cellspacing="0" cellpadding="0">
135
  <tr><td colspan="5">
136
<p>
137
Welcome to the ESA Data Registry. This is a publically accessible registry
138
describing <b>scientific data sets on ecology and the environment</b>.  In this
139
context, we refer to a data set as the collection of data tables and objects
140
that are associated with a study, experiment, or monitoring program.  Exactly
141
what constitutes a data set is determined by each submitter.
142
Credit for the data sets in this registry goes to the investigators who
143
collected the data -- see each individual registry entry for citation and
144
attribution information as well as usage rights.
145
</p>
146
</td></tr>
147
<tr><td colspan="5">
148
<p><b>Registry Tools</b></p>
149
<p>
150
<menu>
151
<li><span class="searchbox"><a name="search"> Search for Data Sets</a></span><br />
152
    <menu>
153
<form method="POST" action="@servlet-path@" target="_top" onSubmit="return checkSearch(this)">
154
  <input value="INTERSECT" name="operator" type="hidden">   
155
  &nbsp;<input size="14" name="anyfield" type="text" value="" id="searchBox">
156
  <input type="hidden" name="organizationName">
157
  <input type="hidden" name="surName">
158
  <input type="hidden" name="givenName">
159
  <input type="hidden" name="keyword">
160
  <input type="hidden" name="para">
161
  <input type="hidden" name="geographicDescription">
162
  <input type="hidden" name="literalLayout">
163
  <input type="hidden" name="abstract/para" id="abstract">
164
  <input name="qformat" value="esa" type="hidden">
165
  <input name="returnfield" value="originator/individualName/surName" type="hidden">
166
  <input name="returnfield" value="originator/individualName/givenName" type="hidden">
167
  <input name="returnfield" value="creator/individualName/surName" type="hidden">
168
  <input name="returnfield" value="creator/individualName/givenName" type="hidden">
169
  <input name="returnfield" value="originator/organizationName" type="hidden">
170
  <input name="returnfield" value="creator/organizationName" type="hidden">
171
  <input name="returnfield" value="dataset/title" type="hidden">
172
  <input name="returnfield" value="keyword" type="hidden">
173
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
174
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
175
  <input name="returndoctype" value="-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN" type="hidden">
176
  <input name="returndoctype" value="-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN" type="hidden">
177
  <input name="returndoctype" value="-//NCEAS//resource//EN" type="hidden">
178
  <input name="returndoctype" value="-//NCEAS//eml-dataset//EN" type="hidden">
179
  <input value="Search" type="submit">
180
</form>
181
  <input type="CHECKBOX" name="searchAll" onClick="searchAll()" id="searchCheckBox" >
182
  <span class="regtext">Search All Fields</span>
183
  &nbsp;&nbsp;&nbsp;&nbsp;
184
  <input type="CHECKBOX" name="searchKNB" onClick="searchKNB()" id="knbCheckBox" >
185
  <span class="regtext">Include data from the Knowledge Network for Biocomplexity</span>
186
   <br><br>
187
      This tool allows you to search the registry for data 
188
      sets of interest. When you type text in the box and 
189
      click on the "Search" button, the search will only 
190
      be conducted within the title, author, abstract,
191
      and keyword fields. Checking the "Search All Fields" 
192
      box will search on these and all other existing 
193
      fields (this search will take more time). Checking 
194
      the "Search Knowledge Network for Biocomplexity" box 
195
      will allow you to search the Knowledge Network for 
196
      Biocomplexity (KNB) in addition to the ESA Data 
197
      Registry. The KNB is an international data repository 
198
      dedicated to facilitating ecological and environmental 
199
      research. Click <a href="http://knb.ecoinformatics.org/">
200
      here </a> for more information on the KNB.
201
     <br><br>
202
      You can use the '%' character as a wildcard in your 
203
      searches (e.g., '%biodiversity%' would locate any 
204
      phrase with the word biodiversity embedded within it).
205
      </menu>
206
    <br><br>
207
  </li>
208
  <li><a href="@servlet-path@?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;qformat=esa&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 data sets</a><br />
209
    <menu>
210
    Browse all existing data sets by title.  This operation can be slow as the
211
    number of entries in the registry grows.
212
    </menu>
213
  </li>
214
  <p>&nbsp;</p>
215
  <li><a href="@cgi-prefix@/register-dataset.cgi?cfg=esa">Register a new 
216
       data set</a><br />
217
    <menu>
218
      The registration page is used to submit information about a <b>new</b>
219
      data set regarding ecology or the environment.  The documentation about 
220
      the data set will be submitted to the Registry.  You (and only
221
      you, or your designee) can return to edit the entry
222
      at a later point in time to add to or correct the
223
      description.  You can also use other tools such as <a
224
      href="http://knb.ecoinformatics.org/morphoportal.jsp">Morpho</a> to
225
      further document the set of data and directly attach the data to the
226
      registry entry.
227
    </menu>
228
  </li>
229
  <p>&nbsp;</p>
230
  <li><a href="@cgi-prefix@/ldapweb.cgi?cfg=esa">Create a new account</a>
231
    <ul>
232
        <li><a href="@cgi-prefix@/ldapweb.cgi?cfg=esa&amp;stage=changepass">Change your password</a>
233
        <li><a href="@cgi-prefix@/ldapweb.cgi?cfg=esa&amp;stage=resetpass">Reset your password</a>
234
    </ul>
235
    <br />
236
    <menu>
237
      The account management tools are used to create and manage registry 
238
      accounts.   Accounts are free, and are used to identify contributors
239
      so that they can maintain their entries in the future.  
240
    </menu>
241
  </li>
242
</menu>
243
</p>
244
  </td></tr>
245
  <tr><td>
246
    <p>
247
    This project is a cooperative effort of the <a
248
    href="http://www.esa.org/longterm/">Long-Term Studies Section (LTSS)</a>
249
    of the ESA, the <a href="http://www.esa.org">Ecological Society of
250
    America</a>, the <a href="http://www.nceas.ucsb.edu">National
251
    Center for Ecological Analysis and Synthesis (NCEAS)</a> and the <a
252
    href="http://www.lternet.edu">Long-Term Ecological Research Network
253
    (LTER)</a>.  The Data Registry is based on software developed by
254
    the <a href="http://knb.ecoinformatics.org">Knowledge Network for
255
    Biocomplexity (KNB)</a>, and houses metadata that are compliant with <a
256
    href="http://knb.ecoinformatics.org/software/eml/">Ecological Metadata
257
    Language (EML)</a>.  Consequently, data registered in this registry
258
    also are accessible from the larger collection of data found in the
259
    <a href="http://knb.ecoinformatics.org">KNB registry</a>.  Other sites
260
    contributing to the KNB registry include:
261
    <ul>
262
    <li><a href="http://knb.ecoinformatics.org/knb/style/skins/obfs">Organization of
263
    Biological Field Stations registry</a>  </li>
264
    <li><a href="http://knb.ecoinformatics.org/knb/style/skins/nrs">UC
265
    Natural Reserve System registry</a>  </li>
266
    <li><a href="http://knb.ecoinformatics.org/knb/style/skins/nceas">NCEAS
267
    registry</a>  </li>
268
    <li><a href="http://knb.ecoinformatics.org/knb/style/skins/specnet">
269
    SpecNet registry</a>  </li>
270
    </ul>
271
    </p>
272
  </td></tr>
273
</table>
274
<p>&nbsp;</p>
275
<p>&nbsp;</p>
276
<script language="JavaScript">          
277
    insertTemplateClosing();
278
</script>
279
</body>
280
</html>
(10-10/12)