Project

General

Profile

1 4100 daigle
<%@ page language="java" %>
2 5027 daigle
<%@ page import="java.util.Vector,edu.ucsb.nceas.metacat.database.DBVersion,edu.ucsb.nceas.metacat.MetacatVersion" %>
3 4080 daigle
4 5027 daigle
<%
5
	/**
6 4080 daigle
 *  '$RCSfile$'
7
 *    Copyright: 2008 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
 * This program is free software; you can redistribute it and/or modify
16
 * it under the terms of the GNU General Public License as published by
17
 * the Free Software Foundation; either version 2 of the License, or
18
 * (at your option) any later version.
19
 *
20
 * This program is distributed in the hope that it will be useful,
21
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23
 * GNU General Public License for more details.
24
 *
25
 * You should have received a copy of the GNU General Public License
26
 * along with this program; if not, write to the Free Software
27
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28
 */
29
%>
30
31 5027 daigle
<%
32
	MetacatVersion metacatVersion = (MetacatVersion)request.getAttribute("metacatVersion");
33 4080 daigle
	DBVersion databaseVersion = (DBVersion)request.getAttribute("databaseVersion");
34
	Vector<String> updateScriptList = (Vector<String> )request.getAttribute("updateScriptList");
35 4406 daigle
	String supportEmail = (String)request.getAttribute("supportEmail");
36 4080 daigle
%>
37
38
<html>
39
<head>
40
41
<title>Database Install/Upgrade Utility</title>
42
<link rel="stylesheet" type="text/css"
43
        href="<%= request.getContextPath() %>/admin/admin.css"></link>
44
<script language="JavaScript" type="text/JavaScript" src="<%= request.getContextPath() %>/admin/admin.js"></script>
45
46
</head>
47
<body>
48 4557 daigle
<%@ include file="./header-section.jsp"%>
49
50 8222 walker
<div class="document">
51
	<h2>Database Install/Upgrade Utility</h2>
52
53
	<p><%@ include file="page-message-section.jsp"%></p>
54
55
	<%
56
	if (databaseVersion != null && databaseVersion.getVersionString().equals("0.0.0")) {
57
	%>
58
	     The system has detected that this is a new database. <br><br>
59
	     Please hit the Continue button to upgrade your database to version: <%= metacatVersion.getVersionString() %>. <br><br>
60
	     <div class=warning>Warning: this will reinitialize your database.  If this is not a new database, hit the Cancel button and contact support at <%= supportEmail %>. </div><br><br>
61
	     The following scripts will be run:
62
63
	        <ul>
64
	<%
65
	        for (int i = 0; i < updateScriptList.size(); i++) {
66
	%>
67
	                <li>
68
	                	<%= updateScriptList.elementAt(i) %>
69
	                </li>
70
	<%
71
	        }
72
	%>
73
	        </ul>
74
	        <input class="button" type="button" value="Continue" onClick="forward('./admin?configureType=database&processForm=true')">
75 8203 walker
			<input class="button" type="button" value="Cancel" onClick="forward('./admin?configureType=configure&processForm=false')">
76 8222 walker
	<%
77
	} else if (databaseVersion != null) {
78
	%>
79
	     The system has detected the following database version: <%= databaseVersion.getVersionString() %> <br><br>
80
	     Please hit the Continue button to upgrade your database to version: <%= metacatVersion.getVersionString() %> <br>
81
	    <div class=warning>Warning: this will update your database.  If the detected versions do not seem correct, hit the Cancel button and contact support at <%= supportEmail %> </div><br><br>
82
	     The following scripts will be run:  <br>
83
	        <ul>
84
	<%
85
	        for (int i = 0; i < updateScriptList.size(); i++) {
86
	%>
87
	                <li>
88
	                	<%= updateScriptList.elementAt(i) %>
89
	                </li>
90
	<%
91
	        }
92
	%>
93
	        </ul>
94
	        <div class="buttons-wrapper">
95
				<input class="button" type="button" value="Continue" onClick="forward('./admin?configureType=database&processForm=true')">
96
				<input class="button" type="button" value="Cancel" onClick="forward('./admin?configureType=configure&processForm=false')">
97
			</div>
98
	<%
99
	} else {
100
	%>
101
	        <div class="buttons-wrapper">
102
				<input class="button" disabled type="button" value="Continue" onClick="forward('./admin?configureType=database&processForm=true')">
103
				<input class="button" type="button" value="Cancel" onClick="forward('./admin?configureType=configure&processForm=false')">
104
			</div>
105
	<%
106
	}
107
	%>
108
</div>
109 4557 daigle
	<%@ include file="./footer-section.jsp"%>
110 4080 daigle
111
</body>
112
</html>