You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ca...@apache.org on 2006/09/19 09:46:04 UTC

svn commit: r447774 - /maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/webapp/components/projectSummaryComponent.jsp

Author: carlos
Date: Tue Sep 19 00:46:03 2006
New Revision: 447774

URL: http://svn.apache.org/viewvc?view=rev&rev=447774
Log:
[CONTINUUM-862] Hide links for project group operations based on users permissions, Fix permssion checking

Modified:
    maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/webapp/components/projectSummaryComponent.jsp

Modified: maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/webapp/components/projectSummaryComponent.jsp
URL: http://svn.apache.org/viewvc/maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/webapp/components/projectSummaryComponent.jsp?view=diff&rev=447774&r1=447773&r2=447774
==============================================================================
--- maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/webapp/components/projectSummaryComponent.jsp (original)
+++ maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/webapp/components/projectSummaryComponent.jsp Tue Sep 19 00:46:03 2006
@@ -62,7 +62,7 @@
         </c:choose>
       </ec:column>
       <ec:column property="releaseAction" title="&nbsp;" width="1%">
-        <c:if test="${pageScope.projectGroup.permissions.execute}">
+        <c:if test="${requestScope.projectGroup.permissions.execute}">
           <c:choose>
             <c:when test="${pageScope.project.state == 2}">
               <ww:url id="releaseProjectUrl" action="releaseProject!promptReleaseGoal.action" namespace="/">
@@ -81,7 +81,7 @@
         </c:if>
       </ec:column>
       <ec:column property="deleteAction" title="&nbsp;" width="1%">
-        <c:if test="${pageScope.projectGroup.permissions.delete}">
+        <c:if test="${requestScope.projectGroup.permissions.delete}">
           <c:choose>
             <c:when
                 test="${pageScope.project.state == 1 || pageScope.project.state == 10 || pageScope.project.state == 2 || pageScope.project.state == 3 || pageScope.project.state == 4}">