1 |
2942
|
jones
|
<%@ page errorPage="jsperrorpage.html" %>
|
2 |
3780
|
daigle
|
<%@page import="edu.ucsb.nceas.metacat.MetaCatUtil"%>
|
3 |
|
|
<%
|
4 |
|
|
/**
|
5 |
2942
|
jones
|
* '$RCSfile$'
|
6 |
|
|
* Copyright: 2006 Regents of the University of California and the
|
7 |
|
|
* National Center for Ecological Analysis and Synthesis
|
8 |
|
|
*
|
9 |
|
|
* '$Author$'
|
10 |
|
|
* '$Date$'
|
11 |
|
|
* '$Revision$'
|
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 |
3780
|
daigle
|
*/
|
27 |
|
|
%>
|
28 |
|
|
|
29 |
2942
|
jones
|
<%
|
30 |
|
|
|
31 |
|
|
// GLOBAL CONSTANTS FOR ALL METACAT SKINS
|
32 |
|
|
// These can be overridden by individual javascripts in each skin
|
33 |
|
|
|
34 |
|
|
String COMMON_SEARCH_METACAT_POST_FIELDS =
|
35 |
|
|
"<input type=\"hidden\" name=\"action\" value=\"query\"\\>\n"
|
36 |
|
|
+"<input type=\"hidden\" name=\"returnfield\" value=\"originator/individualName/surName\"\\>\n"
|
37 |
|
|
+"<input type=\"hidden\" name=\"returnfield\" value=\"originator/individualName/givenName\"\\>\n"
|
38 |
|
|
+"<input type=\"hidden\" name=\"returnfield\" value=\"originator/organizationName\"\\>\n"
|
39 |
|
|
+"<input type=\"hidden\" name=\"returnfield\" value=\"creator/individualName/surName\"\\>\n"
|
40 |
|
|
+"<input type=\"hidden\" name=\"returnfield\" value=\"creator/organizationName\"\\>\n"
|
41 |
|
|
+"<input type=\"hidden\" name=\"returnfield\" value=\"dataset/title\"\\>\n"
|
42 |
|
|
+"<input type=\"hidden\" name=\"returnfield\" value=\"keyword\"\\>\n"
|
43 |
|
|
+"<input name=\"returnfield\" value=\"creator/individualName/givenName\" type=\"hidden\">\n"
|
44 |
|
|
+"<input name=\"returnfield\" value=\"idinfo/citation/citeinfo/title\" type=\"hidden\">\n"
|
45 |
|
|
+"<input name=\"returnfield\" value=\"idinfo/citation/citeinfo/origin\" type=\"hidden\">\n"
|
46 |
|
|
+"<input name=\"returnfield\" value=\"idinfo/keywords/theme/themekey\" type=\"hidden\">\n"
|
47 |
|
|
+"<input name=\"returndoctype\" value=\"metadata\" type=\"hidden\">\n"
|
48 |
|
|
+"<input type=\"hidden\" name=\"returndoctype\" value=\"-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN\"\\>\n"
|
49 |
|
|
+"<input type=\"hidden\" name=\"returndoctype\" value=\"-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN\"\\>\n"
|
50 |
|
|
+"<input type=\"hidden\" name=\"returndoctype\" value=\"eml://ecoinformatics.org/eml-2.0.1\"\\>\n"
|
51 |
|
|
+"<input type=\"hidden\" name=\"returndoctype\" value=\"eml://ecoinformatics.org/eml-2.0.0\"\\>\n"
|
52 |
|
|
+"<input type=\"hidden\" name=\"returndoctype\" value=\"-//NCEAS//eml-dataset-2.0//EN\"\\>\n"
|
53 |
|
|
+"<input type=\"hidden\" name=\"returndoctype\" value=\"-//NCEAS//resource//EN\"\\>\n";
|
54 |
3780
|
daigle
|
|
55 |
|
|
|
56 |
2942
|
jones
|
|
57 |
|
|
String SIMPLE_SEARCH_METACAT_POST_FIELDS =
|
58 |
|
|
"<input type=\"hidden\" name=\"operator\" value=\"UNION\"\\>\n"
|
59 |
|
|
+COMMON_SEARCH_METACAT_POST_FIELDS;
|
60 |
|
|
|
61 |
|
|
String ADVANCED_SEARCH_METACAT_POST_FIELDS =
|
62 |
|
|
"<input type=\"hidden\" name=\"operator\" value=\"INTERSECT\"\\>\n"
|
63 |
|
|
+COMMON_SEARCH_METACAT_POST_FIELDS;
|
64 |
3780
|
daigle
|
|
65 |
|
|
// if true, POST variables echoed at bottom of client's browser window in a big yellow box
|
66 |
|
|
boolean DEBUG_TO_BROWSER = false;
|
67 |
|
|
|
68 |
|
|
// label for logout form button when user *is* logged in:
|
69 |
|
|
String LOGOUT_LABEL = "Logout";
|
70 |
|
|
|
71 |
|
|
// label for login form button when user is *not* logged in:
|
72 |
|
|
String LOGIN_LABEL = "Login";
|
73 |
|
|
|
74 |
|
|
// last part of LDAP username to be appended after organization
|
75 |
|
|
String LDAP_DOMAIN = ",dc=ecoinformatics,dc=org";
|
76 |
|
|
|
77 |
|
|
String KNB_SITE_URL = MetaCatUtil.getOption("knbSiteURL");
|
78 |
|
|
String SERVER_URL = MetaCatUtil.getOption("httpserver");
|
79 |
|
|
String CONTEXT_NAME = MetaCatUtil.getOption("context");
|
80 |
|
|
String DEFAULT_STYLE = MetaCatUtil.getOption("default-style");
|
81 |
|
|
String CGI_URL = SERVER_URL + "/cgi-bin";
|
82 |
|
|
String SERVER_URL_WITH_CONTEXT = SERVER_URL + "/" + CONTEXT_NAME;
|
83 |
|
|
String SERVLET_URL = SERVER_URL_WITH_CONTEXT + "/metacat";
|
84 |
|
|
String STYLE_SKINS_URL = SERVER_URL_WITH_CONTEXT + "/style/skins";
|
85 |
|
|
String STYLE_COMMON_URL = SERVER_URL_WITH_CONTEXT + "/style/common";
|
86 |
|
|
String DEFAULT_STYLE_URL = SERVER_URL_WITH_CONTEXT + "/style/skins/" + DEFAULT_STYLE;
|
87 |
2942
|
jones
|
%>
|