Project

General

Profile

1 4198 daigle
<%@ page language="java"  %>
2 5027 daigle
<%@ page import="edu.ucsb.nceas.metacat.database.DBVersion,edu.ucsb.nceas.metacat.MetacatVersion" %>
3 5031 daigle
<%@ page import="edu.ucsb.nceas.metacat.properties.PropertyService" %>
4 4080 daigle
5
<%
6
	/**
7
 *  '$RCSfile$'
8
 *    Copyright: 2008 Regents of the University of California and the
9
 *               National Center for Ecological Analysis and Synthesis
10
 *  For Details: http://www.nceas.ucsb.edu/
11
 *
12
 *   '$Author$'
13
 *     '$Date$'
14
 * '$Revision$'
15
 *
16
 * This program is free software; you can redistribute it and/or modify
17
 * it under the terms of the GNU General Public License as published by
18
 * the Free Software Foundation; either version 2 of the License, or
19
 * (at your option) any later version.
20
 *
21
 * This program is distributed in the hope that it will be useful,
22
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24
 * GNU General Public License for more details.
25
 *
26
 * You should have received a copy of the GNU General Public License
27
 * along with this program; if not, write to the Free Software
28
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
29
 */
30
%>
31
32
<%
33 5027 daigle
	MetacatVersion metacatVersion = (MetacatVersion)request.getAttribute("metaCatVersion");
34 4080 daigle
	DBVersion databaseVersion = (DBVersion)request.getAttribute("databaseVersion");
35
    Boolean propsConfigured = (Boolean)request.getAttribute("propsConfigured");
36 4159 daigle
    Boolean orgsConfigured = (Boolean)request.getAttribute("orgsConfigured");
37 4584 daigle
    Boolean authConfigured = (Boolean)request.getAttribute("authConfigured");
38 4080 daigle
    Boolean skinsConfigured = (Boolean)request.getAttribute("skinsConfigured");
39
    Boolean dbConfigured = (Boolean)request.getAttribute("dbConfigured");
40 6635 leinfelder
    Boolean replicationConfigured = (Boolean)request.getAttribute("replicationConfigured");
41
    String dataoneConfigured = (String)request.getAttribute("dataoneConfigured");
42 4198 daigle
    String geoserverConfigured = (String)request.getAttribute("geoserverConfigured");
43 4080 daigle
    Boolean metacatConfigured = (Boolean)request.getAttribute("metacatConfigured");
44 4198 daigle
    Boolean metacatServletInitialized = (Boolean)request.getAttribute("metcatServletInitialized");
45 5004 daigle
    String contextURL = (String)request.getAttribute("contextURL");
46 4080 daigle
%>
47
48
<html>
49
<head>
50
<title>Metacat Configuration</title>
51
<link rel="stylesheet" type="text/css"
52
        href="<%= request.getContextPath() %>/admin/admin.css"></link>
53
</head>
54
55
<body>
56 4557 daigle
<%@ include file="./header-section.jsp"%>
57 8222 walker
<div class="document">
58
	<h2>Metacat Configuration</h2>
59 4198 daigle
60 8222 walker
	<p>All of the following sections must be in a configured state for Metacat to run properly:</p>
61
	<br class="main-header">
62
63
	<%@ include file="page-message-section.jsp"%>
64
65
	<table class="configuration-table">
66
67
	<%
68 4198 daigle
		if (propsConfigured != null && propsConfigured) {
69 8222 walker
	%>
70
	        <tr>
71
	        <td class="configured-tag">[configured] </td>
72
			<td class="property-title"> Metacat Global Properties </td>
73
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=properties">Reconfigure Now</a> </td>
74
	        </tr>
75
	<%
76 4198 daigle
		} else {
77 8222 walker
	%>
78
	        <tr>
79
	 		<td class="unconfigured-tag">[unconfigured] </td>
80
	 		<td class="property-title"> Metacat Global Properties </td>
81
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=properties">Configure Now</a> </td>
82
	    	</tr>
83
	<%
84 4198 daigle
		}
85 8222 walker
86
		if (authConfigured != null && authConfigured) {
87
	%>
88
	        <tr>
89
	        <td class="configured-tag">[configured] </td>
90
			<td class="property-title"> Authentication Configuration </td>
91
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=auth">Reconfigure Now</a> </td>
92
	        </tr>
93
	<%
94 4198 daigle
		} else {
95 8222 walker
	%>
96
	        <tr>
97
	 		<td class=unconfigured-tag>[unconfigured] </td>
98
	 		<td class=property-title> Authentication Configuration </td>
99
			<td class=configure-link> <a href="<%= request.getContextPath() %>/admin?configureType=auth">Configure Now</a> </td>
100
	    	</tr>
101
	<%
102 4198 daigle
		}
103 8222 walker
104
	    if (skinsConfigured != null && skinsConfigured) {
105
	%>
106
	        <tr>
107
	        <td class="configured-tag">[configured] </td>
108
			<td class="property-title"> Skins Specific Properties </td>
109
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=skins">Reconfigure Now</a> </td>
110
	        </tr>
111
	<%
112
		} else {
113
	%>
114
	        <tr>
115
	 		<td class="unconfigured-tag">[unconfigured] </td>
116
	 		<td class="property-title"> Skins Specific Properties </td>
117
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=skins">Configure Now</a> </td>
118
	    	</tr>
119
	<%
120
		}
121
122
	    if ((dbConfigured != null && dbConfigured) ||
123
	    		(metacatVersion != null && databaseVersion != null &&
124
	    				metacatVersion.compareTo(databaseVersion) == 0)) {
125
	%>
126
	    	<tr>
127
	    	<td class="configured-tag">[configured] </td>
128
	    	<td class="property-title"> Database Installation/Upgrade </td>
129
			<td class="configure-link"> Version: <%=databaseVersion.getVersionString()%> </td>
130
	    	</tr>
131
	<%
132
		} else {
133
	%>
134
	    	<tr>
135
	    	<td class="unconfigured-tag">[unconfigured] </td>
136
	    	<td class="property-title"> Database Installation/Upgrade </td>
137
	<%
138 6635 leinfelder
		if (propsConfigured != null && propsConfigured) {
139 8222 walker
	%>
140
141
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=database">Configure Now</a> </td>
142
143
	<%
144
				        		} else {
145
				        	%>
146
			<td class="configure-link"> Configure Global Properties First </td>
147
	<%
148
		}
149
	%>
150
	    	</tr>
151
	<%
152
		}
153
154
	    if (geoserverConfigured != null && geoserverConfigured.equals(PropertyService.CONFIGURED)) {
155
	%>
156
	    	<tr>
157
	    	<td class="configured-tag">[configured] </td>
158
	    	<td class="property-title"> Geoserver Configuration </td>
159
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=geoserver">Reconfigure Now</a> </td>
160
	    	</tr>
161
	<%
162
		} else if (geoserverConfigured != null && geoserverConfigured.equals(PropertyService.BYPASSED)){
163
	%>
164
	    	<tr>
165
	    	<td class="configured-tag">[bypassed] </td>
166
			<td class="property-title"> Geoserver Configuration </td>
167
	<%
168
			if (propsConfigured != null && propsConfigured) {
169
	%>
170
171
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=geoserver">Reconfigure Now</a> </td>
172
	<%
173
			} else {
174
	%>
175
			<td class="configure-link"> Configure Global Properties First </td>
176
	<%
177
			}
178
				%>
179
	    	</tr>
180
	<%
181 6635 leinfelder
		} else {
182 8222 walker
	%>
183
	    	<tr>
184
	    	<td class="unconfigured-tag">[unconfigured] </td>
185
	    	<td class="property-title"> Geoserver Configuration </td>
186
	<%
187
			if (propsConfigured != null && propsConfigured) {
188
	%>
189
190
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=geoserver">Configure Now</a> </td>
191
192
	<%
193
			} else {
194
	%>
195
			<td class="configure-link"> Configure Global Properties First </td>
196
	<%
197
			}
198
	%>
199
	    	</tr>
200
	<%
201 6635 leinfelder
		}
202 8222 walker
	%>
203
204
	<%
205
206
	    if (dataoneConfigured != null && dataoneConfigured.equals(PropertyService.CONFIGURED)) {
207
	%>
208
	    	<tr>
209
	    	<td class="configured-tag">[configured] </td>
210
	    	<td class="property-title"> Dataone Configuration </td>
211
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=dataone">Reconfigure Now</a> </td>
212
	    	</tr>
213
	<%
214
		} else if (dataoneConfigured != null && dataoneConfigured.equals(PropertyService.BYPASSED)){
215
	%>
216
	    	<tr>
217
	    	<td class="configured-tag">[bypassed] </td>
218
			<td class="property-title"> Dataone Configuration </td>
219
	<%
220
			if (propsConfigured != null && propsConfigured) {
221
	%>
222
223
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=dataone">Reconfigure Now</a> </td>
224
	<%
225
			} else {
226
	%>
227
			<td class="configure-link"> Configure Global Properties First </td>
228
	<%
229
			}
230
				%>
231
	    	</tr>
232
	<%
233
		} else {
234
	%>
235
	    	<tr>
236
	    	<td class="unconfigured-tag">[unconfigured] </td>
237
	    	<td class="property-title"> Dataone Configuration </td>
238
	<%
239
			if (propsConfigured != null && propsConfigured) {
240
	%>
241
242
			<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=dataone">Configure Now</a> </td>
243
244
	<%
245
			} else {
246
	%>
247
			<td class="configure-link"> Configure Global Properties First </td>
248
	<%
249
			}
250
	%>
251
	    	</tr>
252
	<%
253
		}
254
	%>
255
256
	<!-- replication -->
257
	   	<tr>
258
	   	<td class="configured-tag">[configured] </td>
259
	   	<td class="property-title"> Replication Configuration </td>
260
	<%
261 6635 leinfelder
		if (propsConfigured != null && propsConfigured) {
262 8222 walker
	%>
263
264
		<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=replication">Reconfigure Now</a> </td>
265
266
	<%
267 6635 leinfelder
		} else {
268 8222 walker
	%>
269 6635 leinfelder
		<td class="configure-link"> Configure Global Properties First </td>
270 8222 walker
	<%
271 6635 leinfelder
		}
272 8222 walker
	%>
273
	   	</tr>
274 4198 daigle
275 8222 walker
276
277
	<!--  -->
278
	</table>
279
280
	<%
281
		if (metacatConfigured != null && metacatConfigured) {
282
	%>
283
		<br clear="right"/>
284
	<%
285
			if (metacatServletInitialized != null && metacatServletInitialized) {
286
	%>
287
		<h3>Restarting Metacat</h3>
288
		<p> Since this is a reconfiguration, you will need to restart Metacat after any changes.</p>
289
290
		<p>The simplest way to restart metacat is to restart the entire servlet engine.
291
		   For Tomcat, this would mean calling "sudo /etc/init.d/tomcat6 restart" or
292
		   an equivalent command appropriate to your operating system. After restarting,
293
		   you can access your new Metacat server at the URL:
294
	      <a href="<%= contextURL %>"><%= contextURL  %></a>
295
		</p>
296
	<%
297
			} else {
298
	%>
299
				<div class="alert alert-success">Configuration of Metacat is complete.  You can <a href="<%= request.getContextPath() %>">go to metacat</a>
300
				now.  Note that this may take some time while the system initializes with the new configuration values.</div>
301
	<%
302
			}
303 4198 daigle
		}
304 8222 walker
	%>
305
</div>
306 4080 daigle
307 4557 daigle
	<%@ include file="./footer-section.jsp"%>
308 4080 daigle
309 4560 daigle
</body>
310
</html>