Project

General

Profile

1 3083 jones
<%@ page    language="java" import="java.util.Enumeration" %>
2 3081 jones
<%
3
/**
4
 *  '$RCSfile$'
5
 *    Copyright: 2006 Regents of the University of California and the
6
 *               National Center for Ecological Analysis and Synthesis
7
 *  For Details: http://www.nceas.ucsb.edu/
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
 */
27
%>
28
<html>
29
<head>
30
<title>Metacat Configuration</title>
31
<style language="Javascript">
32 3083 jones
body {
33
    font-family: Arial, sans-serif;
34
    font-size: 12pt;
35
    margin-left: 30px;
36
    margin-right: 30px;
37
    width: 700px;
38
}
39
40 3081 jones
.section {
41
    font-size: 16pt;
42
    font-weight: bold;
43
    border-bottom: solid #dddddd 1px;
44
}
45 3083 jones
label,input {
46
	display: block;
47
	width: 400px;
48
	float: left;
49
	margin-bottom: 10px;
50
}
51
52
label {
53
	text-align: right;
54
	width: 250px;
55
	padding-right: 20px;
56
}
57
58
br {
59
	clear: left;
60
}
61
62
input[type="submit"] {
63
    width: 50px;
64
}
65 3081 jones
</style>
66
</head>
67
<body>
68 3083 jones
<p><img src="metacat-logo.png" width="100px" align="right"/>
69 3081 jones
<h2>Metacat Configuration</h2>
70
</p>
71
72
<p>Welcome to MetaCat!</p>
73
<p>This installation of Metacat needs to be configured before it can
74
   function properly. Please fill out the required information and you'll be
75
   up and running.
76
</p>
77
<br clear="right"/>
78 3083 jones
79 3081 jones
<form method="POST" action="/knb/metacat">
80 3083 jones
81
<p class="section">All properties (unsorted, need to fix)</p>
82
83
<%
84
   Enumeration optionsList = (Enumeration)request.getAttribute("optionslist");
85
   while (optionsList.hasMoreElements()) {
86
       String name = (String)optionsList.nextElement();
87
       if (!name.equals("configured")) {
88
%>
89
        <label for="<%= name %>"><%= name %></label>
90
	    <input id="<%= name %>" name="<%= name %>"
91
	           value="<%= request.getAttribute(name) %>"
92
	           <% if (name.equals("password")) { %>
93
	           type="password"
94
	           <% } else { %>
95
	           type="text"
96
	           <% } %>
97
	           /><br/>
98
<%
99
       }
100
   }
101
%>
102
103
<input type="hidden" name="action" value="configure"/>
104 3081 jones
<p><input type="submit" value="Save"/></p>
105 3083 jones
106 3081 jones
</form>
107
108
</body>
109
</html>