Project

General

Profile

1
<%@ page    language="java" %>
2
<%
3
/**
4
 * '$RCSfile$'
5
 * Copyright: 2003 Regents of the University of California and the
6
 *             National Center for Ecological Analysis and Synthesis
7
 * '$Author: daigle $'
8
 * '$Date: 2008-07-06 21:25:34 -0700 (Sun, 06 Jul 2008) $'
9
 * '$Revision: 4080 $'
10
 * 
11
 * This program is free software; you can redistribute it and/or modify
12
 * it under the terms of the GNU General Public License as published by
13
 * the Free Software Foundation; either version 2 of the License, or
14
 * (at your option) any later version.
15
 * 
16
 * This program is distributed in the hope that it will be useful,
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 * GNU General Public License for more details.
20
 *   
21
 * You should have received a copy of the GNU General Public License
22
 * along with this program; if not, write to the Free Software
23
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24
 */
25
 %>
26

    
27
 <%@ include file="../../common/common-settings.jsp"%>
28
 <%@ include file="../../common/configure-check.jsp"%>
29

    
30
<!--____________________________max_width____________________________________-->
31

    
32
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
33
<html>
34
<head>
35
  <title>UCNRS Data Registry</title>
36
  <link rel="stylesheet" type="text/css" 
37
        href="<%=STYLE_SKINS_URL%>/nrs/nrs.css"></link>
38
  <script language="Javascript">
39
        function trim(stringToTrim) {
40
                return stringToTrim.replace(/^\s*/, '').replace(/\s*$/,'');
41
        }
42

    
43
        function checkSearch(submitFormObj) {
44
                var searchString = trim(submitFormObj.searchstring.value);
45
                if (searchString=="") {
46
                        searchString="%";
47
                }
48

    
49
                submitFormObj.query.value = "<pathquery version=\"1.2\">"
50
                                                  +"<querytitle>Web-Search</querytitle>"
51
                                                  +"<returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>"
52
                                                           +"<returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>"
53
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN</returndoctype>"
54
                                                           +"<returndoctype>-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN</returndoctype>"
55
                                                           +"<returndoctype>-//NCEAS//resource//EN</returndoctype>"
56
                                                           +"<returndoctype>-//NCEAS//eml-dataset//EN</returndoctype>"
57
                                                           +"<returnfield>originator/individualName/surName</returnfield>"
58
                                                           +"<returnfield>originator/individualName/givenName</returnfield>"
59
                                                           +"<returnfield>creator/individualName/surName</returnfield>"
60
                                                           +"<returnfield>creator/individualName/givenName</returnfield>"
61
                                                           +"<returnfield>originator/organizationName</returnfield>"
62
                                                           +"<returnfield>creator/organizationName</returnfield>"
63
                                                           +"<returnfield>dataset/title</returnfield>"
64
                                                           +"<returnfield>keyword</returnfield>"
65
                                                           +"<querygroup operator=\"INTERSECT\">"
66
                                                                +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
67
                                                                        +"<value>University of California Natural Reserve System</value>"
68
                                                                        +"<pathexpr>organizationName</pathexpr>"
69
                                                                +"</queryterm>"
70
                                                                +"<querygroup operator=\"UNION\">"
71
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
72
                                                                                +"<value>" + searchString + "</value>"
73
                                                                                +"<pathexpr>surName</pathexpr>"
74
                                                                        +"</queryterm>"
75
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
76
                                                                                +"<value>" + searchString + "</value>"
77
                                                                                +"<pathexpr>givenName</pathexpr>"
78
                                                                        +"</queryterm>"
79
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
80
                                                                                +"<value>" + searchString + "</value>"
81
                                                                                +"<pathexpr>keyword</pathexpr>"
82
                                                                        +"</queryterm>"
83
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
84
                                                                                +"<value>" + searchString + "</value>"
85
                                                                                +"<pathexpr>para</pathexpr>"
86
                                                                        +"</queryterm>"
87
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
88
                                                                                +"<value>" + searchString + "</value>"
89
                                                                                +"<pathexpr>geographicDescription</pathexpr>"
90
                                                                        +"</queryterm>"
91
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
92
                                                                                +"<value>" + searchString + "</value>"
93
                                                                                +"<pathexpr>literalLayout</pathexpr>"
94
                                                                        +"</queryterm>"
95
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
96
                                                                                +"<value>" + searchString + "</value>"
97
                                                                                +"<pathexpr>title</pathexpr>"
98
                                                                        +"</queryterm>"
99
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
100
                                                                                +"<value>" + searchString + "</value>"
101
                                                                                +"<pathexpr>@packageId</pathexpr>"
102
                                                                        +"</queryterm>"
103
                                                                        +"<queryterm searchmode=\"contains\" casesensitive=\"false\">"
104
                                                                                +"<value>" + searchString + "</value>"
105
                                                                                +"<pathexpr>abstract/para</pathexpr>"
106
                                                                        +"</queryterm>"
107
                                                                +"</querygroup>"
108
                                                          +"</querygroup>"
109
                                                  +"</pathquery>";
110
                return true;
111
        }
112
  </script>
113
</head>
114

    
115
<body>
116
<table width="760" class="headertopmargin" border="0" cellspacing="0" cellpadding="0">
117
  <tr> 
118
    <td valign="middle" colspan="4" class="title">UC Natural Reserve System
119
    Data Registry</td>
120
    <td rowspan="3" width="20%" valign="top"> 
121
      <div align="right"><img src="<%=STYLE_SKINS_URL%>/nrs/nrs-logo.gif"></div>
122
    </td>
123
  </tr>
124
  <tr> 
125
    <td class="spacerrow" valign="top" colspan="4">&nbsp;</td>
126
  </tr>
127
  <tr> 
128
    <td valign="top" width="20%"> 
129
      <p><a href="http://www.ucnrs.org" target="_top"> NRS Home</a></p>
130
    </td>
131
    <td valign="top" width="20%"> 
132
      <p><a href="<%=STYLE_SKINS_URL%>/nrs/index.jsp" target="_top">Registry Home</a></p>
133
    </td>
134
    <td valign="top" width="20%"> 
135
      <p><a href="<%=CGI_URL%>/register-dataset.cgi?cfg=nrs"
136
			target="_top">Register a<br>
137
		New Data Set</a></p>
138
    </td>
139
    <td valign="top" width="20%"> 
140
<p class="searchbox">
141
Search for Data<br />
142
<form method="POST" action="<%=SERVLET_URL%>" target="_top" onSubmit="return checkSearch(this)">
143
  <input value="INTERSECT" name="operator" type="hidden">   
144
  <input size="14" name="searchstring" type="text" value="">
145
  <input name="query" type="hidden"/>
146
  <input name="qformat" value="nrs" type="hidden">
147
  <input name="enableediting" value="true" type="hidden">
148
  <input type="hidden" name="action" value="squery">
149
  <!-- <input value="Start Search" type="submit"> -->
150
</form>
151
</p>
152
    </td>
153
  </tr>
154
</table>
155
</body>
156
</html>
(1-1/11)