1 |
2471
|
costa
|
<%@ page errorPage="jsperrorpage.html" %>
|
2 |
3780
|
daigle
|
|
3 |
|
|
<%
|
4 |
|
|
/**
|
5 |
2471
|
costa
|
* '$RCSfile$'
|
6 |
|
|
* Authors: Matthew Brooke
|
7 |
|
|
* Copyright: 2000 Regents of the University of California and the
|
8 |
|
|
* National Center for Ecological Analysis and Synthesis
|
9 |
|
|
* For Details: http://www.nceas.ucsb.edu/
|
10 |
|
|
*
|
11 |
|
|
* '$Author$'
|
12 |
|
|
* '$Date$'
|
13 |
|
|
* '$Revision$'
|
14 |
|
|
*
|
15 |
3780
|
daigle
|
* Settings file for the lter metacat skin
|
16 |
2471
|
costa
|
*
|
17 |
|
|
* This program is free software; you can redistribute it and/or modify
|
18 |
|
|
* it under the terms of the GNU General Public License as published by
|
19 |
|
|
* the Free Software Foundation; either version 2 of the License, or
|
20 |
|
|
* (at your option) any later version.
|
21 |
|
|
*
|
22 |
|
|
* This program is distributed in the hope that it will be useful,
|
23 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
24 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
25 |
|
|
* GNU General Public License for more details.
|
26 |
|
|
*
|
27 |
|
|
* You should have received a copy of the GNU General Public License
|
28 |
|
|
* along with this program; if not, write to the Free Software
|
29 |
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
30 |
3780
|
daigle
|
*/
|
31 |
|
|
%>
|
32 |
2471
|
costa
|
|
33 |
3780
|
daigle
|
<%@ include file="../../common/common-settings.jsp"%>
|
34 |
4080
|
daigle
|
<%@ include file="../../common/configure-check.jsp"%>
|
35 |
2471
|
costa
|
|
36 |
3780
|
daigle
|
<%
|
37 |
|
|
//Global settings for metacat are in common-settings.jsp. Use this file to
|
38 |
|
|
//override or add to global values for this skin.
|
39 |
2471
|
costa
|
|
40 |
3780
|
daigle
|
// if true, POST variables echoed at bottom of client's browser window in a big yellow box.
|
41 |
|
|
// Set this value to override the global value
|
42 |
|
|
// boolean DEBUG_TO_BROWSER = false;
|
43 |
2471
|
costa
|
|
44 |
3780
|
daigle
|
// Add any local post fields to COMMON_SEARCH_METACAT_POST_FIELDS,
|
45 |
|
|
// SIMPLE_SEARCH_METACAT_POST_FIELDS, and ADVANCED_SEARCH_METACAT_POST_FIELD here
|
46 |
|
|
COMMON_SEARCH_METACAT_POST_FIELDS +=
|
47 |
|
|
"<input type=\"hidden\" name=\"qformat\" value=\"lter\"\\>\n";
|
48 |
|
|
|
49 |
|
|
SIMPLE_SEARCH_METACAT_POST_FIELDS +=
|
50 |
|
|
"<input type=\"hidden\" name=\"qformat\" value=\"lter\"\\>\n";
|
51 |
2471
|
costa
|
|
52 |
3780
|
daigle
|
ADVANCED_SEARCH_METACAT_POST_FIELDS +=
|
53 |
|
|
"<input type=\"hidden\" name=\"qformat\" value=\"lter\"\\>\n";
|
54 |
2471
|
costa
|
|
55 |
|
|
%>
|