Revision 4584
Added by daigle about 16 years ago
metacat-configuration.jsp | ||
---|---|---|
34 | 34 |
DBVersion databaseVersion = (DBVersion)request.getAttribute("databaseVersion"); |
35 | 35 |
Boolean propsConfigured = (Boolean)request.getAttribute("propsConfigured"); |
36 | 36 |
Boolean orgsConfigured = (Boolean)request.getAttribute("orgsConfigured"); |
37 |
Boolean ldapConfigured = (Boolean)request.getAttribute("ldapConfigured");
|
|
37 |
Boolean authConfigured = (Boolean)request.getAttribute("authConfigured");
|
|
38 | 38 |
Boolean skinsConfigured = (Boolean)request.getAttribute("skinsConfigured"); |
39 | 39 |
Boolean dbConfigured = (Boolean)request.getAttribute("dbConfigured"); |
40 | 40 |
String geoserverConfigured = (String)request.getAttribute("geoserverConfigured"); |
... | ... | |
81 | 81 |
<% |
82 | 82 |
} |
83 | 83 |
|
84 |
if (ldapConfigured != null && ldapConfigured) {
|
|
84 |
if (authConfigured != null && authConfigured) {
|
|
85 | 85 |
%> |
86 | 86 |
<tr> |
87 | 87 |
<td class="configured-tag">[configured] </td> |
88 |
<td class="property-title"> LDAP Configuration </td>
|
|
89 |
<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=ldap">Reconfigure Now</a> </td>
|
|
88 |
<td class="property-title"> Authentication Configuration </td>
|
|
89 |
<td class="configure-link"> <a href="<%= request.getContextPath() %>/admin?configureType=auth">Reconfigure Now</a> </td>
|
|
90 | 90 |
</tr> |
91 | 91 |
<% |
92 | 92 |
} else { |
93 | 93 |
%> |
94 | 94 |
<tr> |
95 | 95 |
<td class=unconfigured-tag>[unconfigured] </td> |
96 |
<td class=property-title> LDAP Configuration </td>
|
|
97 |
<td class=configure-link> <a href="<%= request.getContextPath() %>/admin?configureType=ldap">Configure Now</a> </td>
|
|
96 |
<td class=property-title> Authentication Configuration </td>
|
|
97 |
<td class=configure-link> <a href="<%= request.getContextPath() %>/admin?configureType=auth">Configure Now</a> </td>
|
|
98 | 98 |
</tr> |
99 | 99 |
<% |
100 | 100 |
} |
Also available in: Unified diff
change generic authentication properties from ldap.* to auth.*