Project

General

Profile

1 1929 brooke
<!--
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$'
9
  *     '$Date$'
10
  * '$Revision$'
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 2547 sgarg
  <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 2706 sgarg
		var checkBox = document.getElementById("searchAll");
48 2547 sgarg
49
                if (searchString=="") {
50 2706 sgarg
                       if (confirm("Show *all* data in the KNB?")) {
51
            			searchString = "%";
52
          		} else {
53
            			return false;
54
          		}
55 2547 sgarg
                }
56
57 2706 sgarg
                if(!checkBox.checked && searchString!="%"){
58 2694 sgarg
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
59 2547 sgarg
                                                           +"<querytitle>Web-Search</querytitle>"
60
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
61
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
62
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
63
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
64
                                                           +"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
65
                                                           +"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
66
                                                           +"<returnfield>originator/individualName/surName</returnfield>"
67
                                                           +"<returnfield>originator/individualName/givenName</returnfield>"
68
                                                           +"<returnfield>creator/individualName/surName</returnfield>"
69
                                                           +"<returnfield>creator/individualName/givenName</returnfield>"
70
                                                           +"<returnfield>originator/organizationName</returnfield>"
71
                                                           +"<returnfield>creator/organizationName</returnfield>"
72
                                                           +"<returnfield>dataset/title</returnfield>"
73
                                                           +"<returnfield>keyword</returnfield>"
74
                                                           +"<querygroup operator=\"INTERSECT\">"
75
                                                                +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
76
                                                                        +"<value>Organization of Biological Field Stations</value>"
77
                                                                        +"<pathexpr>organizationName</pathexpr>"
78
                                                                +"</queryterm>"
79
                                                                +"<querygroup operator=\"UNION\">"
80
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
81
                                                                                +"<value>" + searchString + "</value>"
82
                                                                                +"<pathexpr>surName</pathexpr>"
83
                                                                        +"</queryterm>"
84
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
85
                                                                                +"<value>" + searchString + "</value>"
86
                                                                                +"<pathexpr>givenName</pathexpr>"
87
                                                                        +"</queryterm>"
88
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
89
                                                                                +"<value>" + searchString + "</value>"
90
                                                                                +"<pathexpr>keyword</pathexpr>"
91
                                                                        +"</queryterm>"
92
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
93
                                                                                +"<value>" + searchString + "</value>"
94
                                                                         +"<pathexpr>para</pathexpr>"
95
                                                                        +"</queryterm>"
96
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
97
                                                                                +"<value>" + searchString + "</value>"
98
                                                                                +"<pathexpr>geographicDescription</pathexpr>"
99
                                                                        +"</queryterm>"
100
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
101
                                                                                +"<value>" + searchString + "</value>"
102
                                                                                +"<pathexpr>literalLayout</pathexpr>"
103
                                                                        +"</queryterm>"
104
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
105
                                                                                +"<value>" + searchString + "</value>"
106 2708 sgarg
                                                                                +"<pathexpr>title</pathexpr>"
107
                                                                        +"</queryterm>"
108
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
109
                                                                                +"<value>" + searchString + "</value>"
110 2853 sgarg
                                                                                +"<pathexpr>@packageId</pathexpr>"
111
                                                                        +"</queryterm>"
112
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
113
                                                                                +"<value>" + searchString + "</value>"
114 2547 sgarg
                                                                                +"<pathexpr>abstract/para</pathexpr>"
115
                                                                        +"</queryterm>"
116
                                                                +"</querygroup>"
117
                                                          +"</querygroup>"
118
                                                  +"</pathquery>";
119
                } else {
120
                        queryTermString = "";
121
                        if(searchString != "%"){
122
                                queryTermString = "<queryterm searchmode=\"contains\" casesensitive=\"false\">"
123
                                                        +"<value>" + searchString + "</value>"
124
                                                 +"</queryterm>";
125
                        }
126 2695 sgarg
                        submitFormObj.query.value = "<pathquery version=\"1.2\">"
127 2547 sgarg
                                                           +"<querytitle>Web-Search</querytitle>"
128
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
129
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
130
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
131
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
132
                                                           +"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
133
                                                           +"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
134
                                                           +"<returnfield>originator/individualName/surName</returnfield>"
135
                                                           +"<returnfield>originator/individualName/givenName</returnfield>"
136
                                                           +"<returnfield>creator/individualName/surName</returnfield>"
137
                                                           +"<returnfield>creator/individualName/givenName</returnfield>"
138
                                                           +"<returnfield>originator/organizationName</returnfield>"
139
                                                           +"<returnfield>creator/organizationName</returnfield>"
140
                                                           +"<returnfield>dataset/title</returnfield>"
141
                                                           +"<returnfield>keyword</returnfield>"
142
                                                           +"<querygroup operator=\"INTERSECT\">"
143
                                                                +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
144
                                                                        +"<value>Organization of Biological Field Stations</value>"
145
                                                                        +"<pathexpr>organizationName</pathexpr>"
146
                                                                +"</queryterm>"
147
                                                                + queryTermString
148
                                                           +"</querygroup>"
149
                                                    +"</pathquery>";
150
151
                }
152
                return true;
153
        }
154
155
        function searchAll(){
156
                var checkBox = document.getElementById("searchCheckBox");
157
                if(checkBox.checked == true){
158
                        alert("You have selected to search all possible existing fields. This search will take longer.");
159
                }
160
        }
161
162
  </script>
163 1929 brooke
</head>
164
<body>
165
      <script language="JavaScript">
166
          insertTemplateOpening();
167
          insertSearchBox();
168
      </script>
169
<table width="760" border="0" cellspacing="0" cellpadding="0">
170
  <tr><td colspan="5">
171
<p>
172
Welcome to the OBFS Data Registry. This is the primary source for
173
comprehensive information about scientific and research data sets collected
174
within or under the auspices of the Organization of Biological Field Stations.
175
</p>
176 2433 sgarg
</td></tr>
177
<tr><td colspan="5">
178
<p>This project is a cooperative effort of <a href="http://www.obfs.org">OBFS</a>,
179 1929 brooke
the <a href="http://www.nceas.ucsb.edu">National Center for
180
Ecological Analysis and Synthesis (NCEAS)</a>, the
181
<a href="http://nrs.ucop.edu">UC Natural Reserve System</a>, and the
182
<a href="http://www.lternet.edu">LTER Network Office</a>.
183
The Data Registry is based on software developed by the
184
<a href="http://knb.ecoinformatics.org">Knowledge Network for
185
Biocomplexity (KNB)</a>, and
186
houses metadata that are compliant with
187
<a href="http://knb.ecoinformatics.org/software/eml/">Ecological Metadata
188
Language (EML)</a>.
189
</p>
190 2433 sgarg
</td></tr>
191
<tr><td colspan="5">
192 1929 brooke
<p>
193 2433 sgarg
Credit for the data sets in this registry goes to the investigators who
194 1929 brooke
collected the data, and also to the OBFS sites and system for providing
195
an effective and pleasant environment for research and education at
196
the individual research stations.
197
Our particular thanks go out to the OBFS reserve managers, scientists,
198
and stewards for their comments and continuing support.
199
</p>
200 2433 sgarg
</td></tr>
201
<tr><td colspan="5">
202 1929 brooke
<p><b>Registry Tools</b></p>
203
<p>
204
<menu>
205 2547 sgarg
<li><span class="searchbox"><a name="search"> Search for Data Sets</a></span><br />
206
    <menu>
207
<form method="POST" action="@servlet-path@" target="_top" onSubmit="return checkSearch(this)">
208
  <input value="UNION" name="operator" type="hidden">
209
  &nbsp;<input size="14" name="searchstring" type="text" value="" id="searchBox">
210
  <input name="query" type="hidden"/>
211
  <input name="qformat" value="obfs" type="hidden">
212
  <input name="enableediting" value="true" type="hidden">
213
  <input type="hidden" name="action" value="squery">
214
  <input value="Search" type="submit">
215
</form>
216 2706 sgarg
<form>
217
  <input name="search" type="radio" checked><span class="text_plain"> Search Title, Abstract, Keywords, Personnel (Quicker)</span></input><br>
218
  <input name="search" type="radio" id="searchAll"><span class="text_plain"> Search all fields (Slower)</span></input><br>
219
</form>
220 2708 sgarg
221 2547 sgarg
      This tool allows you to search the registry for data
222
      sets of interest. When you type text in the box and
223
      click on the "Search" button, the search will only
224
      be conducted within the title, author, abstract,
225
      and keyword fields. Checking the "Search All Fields"
226
      box will search on these and all other existing
227
      fields (this search will take more time).
228
     <br><br>
229
      You can use the '%' character as a wildcard in your
230
      searches (e.g., '%biodiversity%' would locate any
231
      phrase with the word biodiversity embedded within it).
232
      </menu>
233
    <br><br>
234
  </li>
235
236 2227 sgarg
  <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 />
237 1929 brooke
    <menu>
238
      The registry search system is used to locate data sets of interest
239
      by searching through existing registered data sets.
240
      Presently the search covers all fields, including
241
      author, title, abstract, keywords, and other documentation
242
      for each dataset.  (More sophisticated search capabilities,
243
      including boolean field searches, will be available in future.)
244
    </menu>
245
  </li>
246
  <p>&nbsp;</p>
247
  <li><a href="@cgi-prefix@/register-dataset.cgi?cfg=obfs">Register a new OBFS
248
       data set</a><br />
249
    <menu>
250
      The registration page is used to submit information about a <b>new</b>
251
      data set associated with OBFS research.  The documentation about the
252
      data set will be reviewed and then submitted to the Registry.
253
    </menu>
254
  </li>
255 3097 perry
  <p>&nbsp;</p>
256
  <li>
257
      <a href="map.html"> View Interactive Map </a>
258
      <menu> View and query the geographic coverages of the data sets. </menu>
259
  </li>
260
261 1929 brooke
</menu>
262
</p>
263
  </td></tr>
264
</table>
265
<p>&nbsp;</p>
266
<script language="JavaScript">
267
    insertTemplateClosing();
268
</script>
269
</body>
270
</html>