Project

General

Profile

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

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

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

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

    
53
                if(checkBox.checked == false && searchString!="%"){
54
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
55
                                                           +"<querytitle>Web-Search</querytitle>"
56
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
57
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
58
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
59
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
60
                                                           +"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
61
                                                           +"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
62
                                                           +"<returnfield>originator/individualName/surName</returnfield>"
63
                                                           +"<returnfield>originator/individualName/givenName</returnfield>"
64
                                                           +"<returnfield>creator/individualName/surName</returnfield>"
65
                                                           +"<returnfield>creator/individualName/givenName</returnfield>"
66
                                                           +"<returnfield>originator/organizationName</returnfield>"
67
                                                           +"<returnfield>creator/organizationName</returnfield>"
68
                                                           +"<returnfield>dataset/title</returnfield>"
69
                                                           +"<returnfield>keyword</returnfield>"
70
                                                           +"<querygroup operator=\"INTERSECT\">"
71
                                                                +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
72
                                                                        +"<value>Organization of Biological Field Stations</value>"
73
                                                                        +"<pathexpr>organizationName</pathexpr>"
74
                                                                +"</queryterm>"
75
                                                                +"<querygroup operator=\"UNION\">"
76
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
77
                                                                                +"<value>" + searchString + "</value>"
78
                                                                                +"<pathexpr>surName</pathexpr>"
79
                                                                        +"</queryterm>"
80
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
81
                                                                                +"<value>" + searchString + "</value>"
82
                                                                                +"<pathexpr>givenName</pathexpr>"
83
                                                                        +"</queryterm>"
84
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
85
                                                                                +"<value>" + searchString + "</value>"
86
                                                                                +"<pathexpr>keyword</pathexpr>"
87
                                                                        +"</queryterm>"
88
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
89
                                                                                +"<value>" + searchString + "</value>"
90
                                                                         +"<pathexpr>para</pathexpr>"
91
                                                                        +"</queryterm>"
92
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
93
                                                                                +"<value>" + searchString + "</value>"
94
                                                                                +"<pathexpr>geographicDescription</pathexpr>"
95
                                                                        +"</queryterm>"
96
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
97
                                                                                +"<value>" + searchString + "</value>"
98
                                                                                +"<pathexpr>literalLayout</pathexpr>"
99
                                                                        +"</queryterm>"
100
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
101
                                                                                +"<value>" + searchString + "</value>"
102
                                                                                +"<pathexpr>abstract/para</pathexpr>"
103
                                                                        +"</queryterm>"
104
                                                                +"</querygroup>"
105
                                                          +"</querygroup>"
106
                                                  +"</pathquery>";
107
                } else {
108
                        queryTermString = "";
109
                        if(searchString != "%"){
110
                                queryTermString = "<queryterm searchmode=\"contains\" casesensitive=\"false\">"
111
                                                        +"<value>" + searchString + "</value>"
112
                                                 +"</queryterm>";
113
                        }
114
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
115
                                                           +"<querytitle>Web-Search</querytitle>"
116
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
117
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
118
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
119
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
120
                                                           +"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
121
                                                           +"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
122
                                                           +"<returnfield>originator/individualName/surName</returnfield>"
123
                                                           +"<returnfield>originator/individualName/givenName</returnfield>"
124
                                                           +"<returnfield>creator/individualName/surName</returnfield>"
125
                                                           +"<returnfield>creator/individualName/givenName</returnfield>"
126
                                                           +"<returnfield>originator/organizationName</returnfield>"
127
                                                           +"<returnfield>creator/organizationName</returnfield>"
128
                                                           +"<returnfield>dataset/title</returnfield>"
129
                                                           +"<returnfield>keyword</returnfield>"
130
                                                           +"<querygroup operator=\"INTERSECT\">"
131
                                                                +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
132
                                                                        +"<value>Organization of Biological Field Stations</value>"
133
                                                                        +"<pathexpr>organizationName</pathexpr>"
134
                                                                +"</queryterm>"
135
                                                                + queryTermString
136
                                                           +"</querygroup>"
137
                                                    +"</pathquery>";
138

    
139
                }
140
                return true;
141
        }
142

    
143
        function searchAll(){
144
                var checkBox = document.getElementById("searchCheckBox");
145
                if(checkBox.checked == true){
146
                        alert("You have selected to search all possible existing fields. This search will take longer.");
147
                }
148
        }
149

    
150
  </script>
151
</head>
152
<body>
153
      <script language="JavaScript">
154
          insertTemplateOpening();
155
          insertSearchBox();
156
      </script>
157
<table width="760" border="0" cellspacing="0" cellpadding="0">
158
  <tr><td colspan="5">
159
<p>
160
Welcome to the OBFS Data Registry. This is the primary source for
161
comprehensive information about scientific and research data sets collected
162
within or under the auspices of the Organization of Biological Field Stations.
163
</p>
164
</td></tr>
165
<tr><td colspan="5">
166
<p>This project is a cooperative effort of <a href="http://www.obfs.org">OBFS</a>, 
167
the <a href="http://www.nceas.ucsb.edu">National Center for 
168
Ecological Analysis and Synthesis (NCEAS)</a>, the 
169
<a href="http://nrs.ucop.edu">UC Natural Reserve System</a>, and the 
170
<a href="http://www.lternet.edu">LTER Network Office</a>.
171
The Data Registry is based on software developed by the
172
<a href="http://knb.ecoinformatics.org">Knowledge Network for 
173
Biocomplexity (KNB)</a>, and
174
houses metadata that are compliant with 
175
<a href="http://knb.ecoinformatics.org/software/eml/">Ecological Metadata 
176
Language (EML)</a>.
177
</p>
178
</td></tr>
179
<tr><td colspan="5">
180
<p>
181
Credit for the data sets in this registry goes to the investigators who
182
collected the data, and also to the OBFS sites and system for providing 
183
an effective and pleasant environment for research and education at 
184
the individual research stations.
185
Our particular thanks go out to the OBFS reserve managers, scientists,
186
and stewards for their comments and continuing support.
187
</p>
188
</td></tr>
189
<tr><td colspan="5">
190
<p><b>Registry Tools</b></p>
191
<p>
192
<menu>
193
<li><span class="searchbox"><a name="search"> Search for Data Sets</a></span><br />
194
    <menu>
195
<form method="POST" action="@servlet-path@" target="_top" onSubmit="return checkSearch(this)">
196
  <input value="UNION" name="operator" type="hidden">
197
  &nbsp;<input size="14" name="searchstring" type="text" value="" id="searchBox">
198
  <input name="query" type="hidden"/>
199
  <input name="qformat" value="obfs" type="hidden">
200
  <input name="enableediting" value="true" type="hidden">
201
  <input type="hidden" name="action" value="squery">
202
  <input value="Search" type="submit">
203
</form>
204
  <input type="CHECKBOX" name="searchAll" onClick="searchAll()" id="searchCheckBox" >
205
  <span class="regtext">Search All Fields</span>
206
   <br><br>
207
      This tool allows you to search the registry for data
208
      sets of interest. When you type text in the box and
209
      click on the "Search" button, the search will only
210
      be conducted within the title, author, abstract,
211
      and keyword fields. Checking the "Search All Fields"
212
      box will search on these and all other existing
213
      fields (this search will take more time).
214
     <br><br>
215
      You can use the '%' character as a wildcard in your
216
      searches (e.g., '%biodiversity%' would locate any
217
      phrase with the word biodiversity embedded within it).
218
      </menu>
219
    <br><br>
220
  </li>
221

    
222
  <li><a href="@servlet-path@?action=query&amp;operator=INTERSECT&amp;anyfield=%25&amp;organizationName=Organization%20of%20Biological%20Field%20Stations&amp;qformat=obfs&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 OBFS data sets</a><br />
223
    <menu>
224
      The registry search system is used to locate data sets of interest
225
      by searching through existing registered data sets.  
226
      Presently the search covers all fields, including
227
      author, title, abstract, keywords, and other documentation
228
      for each dataset.  (More sophisticated search capabilities, 
229
      including boolean field searches, will be available in future.)
230
    </menu>
231
  </li>
232
  <p>&nbsp;</p>
233
  <li><a href="@cgi-prefix@/register-dataset.cgi?cfg=obfs">Register a new OBFS 
234
       data set</a><br />
235
    <menu>
236
      The registration page is used to submit information about a <b>new</b>
237
      data set associated with OBFS research.  The documentation about the
238
      data set will be reviewed and then submitted to the Registry.
239
    </menu>
240
  </li>
241
</menu>
242
</p>
243
  </td></tr>
244
</table>
245
<p>&nbsp;</p>
246
<script language="JavaScript">          
247
    insertTemplateClosing();
248
</script>
249
</body>
250
</html>
(2-2/9)