Changeset 521
- Timestamp:
- 06/01/06 14:59:13
- Files:
-
- trunk/calendar3/calCore/resources/hbms/CalSuite.hbm.xml (modified) (2 diffs)
- trunk/calendar3/webcommon/src/org/bedework/webcommon/BwActionFormBase.java (modified) (1 diff)
- trunk/calendar3/webcommon/src/org/bedework/webcommon/calendars/UpdateCalendarAction.java (modified) (1 diff)
- trunk/calendar3/webcommon/src/org/bedework/webcommon/calsuite/FetchCalSuiteAction.java (added)
- trunk/calendar3/webcommon/src/org/bedework/webcommon/calsuite/UpdateCalSuiteAction.java (added)
- trunk/calendar3/webcommon/src/org/bedework/webcommon/views/FetchViewAction.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/calCore/resources/hbms/CalSuite.hbm.xml
r520 r521 20 20 class="org.bedework.calfacade.BwUser" 21 21 unique="true"> 22 <column name="creatorid" not-null="true" index="idx_ sp_creator" />22 <column name="creatorid" not-null="true" index="idx_calsuite_creator" /> 23 23 </many-to-one> 24 24 … … 27 27 unique="true"> 28 28 <column name="ownerid" not-null="true" 29 index="idx_ sp_owner" unique-key="sponsor_key" />29 index="idx_calsuite_owner" unique-key="sponsor_key" /> 30 30 </many-to-one> 31 31 trunk/calendar3/webcommon/src/org/bedework/webcommon/BwActionFormBase.java
r520 r521 610 610 } 611 611 612 /** Return the collection of cal suites 613 * 614 * @return views 615 */ 616 public Collection getCalSuites() { 617 try { 618 return fetchSvci().getCalSuites(); 619 } catch (Throwable t) { 620 err.emit(t); 621 return null; 622 } 623 } 624 612 625 /* ==================================================================== 613 626 * Admin groups trunk/calendar3/webcommon/src/org/bedework/webcommon/calendars/UpdateCalendarAction.java
r451 r521 71 71 * <li>"calendar.summary" Summary for calendar</li> 72 72 * <li>"calendar.description" Description for calendar</li> 73 * <li>"calendar Collection"Calendar/Folder flag true/false</li>73 * <li>"calendar.calendarCollection" Calendar/Folder flag true/false</li> 74 74 * </ul> 75 75 * trunk/calendar3/webcommon/src/org/bedework/webcommon/views/FetchViewAction.java
r423 r521 63 63 import javax.servlet.http.HttpServletResponse; 64 64 65 /** Delete a view.65 /** Fetch a view for update/display/delete. 66 66 * 67 67 * <p>Parameters are:<ul>
