Changeset 359

Show
Ignore:
Timestamp:
04/10/06 09:51:15
Author:
johnsa
Message:

moved personal client location management jsp into subdirectory and updated struts-config to match; copied prefs and view subdirectories from admin client so we can support these functions.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/calendar3/webclient/war/WEB-INF/struts-config.xml

    r356 r359  
    102102    </action> 
    103103 
     104    <action    path="/showExportData" 
     105               type="org.bedework.webclient.BwRenderAction" 
     106               name="calForm" 
     107               scope="session" 
     108               validate="false"> 
     109      <forward name="success" path="/docs/exportData.jsp" /> 
     110    </action> 
     111 
     112    <action    path="/showFreeBusy" 
     113               type="org.bedework.webclient.BwRenderAction" 
     114               name="calForm" 
     115               scope="session" 
     116               validate="false"> 
     117      <forward name="success" path="/docs/freeBusy.jsp" /> 
     118    </action> 
     119 
     120    <action    path="/showManageLocations" 
     121               type="org.bedework.webclient.BwRenderAction" 
     122               name="calForm" 
     123               scope="session" 
     124               validate="false"> 
     125      <forward name="success" path="/docs/location/manageLocations.jsp" /> 
     126    </action> 
     127 
    104128    <action    path="/showEditLocation" 
    105129               type="org.bedework.webclient.BwRenderAction" 
     
    107131               scope="session" 
    108132               validate="false"> 
    109       <forward name="success" path="/docs/editLocation.jsp" /> 
    110     </action> 
    111  
    112     <action    path="/showExportData" 
    113                type="org.bedework.webclient.BwRenderAction" 
    114                name="calForm" 
    115                scope="session" 
    116                validate="false"> 
    117       <forward name="success" path="/docs/exportData.jsp" /> 
    118     </action> 
    119  
    120     <action    path="/showFreeBusy" 
    121                type="org.bedework.webclient.BwRenderAction" 
    122                name="calForm" 
    123                scope="session" 
    124                validate="false"> 
    125       <forward name="success" path="/docs/freeBusy.jsp" /> 
    126     </action> 
    127  
    128     <action    path="/showManageLocations" 
    129                type="org.bedework.webclient.BwRenderAction" 
    130                name="calForm" 
    131                scope="session" 
    132                validate="false"> 
    133       <forward name="success" path="/docs/manageLocations.jsp" /> 
     133      <forward name="success" path="/docs/location/editLocation.jsp" /> 
    134134    </action> 
    135135