Project

General

Profile

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