Changeset 78
- Timestamp:
- 02/03/06 15:00:46
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/webclient/war/WEB-INF/struts-config.xml
r76 r78 101 101 </action> 102 102 103 <action path="/showExportData" 104 type="org.bedework.webclient.BwRenderAction" 105 name="calForm" 106 scope="session" 107 validate="false"> 108 <forward name="success" path="/docs/exportData.jsp" /> 109 </action> 110 103 111 <action path="/showFreeBusy" 104 112 type="org.bedework.webclient.BwRenderAction" … … 253 261 </action> 254 262 263 <action path="/export" 264 type="org.bedework.webcommon.misc.ExportAction" 265 name="calForm" 266 scope="session" 267 validate="false"> 268 <forward name="success" path="/showExportData.rdo" redirect="true" /> 269 </action> 270 255 271 <action path="/showPage" 256 272 type="org.bedework.webclient.BwAction" trunk/calendar3/webcommon/src/org/bedework/webcommon/misc/ExportAction.java
r55 r78 158 158 } 159 159 160 IcalTranslator ical = new IcalTranslator(svci.getIcalCallback());161 162 160 if (ev != null) { 163 161 evs = new Vector(); … … 166 164 evs.addAll(ev.getOverrides()); 167 165 } 166 167 IcalTranslator ical = new IcalTranslator(svci.getIcalCallback()); 168 168 169 169 Calendar vcal = ical.toIcal(evs);
