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 2258 jones
<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 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 searchString = trim(submitFormObj.elements["anyfield"].value);
46
                var checkBox = document.getElementById("searchCheckBox");
47
48
                if (searchString=="") {
49
                        searchString="%";
50
                }
51
52
                if(checkBox.checked == false && searchString != "%"){
53
                        submitFormObj.anyfield.value = "";
54
                        submitFormObj.title.value = searchString;
55
                        submitFormObj.surName.value = searchString;
56
                        submitFormObj.givenName.value = searchString;
57
                        submitFormObj.keyword.value = searchString;
58
                        submitFormObj.title.value = searchString;
59
                        submitFormObj.organizationName.value = searchString;
60
			submitFormObj.operator.value="UNION";
61
                        var abs = document.getElementById("abstract");
62
                        abs.value=searchString;
63
                }
64
                return true;
65
        }
66
67
        function searchAll(){
68
                var checkBox = document.getElementById("searchCheckBox");
69
                if(checkBox.checked == true){
70
                        alert("You have selected to search all possible existing fields. This search will take longer.");
71
                }
72
        }
73
74
	function searchKNB(){
75
                var checkBox = document.getElementById("knbCheckBox");
76
                if(checkBox.checked == true){
77
                        alert("You have selected to search KNB data also.");
78
                }
79
        }
80
81
82
  </script>
83 2258 jones
</head>
84
<body>
85
      <script language="JavaScript">
86
          insertTemplateOpening();
87
          insertSearchBox();
88
      </script>
89
<table width="760" border="0" cellspacing="0" cellpadding="0">
90
  <tr><td colspan="5">
91
<p>
92 2408 sgarg
Welcome to the ESA Data Registry. This is a publically accessible registry
93 2266 jones
describing <b>scientific data sets on ecology and the environment</b>.  In this
94
context, we refer to a data set as the collection of data tables and objects
95
that are associated with a study, experiment, or monitoring program.  Exactly
96
what constitutes a data set is determined by each submitter.
97 2408 sgarg
Credit for the data sets in this registry goes to the investigators who
98 2258 jones
collected the data -- see each individual registry entry for citation and
99
attribution information as well as usage rights.
100
</p>
101 2433 sgarg
</td></tr>
102
<tr><td colspan="5">
103 2258 jones
<p><b>Registry Tools</b></p>
104
<p>
105
<menu>
106 2528 sgarg
<li><span class="searchbox">Search for Data Sets</span><br />
107 2258 jones
    <menu>
108 2527 sgarg
<form method="POST" action="@servlet-path@" target="_top" onSubmit="return checkSearch(this)">
109 2266 jones
  <input value="INTERSECT" name="operator" type="hidden">
110 2527 sgarg
  &nbsp;<input size="14" name="anyfield" type="text" value="">
111
  <input type="hidden" name="organizationName">
112
  <input type="hidden" name="surName">
113
  <input type="hidden" name="givenName">
114
  <input type="hidden" name="keyword">
115
  <input type="hidden" name="title">
116
  <input type="hidden" name="abstract/para" id="abstract">
117 2266 jones
  <input name="action" value="query" type="hidden">
118
  <input name="qformat" value="esa" type="hidden">
119
  <input name="enableediting" value="true" type="hidden">
120
  <input name="returnfield" value="originator/individualName/surName" type="hidden">
121
  <input name="returnfield" value="originator/individualName/givenName" type="hidden">
122
  <input name="returnfield" value="creator/individualName/surName" type="hidden">
123
  <input name="returnfield" value="creator/individualName/givenName" type="hidden">
124
  <input name="returnfield" value="originator/organizationName" type="hidden">
125
  <input name="returnfield" value="creator/organizationName" type="hidden">
126
  <input name="returnfield" value="dataset/title" type="hidden">
127
  <input name="returnfield" value="keyword" type="hidden">
128
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
129
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
130
  <input name="returndoctype" value="-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN" type="hidden">
131
  <input name="returndoctype" value="-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN" type="hidden">
132
  <input name="returndoctype" value="-//NCEAS//resource//EN" type="hidden">
133
  <input name="returndoctype" value="-//NCEAS//eml-dataset//EN" type="hidden">
134
  <input value="Search" type="submit">
135
</form>
136 2527 sgarg
  <input type="CHECKBOX" name="searchAll" onClick="searchAll()" id="searchCheckBox" >
137
  <span class="regtext">Search All Fields</span>
138
  &nbsp;&nbsp;&nbsp;&nbsp;
139
  <input type="CHECKBOX" name="searchKNB" onClick="searchKNB()" id="knbCheckBox" >
140 2528 sgarg
  <span class="regtext">Search Knowledge Network for Biocomplexity</span>
141 2527 sgarg
   <br><br>
142 2528 sgarg
      This tool allows you to search the registry for data
143
      sets of interest. When you type in text in the box
144
      and click on the "Search" button, the search will be
145
      conducted within the title, author, abstract, and
146
      keyword fields only. Checking the "Search All Fields" box
147
      will perform a search on all possible existing
148
      fields (this search will take more time). Checking
149
      the "Search Knowledge Network for Biocomplexity" box
150
      will allow you to search the Knowledge Network for
151
      Biocomplexity (KNB) in addition to the ESA Data
152
      Registry. The KNB is an international data repository
153
      dedicated to facilitating ecological and environmental
154
      research. Click <a href="http://knb.ecoinformatics.org/">
155
      here </a> for more information on the KNB.
156
     <br><br>
157
      You can use the '%' character as a wildcard in your
158
      searches (e.g., '%biodiversity%' would locate any
159
      phrase with the word biodiversity embedded within it).
160 2266 jones
      </menu>
161 2527 sgarg
    <br><br>
162 2266 jones
  </li>
163 2287 jones
  <li><a href="@servlet-path@?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;qformat=esa&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 data sets</a><br />
164 2266 jones
    <menu>
165
    Browse all existing data sets by title.  This operation can be slow as the
166
    number of entries in the registry grows.
167 2258 jones
    </menu>
168
  </li>
169
  <p>&nbsp;</p>
170
  <li><a href="@cgi-prefix@/register-dataset.cgi?cfg=esa">Register a new
171
       data set</a><br />
172
    <menu>
173
      The registration page is used to submit information about a <b>new</b>
174 2266 jones
      data set regarding ecology or the environment.  The documentation about
175
      the data set will be submitted to the Registry.  You (and only
176
      you, or your designee) can return to edit the entry
177
      at a later point in time to add to or correct the
178
      description.  You can also use other tools such as <a
179
      href="http://knb.ecoinformatics.org/morphoportal.jsp">Morpho</a> to
180
      further document the set of data and directly attach the data to the
181
      registry entry.
182 2258 jones
    </menu>
183
  </li>
184
  <p>&nbsp;</p>
185
  <li><a href="@cgi-prefix@/ldapweb.cgi?cfg=esa">Create a new account</a>
186
    <ul>
187
        <li><a href="@cgi-prefix@/ldapweb.cgi?cfg=esa&amp;stage=changepass">Change your password</a>
188
        <li><a href="@cgi-prefix@/ldapweb.cgi?cfg=esa&amp;stage=resetpass">Reset your password</a>
189
    </ul>
190
    <br />
191
    <menu>
192
      The account management tools are used to create and manage registry
193
      accounts.   Accounts are free, and are used to identify contributors
194
      so that they can maintain their entries in the future.
195
    </menu>
196
  </li>
197
</menu>
198
</p>
199
  </td></tr>
200 2266 jones
  <tr><td>
201
    <p>
202
    This project is a cooperative effort of the <a
203
    href="http://www.esa.org/longterm/">Long-Term Studies Section (LTSS)</a>
204
    of the ESA, the <a href="http://www.esa.org">Ecological Society of
205
    America</a>, the <a href="http://www.nceas.ucsb.edu">National
206
    Center for Ecological Analysis and Synthesis (NCEAS)</a> and the <a
207
    href="http://www.lternet.edu">Long-Term Ecological Research Network
208
    (LTER)</a>.  The Data Registry is based on software developed by
209
    the <a href="http://knb.ecoinformatics.org">Knowledge Network for
210
    Biocomplexity (KNB)</a>, and houses metadata that are compliant with <a
211
    href="http://knb.ecoinformatics.org/software/eml/">Ecological Metadata
212
    Language (EML)</a>.  Consequently, data registered in this registry
213
    also are accessible from the larger collection of data found in the
214
    <a href="http://knb.ecoinformatics.org">KNB registry</a>.  Other sites
215
    contributing to the KNB registry include:
216
    <ul>
217
    <li><a href="http://knb.ecoinformatics.org/knb/obfs">Organization of
218
    Biological Field Stations registry</a>  </li>
219
    <li><a href="http://knb.ecoinformatics.org/knb/style/skins/nrs">UC
220
    Natural Reserve System registry</a>  </li>
221
    <li><a href="http://knb.ecoinformatics.org/knb/style/skins/nceas">NCEAS
222
    registry</a>  </li>
223
    <li><a href="http://knb.ecoinformatics.org/knb/style/skins/specnet">
224
    SpecNet registry</a>  </li>
225
    </ul>
226
    </p>
227
  </td></tr>
228 2258 jones
</table>
229
<p>&nbsp;</p>
230 2266 jones
<p>&nbsp;</p>
231 2258 jones
<script language="JavaScript">
232
    insertTemplateClosing();
233
</script>
234
</body>
235
</html>