Project

General

Profile

1
<%@ page language="java"%>
2
<%@ page import="java.util.Set,java.util.Map,java.util.Vector,edu.ucsb.nceas.utilities.*" %>
3
<%
4
	/**
5
 *  '$RCSfile$'
6
 *    Copyright: 2008 Regents of the University of California and the
7
 *               National Center for Ecological Analysis and Synthesis
8
 *  For Details: http://www.nceas.ucsb.edu/
9
 *
10
 *   '$Author: walker $'
11
 *     '$Date: 2013-09-17 16:17:55 -0700 (Tue, 17 Sep 2013) $'
12
 * '$Revision: 8222 $'
13
 * 
14
 * This program is free software; you can redistribute it and/or modify
15
 * it under the terms of the GNU General Public License as published by
16
 * the Free Software Foundation; either version 2 of the License, or
17
 * (at your option) any later version.
18
 *
19
 * This program is distributed in the hope that it will be useful,
20
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 * GNU General Public License for more details.
23
 *
24
 * You should have received a copy of the GNU General Public License
25
 * along with this program; if not, write to the Free Software
26
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27
 */
28
%>
29

    
30
<%
31
	PropertiesMetaData metadata = (PropertiesMetaData)request.getAttribute("metadata");
32
 	Vector<String> ldapOrganizations = 
33
 		(Vector<String>)request.getAttribute("orgList"); 
34
%>
35

    
36
<html>
37
<head>
38

    
39
<title>Organization Configuration</title>
40
<link rel="stylesheet" type="text/css" 
41
        href="<%= request.getContextPath() %>/admin/admin.css"></link>
42
<script language="JavaScript" type="text/JavaScript" src="<%= request.getContextPath() %>/admin/admin.js"></script>
43

    
44
</head>
45
<body>
46
<div class="document">
47

    
48
	<h2>Organization Configuration</h2>
49
	Enter organization specific properties here. 
50
	<br class="ldap-header">
51
	
52
	<%@ include file="./page-message-section.jsp"%>
53
	
54
	
55
	<form method="POST" name="configuration_form" action="<%= request.getContextPath() %>/admin" 
56
	                                        onsubmit="return submitForm(this);">
57
	<%
58
		if (metadata != null) {
59
			// each group describes a section of properties
60
			Map<Integer, MetaDataGroup> groupMap = metadata.getGroups();
61
			Set<Integer> groupIdSet = groupMap.keySet();
62
			for (Integer groupId : groupIdSet) {
63
				// for this group, display the header (group name)
64
				MetaDataGroup metaDataGroup = (MetaDataGroup)groupMap.get(groupId);
65
	%>
66
				<h3><%= metaDataGroup.getName()  %></h3>
67
	<%
68
	 			if (metaDataGroup.getComment() != null) {
69
	%>
70
	  				<div class="heading-comment"><%= metaDataGroup.getComment() %></div>
71
	<%
72
	 			}
73
	%>
74
				<br>
75
	<%
76
				for (String orgName : ldapOrganizations) {
77
	%>
78
				<table class="config-section">
79
					<tr>
80
					<td class="config-checkbox">
81
		  				<input class="org" type="checkbox" name="<%= orgName %>.cb" onClick="toggleHiddenTable(this, 'hiding-section-<%= orgName %>')"/>
82
		  			</td>
83
		  			<td class="config-checkbox-label">	
84
						<label for="<%= orgName %>.cb"><%=orgName%></label>
85
					</td> 
86
					</tr>
87
				</table>
88
				<table class="config-section-hiding" id="hiding-section-<%= orgName %>">  
89
	<%
90
					// get all the properties in this group
91
					Map<Integer, MetaDataProperty> propertyMap = 
92
						metadata.getPropertiesInGroup(metaDataGroup.getIndex());
93
					Set<Integer> orgIndexes = propertyMap.keySet();
94
		  			for (Integer orgIndex : orgIndexes) {
95
		  				MetaDataProperty orgProperty = propertyMap.get(orgIndex);
96
		  				String orgKeyName = orgProperty.getKey() + "." + orgName;
97
	%>		
98
					<tr>
99
					<td class="config-property-label" >	
100
		    			<label for="<%= orgKeyName %>" title="<%= orgProperty.getDescription() %>"><%= orgProperty.getLabel() %></label>
101
	     			</td>	
102
	     			<td class="config-property-input" >
103
						<input name="<%= orgKeyName %>" 
104
							value="<%= request.getAttribute(orgKeyName) %>"	  
105
	<% 
106
						if (orgProperty.getFieldType().equals("password")) { 
107
	%>           		    	    	           		    	             			
108
		           			type="password"       
109
	<%
110
		  				}
111
	%>    			
112
		           			alt="List of administrators for this installation in LDAP DN syntax (colon separated)"/>	           		    
113
					</td>
114
					<td class="config-question-mark">
115
						<i class="icon-question-sign" 
116
							 alt="<%= orgProperty.getDescription() %>" 
117
							 onClick="helpWindow('<%= request.getContextPath() %>', '<%= orgProperty.getHelpFile() %>')"></i>
118
					</td>
119
					</tr>	  
120
	<%
121
					if (orgProperty.getDescription() != null) {
122
	%>
123
		    	        <tr>
124
		    	        <td></td>
125
		    	        <td class="config-property-description" colspan="2" >
126
							<%= orgProperty.getDescription() %>
127
		    	        </td>
128
	<%
129
		    			}
130
		  			}
131
	%>
132
	      		</table>
133
	<%
134
				}
135
			}
136
		}
137
	%>
138
	
139
	  <input type="hidden" name="configureType" value="organization"/>
140
	  <input type="hidden" name="processForm" value="true"/>
141
	  <input class="button" type="submit" value="Save"/>
142
	  <input class="button" type="button" value="Cancel" onClick="forward('./admin')"> 
143
	
144
	</form>
145
</div>
146
</body>
147
</html>
(14-14/19)