3 ~ Licensed under the Apache License, Version 2.0 (the "License");
4 ~ you may not use this file except in compliance with the License.
5 ~ You may obtain a copy of the License at
7 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~ Unless required by applicable law or agreed to in writing, software
10 ~ distributed under the License is distributed on an "AS IS" BASIS,
11 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ~ See the License for the specific language governing permissions and
13 ~ limitations under the License.
16 <%@ taglib prefix="s" uri="/struts-tags"%>
17 <%@ taglib prefix="redback" uri="/redback/taglib-1.0"%>
18 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
21 <s:i18n name="org.codehaus.plexus.redback.struts2.default">
23 <title><s:text name="role.list.page.title"/></title>
28 <!-- %@ include file="/WEB-INF/jsp/redback/include/rbacListNavigation.jsp" % -->
30 <h2><s:text name="role.list.section.title"/></h2>
32 <%@ include file="/WEB-INF/jsp/redback/include/formValidationResults.jsp" %>
37 <c:when test="${!empty allRoles}">
40 <th width="49%"><s:text name="role.name"/></th>
41 <th width="49%"><s:text name="role.description"/></th>
45 <c:forEach var="role" items="${allRoles}">
48 <s:url id="roleUrl" action="role">
49 <s:param name="name">${role.name}</s:param>
51 <s:a href="%{roleUrl}"><c:out value="${role.name}" /></s:a>
54 <c:out value="${role.description}" />
60 <p><em><s:text name="role.list.no.roles.available"/></em></p>