1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <%--
- Licensed to Jasig under one or more contributor license
- agreements. See the NOTICE file distributed with this work
- for additional information regarding copyright ownership.
- Jasig licenses this file to you under the Apache License,
- Version 2.0 (the "License"); you may not use this file
- except in compliance with the License. You may obtain a
- copy of the License at the following location:
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
- --%>
- <%@include file="includes/top.jsp"%>
- <c:if test="${fn:length(services) eq 0}">
- <div id="msg" class="errors"><p><spring:message code="management.services.service.warn" arguments="${defaultServiceUrl}" /></p></div>
- </c:if>
- <c:if test="${not empty param.status}">
- <div id="msg" class="success"><spring:message code="management.services.status.${param.status}" arguments="${param.serviceName}" /></div>
- </c:if>
- <div class="errors" id="errorsDiv">
- <spring:message code="management.services.status.evaluationOrder.notupdated" />
- </div>
- <table id="headerTable" class="headerTable">
- <tr>
- <th class="th1"><spring:message code="management.services.manage.label.name" /></th>
- <th class="th2"><spring:message code="management.services.manage.label.serviceUrl" /></th>
- <th class="th3 ac"><spring:message code="management.services.manage.label.enabled" /></th>
- <th class="th4 ac"><spring:message code="management.services.manage.label.allowedToProxy" /></th>
- <th class="th5 ac"><spring:message code="management.services.manage.label.ssoParticipant" /></th>
- <th class="th6 ac"><spring:message code="management.services.manage.label.anonymous" /></th>
- <th class="th7 ac"><spring:message code="management.services.manage.label.usernameAttribute" /></th>
- <th class="th8 ac"><spring:message code="management.services.manage.label.evaluationOrder" /></th>
- <th class="th9"> </th>
- <th class="th10"> </th>
- </tr>
- </table>
- <div id="tableWrapper" class="tableWrapper">
- <table id="scrollTable" class="scrollTable highlight large">
- <tbody>
- <c:forEach items="${services}" var="service" varStatus="status">
- <tr id="row${status.index}"${param.id eq service.id ? ' class="added"' : ''}>
- <td id="${service.id}" class="td1">${service.name}</td>
- <td class="td2">${fn:length(service.serviceId) < 50 ? service.serviceId : fn:substring(service.serviceId, 0, 50)}</td>
- <td class="ac td3"><img src="../images/services/${service.enabled}.gif" alt="${service.enabled ? 'Enabled' : 'Disabled'}" /></td>
- <td class="ac td4"><img src="../images/services/${service.allowedToProxy}.gif" alt="${service.allowedToProxy ? 'Allowed to Proxy' : 'Not Allowed to Proxy'}" /></td>
- <td class="ac td5"><img src="../images/services/${service.ssoEnabled}.gif" alt="${service.ssoEnabled ? 'SSO Enabled' : 'SSO Disabled'}" /></td>
- <td class="ac td6"><img src="../images/services/${service.anonymousAccess}.gif" alt="${service.anonymousAccess ? 'Anonyous Access Enabled' : 'Anonyous Access Disabled'}" /></td>
- <td class="ac td7">${service.usernameAttribute}</td>
- <td class="ac td8">${service.evaluationOrder}</td>
- <td class="td9" id="edit${status.index}"><a href="edit.html?id=${service.id}" class="edit"><spring:message code="management.services.manage.action.edit" /></a></td>
- <td class="td10" id="delete${status.index}"><a href="#" class="del" onclick="swapButtonsForConfirm('${status.index}','${service.id}'); return false;"><spring:message code="management.services.manage.action.delete" /></a></td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </div>
- <div class="add"><a href="add.html"><span style="text-transform: lowercase;"><spring:message code="addServiceView" /></span></a></div>
- <%@include file="includes/bottom.jsp" %>
|