Changeset 729

Show
Ignore:
Timestamp:
07/09/06 23:20:02
Author:
douglm
Message:

Action to uodate a group and add selected users

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freebusy/trunk/webclient/src/org/bedework/fbaggregator/SelectUsers.java

    r727 r729  
    4848 
    4949    Collection atts = null; 
    50     FBAttendeeSet cur = sess.getAllUsers(); 
     50    FBAttendeeSet users = sess.getAllUsers(); 
    5151 
    5252    if (prefix != null) { 
    53       atts = cur.startsWith(prefix); 
     53      atts = users.startsWith(prefix); 
    5454    } else if (suffix != null) { 
    55       atts = cur.endsWith(suffix); 
     55      atts = users.endsWith(suffix); 
    5656    } else if (account != null) { 
    5757      atts = new ArrayList(); 
    58       atts.add(cur.getInfo(account)); 
     58      atts.add(users.getInfo(account)); 
    5959    } 
    6060 
  • freebusy/trunk/webclient/war/WEB-INF/struts-config.xml

    r727 r729  
    122122    </action> 
    123123 
     124    <action    path="/updateGroup" 
     125               type="org.bedework.fbaggregator.UpdateGroup" 
     126               name="bwForm" 
     127               scope="session" 
     128               validate="false"> 
     129      <forward name="success" path="/showMain.rdo" redirect="true" /> 
     130      <forward name="noAction" path="/showMain.rdo" redirect="true"/> 
     131      <forward name="notFound" path="/showMain.rdo" redirect="true"/> 
     132    </action> 
     133 
    124134    <action    path="/addUser" 
    125135               type="org.bedework.fbaggregator.AddUser"