Update of 
/var/cvs/contributions/CMSContainer_Modules/community/src/webapp/editors/community
In directory 
james.mmbase.org:/tmp/cvs-serv32203/community/src/webapp/editors/community

Modified Files:
      Tag: b1_4
        index.jsp user.jsp 
Added Files:
      Tag: b1_4
        group.jsp 
Removed Files:
      Tag: b1_4
        userDetails.jsp 
Log Message:
CMSC-617 Personal Pages module
Backport to 1.4


See also: 
http://cvs.mmbase.org/viewcvs/contributions/CMSContainer_Modules/community/src/webapp/editors/community
See also: http://www.mmbase.org/jira/browse/CMSC-617


group.jsp is new



Index: index.jsp
===================================================================
RCS file: 
/var/cvs/contributions/CMSContainer_Modules/community/src/webapp/editors/community/index.jsp,v
retrieving revision 1.4
retrieving revision 1.4.2.1
diff -u -b -r1.4 -r1.4.2.1
--- index.jsp   31 Jan 2008 14:18:13 -0000      1.4
+++ index.jsp   25 Feb 2008 16:26:16 -0000      1.4.2.1
@@ -4,25 +4,36 @@
 <mm:content type="text/html" encoding="UTF-8" expires="0">
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
 <html:html xhtml="true">
-<cmscedit:head title="userlist.title">
+<cmscedit:head title="view.title">
    <script src="userlist.js" type="text/javascript"></script>
 </cmscedit:head>   
 <body>
 <mm:cloud loginpage="../login.jsp" rank="administrator" jspvar="cloud">
 <div style="float: left">
-<cmscedit:sideblock title="userlist.groups" titleClass="side_block_gray">
+<cmscedit:sideblock title="view.groups" titleClass="side_block_gray">
       <ul class="shortcuts">
             <li class="usergroupnew">
-            <a href="GroupInitAction.do"><fmt:message key="userlist.newgroup" 
/></a>
+            <a href="groupInitAction.do"><fmt:message key="view.newgroup" 
/></a>
          </li>
       </ul>
       <div style="clear:both; height:10px;"></div>
 
       <table style="position:relative;left:40px;">
          <tr>
-            <td><b><fmt:message key="group.name" /></b></td>
+            <td><b><fmt:message key="view.group.name" /></b></td>
          </tr>
-
+         <community:listGroups var="groupList" />
+         <c:forEach var="group" items="${groupList}">
+            <tr>
+               <td style="padding-right: 10px"><a 
href="groupInitAction.do?groupid=${group}">${group}</a></td>
+               <td>
+                  <a href="deleteGroupAction.do?groupid=${group}">
+                     <img src="../gfx/icons/delete.png" border='0' 
title="<fmt:message key="view.removegroup" />"
+                        onclick="return confirm('<fmt:message 
key="view.removegroupquestion" />')" />
+                  </a>
+               </td>
+            </tr>
+         </c:forEach>
       </table>
    </cmscedit:sideblock>
 </div>
@@ -46,16 +57,11 @@
             <tr>
                <td style="padding-right: 10px"><a 
href="userAddInitAction.do?userid=${auth.userId}">${auth.userId}</a></td>
                <td>
-                  <a href="javascript:info('${auth.id}')">
-                     <img src="../gfx/icons/info.png" width="16" height="16" 
alt="<fmt:message key="content.info" />"/>
-                  </a>
-               </td>
-               <td><maydelete>
                   <a href="deleteUserAction.do?userid=${auth.userId}">
                      <img src="../gfx/icons/delete.png" border='0' 
title="<fmt:message key="view.removeuser" />"
                         onclick="return confirm('<fmt:message 
key="view.removeuserquestion" />')" />
                   </a>
-               </maydelete></td>
+               </td>
             </tr>
          </c:forEach>
       </table>


Index: user.jsp
===================================================================
RCS file: 
/var/cvs/contributions/CMSContainer_Modules/community/src/webapp/editors/community/user.jsp,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -b -r1.1 -r1.1.2.1
--- user.jsp    31 Jan 2008 14:17:58 -0000      1.1
+++ user.jsp    25 Feb 2008 16:26:16 -0000      1.1.2.1
@@ -1,5 +1,6 @@
 <[EMAIL PROTECTED] language="java" contentType="text/html;charset=utf-8"%>
 <[EMAIL PROTECTED] file="globals.jsp"%>
+<%@ taglib uri="http://finalist.com/cmsc/community"; prefix="community" %>
 <mm:content type="text/html" encoding="UTF-8" expires="0">
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
 <html:html xhtml="true">
@@ -58,7 +59,6 @@
             </td>
          </tr>
 
-           
                </table>
                </div>
 


_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to