Changeset 729
- Timestamp:
- 07/09/06 23:20:02
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freebusy/trunk/webclient/src/org/bedework/fbaggregator/SelectUsers.java
r727 r729 48 48 49 49 Collection atts = null; 50 FBAttendeeSet cur= sess.getAllUsers();50 FBAttendeeSet users = sess.getAllUsers(); 51 51 52 52 if (prefix != null) { 53 atts = cur.startsWith(prefix);53 atts = users.startsWith(prefix); 54 54 } else if (suffix != null) { 55 atts = cur.endsWith(suffix);55 atts = users.endsWith(suffix); 56 56 } else if (account != null) { 57 57 atts = new ArrayList(); 58 atts.add( cur.getInfo(account));58 atts.add(users.getInfo(account)); 59 59 } 60 60 freebusy/trunk/webclient/war/WEB-INF/struts-config.xml
r727 r729 122 122 </action> 123 123 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 124 134 <action path="/addUser" 125 135 type="org.bedework.fbaggregator.AddUser"
