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: bowdish $'
8
  *     '$Date: 2005-12-16 17:02:09 -0800 (Fri, 16 Dec 2005) $'
9
  * '$Revision: 2877 $'
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
	                        var pid = document.getElementById("packageId");
69
        	                pid.value=searchString;
70
			} else {
71
	                        searchBox.name = "anyfield";
72
				searchBox.id = "searchBox";
73
				submitFormObj.surName.value = "";
74
                                submitFormObj.givenName.value = "";
75
                                submitFormObj.keyword.value = "";
76
                                submitFormObj.organizationName.value = "";
77
                                submitFormObj.para.value = "";
78
                                submitFormObj.geographicDescription.value = "";
79
                                submitFormObj.literalLayout.value = "";
80
                                submitFormObj.operator.value="INTERSECT";
81
                                var abs = document.getElementById("abstract");
82
                                abs.value="";
83
	                        var pid = document.getElementById("packageId");
84
        	                pid.value="";
85
			}
86
                } else {
87
                        searchBox.name = "anyfield";
88
			searchBox.id = "searchBox";
89
			submitFormObj.surName.value = "";
90
	                submitFormObj.givenName.value = "";
91
                        submitFormObj.keyword.value = "";
92
                        submitFormObj.organizationName.value = "";
93
                        submitFormObj.para.value = "";
94
                        submitFormObj.geographicDescription.value = "";
95
                        submitFormObj.literalLayout.value = "";
96
                        submitFormObj.operator.value="INTERSECT";
97
                        var abs = document.getElementById("abstract");
98
                        abs.value="";
99
	                var pid = document.getElementById("packageId");
100
        	        pid.value="";
101
		}
102

    
103
                var knbCheckBox = document.getElementById("knbCheckBox");
104
                if(knbCheckBox.checked == true){
105
                        document.forms[0].action = "http://knb.ecoinformatics.org/knb/servlet/metacat";
106
                }
107

    
108
                var actionField=document.createElement("input");
109
                actionField.setAttribute("type", "hidden");
110
                actionField.setAttribute("name", "action");
111
                actionField.setAttribute("value", "query");
112
                submitFormObj.appendChild(actionField);
113

    
114
                return true;
115
        }
116

    
117
  </script>
118
  <style type="text/css">
119
<!--
120
.style2 {font-size: 14px}
121
-->
122
  </style>
123
</head>
124
<body>
125
      <script language="JavaScript">
126
          insertTemplateOpening();
127
          insertSearchBox();
128
      </script>
129
<table width="760" border="0" cellspacing="0" cellpadding="0"><!--DWLayoutTable-->
130
  <tr><td colspan="5">
131
 
132
<p>
133
Welcome to the ESA Data Registry. This is a publically accessible registry
134
describing <b>scientific data sets on ecology and the environment</b>.  The
135
data sets registered here are associated with articles published in the
136
journals of the Ecological Society of America.  They are registered here
137
in order to facilitate communication and data sharing by scientists.  See
138
individual registry entries for citation information as well as usage rights.</p>
139

    
140

    
141

    
142
   
143
<table cellpadding="8" cellspacing="0" class="tables">
144
    <tr class="sectheader">
145
	<td class="borderbottom" colspan="2" align="left">  SEARCH FOR DATA SETS</td>
146
  </tr><tr>
147
	  <td><table width="760" border="0" align="left" cellpadding="0" cellspacing="0">
148
	    <tr>
149
<td><form method="POST" action="@servlet-path@" target="_top" onSubmit="return checkSearch(this)">
150
  <input value="INTERSECT" name="operator" type="hidden">
151
  <input type="hidden" name="organizationName">
152
  <input type="hidden" name="surName">
153
  <input type="hidden" name="givenName">
154
  <input type="hidden" name="keyword">
155
  <input type="hidden" name="para">
156
  <input type="hidden" name="geographicDescription">
157
  <input type="hidden" name="literalLayout">
158
  <input type="hidden" name="@packageId" id="packageId">
159
  <input type="hidden" name="abstract/para" id="abstract">
160
  <input name="qformat" value="esa" type="hidden">
161
  <input name="returnfield" value="originator/individualName/surName" type="hidden">
162
  <input name="returnfield" value="originator/individualName/givenName" type="hidden">
163
  <input name="returnfield" value="creator/individualName/surName" type="hidden">
164
  <input name="returnfield" value="creator/individualName/givenName" type="hidden">
165
  <input name="returnfield" value="originator/organizationName" type="hidden">
166
  <input name="returnfield" value="creator/organizationName" type="hidden">
167
  <input name="returnfield" value="dataset/title" type="hidden">
168
  <input name="returnfield" value="keyword" type="hidden">
169
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.1" type="hidden">
170
  <input name="returndoctype" value="eml://ecoinformatics.org/eml-2.0.0" type="hidden">
171
  <input name="returndoctype" value="-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN" type="hidden">
172
  <input name="returndoctype" value="-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN" type="hidden">
173
  <input name="returndoctype" value="-//NCEAS//resource//EN" type="hidden">
174
  <input name="returndoctype" value="-//NCEAS//eml-dataset//EN" type="hidden">
175
  &nbsp;<input size="14" name="anyfield" type="text" value="" id="searchBox">
176
  <input value="Search" type="submit">
177
</form></td>
178
<td><form>
179
<input name="search" type="radio" checked><span > Search only within the ESA Data Registry</span></input><br>
180
<input name="search" type="radio" id="knbCheckBox"><span > Search entire Knowledge Network for Biocomplexity</span></input>
181
</form></td>
182
</tr>
183
</table></td>
184
</tr>
185
<tr class="borderbottom" ><td><form>
186
  <input name="searchAll" type="radio" checked><span >Search Title, Abstract, Keywords, Personnel (Quicker)</span></input><br>
187
  <input name="searchAll" type="radio" id="searchCheckBox"><span >Search all fields (Slower)</span></input>
188
</form>
189
   
190
    This tool allows you to search the registry for data 
191
      sets of interest. When you type text in the box and 
192
      click on the "Search" button, the search will only be conducted within the title, author, abstract, and keyword fields. Checking the "Search All Fields" box will search on these and all other existing fields (this search will take more time). Checking the "Search Knowledge Network for Biocomplexity" box will allow you to search the Knowledge Network for Biocomplexity (KNB) in addition to the ESA Data Registry. The KNB is an international data repository dedicated to facilitating ecological and environmental research. Click <a href="http://knb.ecoinformatics.org/"> here </a> for more information on the KNB. <br>
193
      <br>
194
You can use the '%' character as a wildcard in your searches (e.g., '%biodiversity%' would locate any phrase with the word biodiversity embedded within it).</td>
195
</tr><tr><td class="borderbottom">
196
<p align="center">    
197
      <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 existing ESA data sets by title</a><br>
198
(This operation can be slow as the number of entries in the registry grows.)</td></tr>     
199
      
200
	<tr class="sectheader" >
201
	<td class="borderbottom" colspan="2" align="left">
202
         REGISTER A NEW DATA SET </td>
203
  </tr>
204
  
205
 
206
  <tr class="borderbottom" >
207
    <td  colspan="2" class="borderbottom" align="center"><div align="left">
208
      <p> The ESA Data Registry form is for registering data sets associated with articles published in the journals of the Ecological Society of America. Other Ecological data sets can be registered with the Knowledge Network for Biocomplexity (KNB). </p>
209
      <p><strong>Steps for registering an ESA data set</strong> </p>
210
      <p><span class="greenbold">Step 1: Create an Account</span> <br>
211
  Create an account by registering with the <a href="http://knb.ecoinformatics.org">KNB</a>. Many scientists will already have accounts in the KNB, especially those from institutions like NCEAS and LTER. If you already have an account please use that existing account rather than creating a new one.</p>
212
      <p><span class="greenbold">Step 2: Login</span><br>
213
  Login to the ESA Registry website with the account you created. Fill out the ESA Data Registry Form. A page titled "Success" will appear when the form has been successfully submitted.</p>
214
      <p><span class="greenbold">Step 3: Register Data</span><br>
215
  Fill out the <a href="http://data.esa.org/cgi-bin/register-dataset.cgi?cfg=esa">ESA Data Registry Form</a>. A page titled "Success" will appear when the form has been successfully submitted. </p>
216
      <p> <span class="greenbold">Step 4: Look for Feedback</span> <br>
217
  After you submit, watch for e-mail sent by the ESA moderator&nbsp; regarding whether your data set has been accepted </p>
218
    </div></td>
219
	
220
</table>
221

    
222

    
223
    <p><a href="@cgi-prefix@/ldapweb.cgi?cfg=esa">Create a new account</a>    </p>
224
   <ul>
225
      <li><a href="@cgi-prefix@/ldapweb.cgi?cfg=esa&amp;stage=changepass">Change your password</a>
226
      <li><a href="@cgi-prefix@/ldapweb.cgi?cfg=esa&amp;stage=resetpass">Reset your password</a>
227
    </ul>
228
    <p>
229
  The account management tools are used to create and manage registry accounts. Accounts are free, and are used to identify contributors so that they can maintain their entries in the future.</p>
230
  
231
    <table width="760" border="0" cellpadding="0" cellspacing="0">
232
  <tr><td><p><b>About the Registry</b></p></td></tr>
233
  <tr><td>
234
    <p>
235
    This project is a cooperative effort of the
236
    <a href="http://www.esa.org">Ecological Society of
237
    America</a> and the <a href="http://www.nceas.ucsb.edu">National
238
    Center for Ecological Analysis and Synthesis (NCEAS)</a>.  
239
    The Data Registry is based on software developed by
240
    the <a href="http://knb.ecoinformatics.org">Knowledge Network for
241
    Biocomplexity (KNB)</a>, and houses metadata that are compliant with <a
242
    href="http://knb.ecoinformatics.org/software/eml/">Ecological Metadata
243
    Language (EML)</a>.  Consequently, data found in this registry
244
    also are accessible from the larger collection of data found in the
245
    <a href="http://knb.ecoinformatics.org">Knowledge Network for 
246
    Biocomplexity (KNB)</a>.  
247
    </p>
248
  </td></tr>
249
</table>
250
</table>
251
  <script language="JavaScript">          
252
    insertTemplateClosing();
253
</script>
254
</body>
255
</html>
(14-14/16)