taylor 2004/09/20 10:16:13 Modified: applications/pam/src/webapp/WEB-INF/view user-details.jsp Log: profiler rule tab prototype CVS: ---------------------------------------------------------------------- CVS: PR: CVS: If this change addresses a PR in the problem report tracking CVS: database, then enter the PR number(s) here. CVS: Obtained from: CVS: If this change has been taken from another system, such as NCSA, CVS: then name the system in this line, otherwise delete it. CVS: Submitted by: CVS: If this code has been contributed to Apache by someone else; i.e., CVS: they sent us a patch or a new module, then include their name/email CVS: address here. If this is your work then delete this line. CVS: Reviewed by: CVS: If we are doing pre-commit code reviews and someone else has CVS: reviewed your changes, include their name(s) here. CVS: If you have not had it reviewed then delete this line. Revision Changes Path 1.7 +5 -6 jakarta-jetspeed-2/applications/pam/src/webapp/WEB-INF/view/user-details.jsp Index: user-details.jsp =================================================================== RCS file: /home/cvs/jakarta-jetspeed-2/applications/pam/src/webapp/WEB-INF/view/user-details.jsp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- user-details.jsp 20 Sep 2004 07:25:23 -0000 1.6 +++ user-details.jsp 20 Sep 2004 17:16:13 -0000 1.7 @@ -210,10 +210,10 @@ <%--TODO: switch to c:choose --%> <c:if test="${selectedTab.id == 'user_profile'}"> <div id="Profile"> - <portlet:actionURL var="edit_group_link" /> + <portlet:actionURL var="edit_role_link" /> - <form name="Edit_Group_Form" action="<c:out value="${edit_group_link}"/>"> - <input type="hidden" name="portlet_action" value="security_user.edit_group"/> + <form name="Edit_Group_Form" action="<c:out value="${edit_role_link}"/>"> + <input type="hidden" name="portlet_action" value="security_user.update_user_rule"/> <table> <tr> <th> </th> @@ -223,8 +223,7 @@ <c:forEach var="rule" items="${rules}"> <tr> <td> - <input type="checkbox" name="user_rule_id" value="<c:out value="${rule.id}"/>"/> - + <input type="radio" name="user_profile_id" <c:if test="${rule.id == selectedRule}">checked</c:if> value="<c:out value="${rule.id}"/>"/> </td> <td> <c:out value="${rule.id}"/> @@ -235,8 +234,8 @@ </tr> </c:forEach> </table> + <input type="submit" value="<fmt:message key="security.update"/>" onClick="this.form.portlet_action.value = 'security_user.update_user_rule'"/> </form> - </div> </c:if> <%--End of Profile tab data--%>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]