Project

General

Profile

1
<%@ page errorPage="jsperrorpage.html"%>
2
<%@page import="edu.ucsb.nceas.metacat.properties.PropertyService,edu.ucsb.nceas.metacat.util.SystemUtil"%>
3
<%
4
	 /**
5
	 *   '$RCSfile$'
6
	 *   Copyright: 2006 Regents of the University of California and the
7
	 *              National Center for Ecological Analysis and Synthesis
8
	 *
9
	 *    '$Author: leinfelder $'
10
	 *      '$Date: 2011-01-18 17:04:51 -0800 (Tue, 18 Jan 2011) $'
11
	 *  '$Revision: 5816 $'
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
	 */
27
%>
28

    
29
<%
30
	// GLOBAL CONSTANTS FOR ALL METACAT SKINS
31
	// These can be overridden by individual javascripts in each skin
32
	String COMMON_SEARCH_METACAT_POST_FIELDS = "<input type=\"hidden\" name=\"action\"        value=\"query\"\\>\n"
33
			+ "<input type=\"hidden\" name=\"returnfield\"   value=\"originator/individualName/surName\"\\>\n"
34
			+ "<input type=\"hidden\" name=\"returnfield\"   value=\"originator/individualName/givenName\"\\>\n"
35
			+ "<input type=\"hidden\" name=\"returnfield\"   value=\"originator/organizationName\"\\>\n"
36
			+ "<input type=\"hidden\" name=\"returnfield\"   value=\"creator/individualName/surName\"\\>\n"
37
			+ "<input type=\"hidden\" name=\"returnfield\"   value=\"creator/organizationName\"\\>\n"
38
			+ "<input type=\"hidden\" name=\"returnfield\"   value=\"dataset/title\"\\>\n"
39
			+ "<input type=\"hidden\" name=\"returnfield\"   value=\"dataset/title/value\"\\>\n"
40
			+ "<input type=\"hidden\" name=\"returnfield\"   value=\"keyword\"\\>\n"
41
			+ "<input type=\"hidden\" name=\"returnfield\"   value=\"keyword/value\"\\>\n"
42
			+ "<input name=\"returnfield\" value=\"creator/individualName/givenName\" type=\"hidden\">\n"
43
			+ "<input name=\"returnfield\" value=\"idinfo/citation/citeinfo/title\" type=\"hidden\">\n"
44
			+ "<input name=\"returnfield\" value=\"idinfo/citation/citeinfo/origin\" type=\"hidden\">\n"
45
			+ "<input name=\"returnfield\" value=\"idinfo/keywords/theme/themekey\" type=\"hidden\">\n"
46
			+ "<input name=\"returndoctype\" value=\"metadata\" type=\"hidden\">\n"
47
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN\"\\>\n"
48
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN\"\\>\n"
49
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"eml://ecoinformatics.org/eml-2.1.1\"\\>\n"
50
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"eml://ecoinformatics.org/eml-2.1.0\"\\>\n"
51
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"eml://ecoinformatics.org/eml-2.0.1\"\\>\n"
52
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"eml://ecoinformatics.org/eml-2.0.0\"\\>\n"
53
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"-//NCEAS//eml-dataset-2.0//EN\"\\>\n"
54
			+ "<input type=\"hidden\" name=\"returndoctype\" value=\"-//NCEAS//resource//EN\"\\>\n";
55

    
56
	String SIMPLE_SEARCH_METACAT_POST_FIELDS = "<input type=\"hidden\" name=\"operator\"      value=\"UNION\"\\>\n"
57
			+ COMMON_SEARCH_METACAT_POST_FIELDS;
58

    
59
	String ADVANCED_SEARCH_METACAT_POST_FIELDS = "<input type=\"hidden\" name=\"operator\"      value=\"INTERSECT\"\\>\n"
60
			+ COMMON_SEARCH_METACAT_POST_FIELDS;
61

    
62
	// if true, POST variables echoed at bottom of client's browser window in a big yellow box
63
	boolean DEBUG_TO_BROWSER = false;
64

    
65
	// label for logout form button when user *is* logged in:
66
	String LOGOUT_LABEL = "Logout";
67

    
68
	// label for login form button when user is *not* logged in:
69
	String LOGIN_LABEL = "Login";
70

    
71
	// last part of LDAP username to be appended after organization
72
	String LDAP_DOMAIN = ",dc=ecoinformatics,dc=org";
73

    
74
	String KNB_SITE_URL = PropertyService.getProperty("application.knbSiteURL");
75
	String CONTEXT_NAME = PropertyService.getProperty("application.context");
76
	String DEFAULT_STYLE = PropertyService.getProperty("application.default-style");
77
	String SERVER_URL = SystemUtil.getServerURL();
78
	String CGI_URL = SystemUtil.getCGI_URL();
79
	String CONTEXT_URL = SystemUtil.getContextURL();
80
	String SERVLET_URL = SystemUtil.getServletURL();
81
	String STYLE_SKINS_URL = SystemUtil.getStyleSkinsURL();
82
	String STYLE_COMMON_URL = SystemUtil.getStyleCommonURL();
83
	String DEFAULT_STYLE_URL = SystemUtil.getDefaultStyleURL();
84

    
85
%>
86

    
(7-7/33)