xlawrence    2005/01/11 12:05:56 CET

  Modified files:
    calClient/webapp/admin/src/webapp/WEB-INF struts-config.xml 
    calClient/webapp/uiclient/src/webapp/WEB-INF struts-config.xml 
  Log:
  changed DOCTYPE definition to struts version 1.2 DTD
  
  Revision  Changes    Path
  1.2       +3 -3      
uwcal_JSR168/calClient/webapp/admin/src/webapp/WEB-INF/struts-config.xml
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/uwcal_JSR168/calClient/webapp/admin/src/webapp/WEB-INF/struts-config.xml.diff?r1=1.1&r2=1.2&f=h
  1.2       +1 -1      
uwcal_JSR168/calClient/webapp/uiclient/src/webapp/WEB-INF/struts-config.xml
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/uwcal_JSR168/calClient/webapp/uiclient/src/webapp/WEB-INF/struts-config.xml.diff?r1=1.1&r2=1.2&f=h
  
  
  
  Index: struts-config.xml
  ===================================================================
  RCS file: 
/home/cvs/repository/uwcal_JSR168/calClient/webapp/admin/src/webapp/WEB-INF/struts-config.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- struts-config.xml 11 Jan 2005 09:47:08 -0000      1.1
  +++ struts-config.xml 11 Jan 2005 11:05:56 -0000      1.2
  @@ -26,8 +26,8 @@
    Author: Xavier Lawrence @ jahia . com
   -->
   <!DOCTYPE struts-config PUBLIC
  -          "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN"
  -          "http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd";>
  +          "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
  +          "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd";>
   
     <!-- =================================================================
        This is a the Struts configuration for the public events admin app.
  @@ -192,7 +192,7 @@
   
     <!-- ========== Controller Configuration ================================ 
-->
   
  -  <controller pagePattern="$M$P" inputForward="true" 
  +  <controller pagePattern="$M$P" inputForward="true"
       
processorClass="org.apache.portals.bridges.struts.PortletRequestProcessor"/>
       <!-- pagePattern: use this pattern when creating URIs to resources.
           $M=module, $P=path -->
  
  
  
  Index: struts-config.xml
  ===================================================================
  RCS file: 
/home/cvs/repository/uwcal_JSR168/calClient/webapp/uiclient/src/webapp/WEB-INF/struts-config.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- struts-config.xml 11 Jan 2005 09:47:13 -0000      1.1
  +++ struts-config.xml 11 Jan 2005 11:05:56 -0000      1.2
  @@ -1 +1 @@
  -<?xml version="1.0" encoding="ISO-8859-1" ?>
<!--
 BEGIN LICENSE BLOCK
 Version: JCSL 1.0

 The contents of this file are subject to the Jahia Community Source License
 1.0 or later (the "License"); you may not use this file except in
 compliance with the License. You may obtain a copy of the License at
 http://www.jahia.org/license

 Software distributed under the License is distributed on an "AS IS" basis,
 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 for the rights, obligations and limitations governing use of the contents
 of the file. The Original and Upgraded Code is the Jahia CMS and Portal
 Server. The developer of the Original and Upgraded Code is JAHIA Ltd. JAHIA
 Ltd. owns the copyrights in the portions it created. All Rights Reserved.

 The Shared Modifications are Jahia View Helper.

 The Developer of the Shared Modifications is Jahia Solution Sarl.
 Portions created by the Initial Developer are Copyright (C) 2002 by the
 Initial D
 eveloper. All Rights Reserved.

 END LICENSE BLOCK

 Author: Xavier Lawrence @ jahia . com
-->
<!DOCTYPE struts-config PUBLIC
          "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN"
          "http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd";>

  <!-- ====================================================================
     This is a the Struts configuration for the uwcal client.
     ====================================================================== -->
     
<struts-config>
  <!-- ========== Form Bean Definitions =================================== -->
  <form-beans>
    <form-bean      name="calForm"
                    type="edu.rpi.cct.uwcal.webclient.UWCalActionForm"/>
  </form-beans>

  <!-- ========== Global Forward Definitions ============================== -->

  <global-forwards>
    <forward name="initial"     path="/setup.do"/>
    <forward name="doNothing"   path="/WEB-INF/jsp/main.jsp" />
    <forward name="error"       path=
 "/WEB-INF/jsp/main.jsp"/>
    <forward name="success"     path="/WEB-INF/jsp/main.jsp" />
    <forward name="cancelled"   path="/WEB-INF/jsp/main.jsp" />
  </global-forwards>

  <!-- ========== Action Mapping Definitions ============================== -->

  <action-mappings>
    <action    path="/setup"
               type="org.jahia.suite.calendar.webApp.uiclient.Action"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="loggedOut" path="/WEB-INF/jsp/login/logout.html" />
    </action>

    <action    path="/selectFilter"
               type="org.jahia.suite.calendar.webApp.uiclient.FilterAction"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="noCalDef" path="/WEB-INF/jsp/main.jsp" />
    </action>

    <action    path="/showCals"
               type="org.jahia.suite.calendar.webApp.uiclient.Action"
               name="calForm"
               
 scope="session"
               validate="false">
      <forward name="success" path="/WEB-INF/jsp/calendars.jsp" />
    </action>

    <action    path="/setView"
               type="org.jahia.suite.calendar.webApp.uiclient.GoToAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>

    <action    path="/eventView"
               type="org.jahia.suite.calendar.webApp.uiclient.EventAction"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="success" path="/WEB-INF/jsp/eventMore.jsp" />
    </action>

    <action    path="/addEvent"
               type="org.jahia.suite.calendar.webApp.uiclient.AddEventAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>

    <action    path="/editEvent"
               type="org.jahia.suite.calendar.webApp.uiclient.EditEventAction"
               name="calForm"
 
               scope="session"
               validate="false">
      <forward name="edit" path="/WEB-INF/jsp/editEvent.jsp" />
    </action>

    <action    path="/delEvent"
               type="org.jahia.suite.calendar.webApp.uiclient.DelEventAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>

    <action    path="/addEventRef"
               type="org.jahia.suite.calendar.webApp.uiclient.AddEventRefAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>

    <action    path="/delEventRef"
               type="org.jahia.suite.calendar.webApp.uiclient.DelEventRefAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>

    <action    path="/showPage"
               type="org.jahia.suite.calendar.webApp.uiclient.Action"
               name="calForm"
               scope="session"
             
   validate="false">
      <forward name="success" path="/WEB-INF/jsp/showPage.jsp" />
    </action>

    <action    path="/manageLocations"
               type="org.jahia.suite.calendar.webApp.uiclient.Action"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="success" path="/WEB-INF/jsp/manageLocations.jsp" />
    </action>

    <action    path="/addLocation"
               type="org.jahia.suite.calendar.webApp.uiclient.AddLocationAction"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="success" path="/WEB-INF/jsp/manageLocations.jsp" />
    </action>

    <action    path="/editLocation"
               
type="org.jahia.suite.calendar.webApp.uiclient.EditLocationAction"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="edit" path="/WEB-INF/jsp/editLocation.jsp" />
      <forward name=
 "success" path="/WEB-INF/jsp/manageLocations.jsp" />
    </action>

    <action    path="/delLocation"
               type="org.jahia.suite.calendar.webApp.uiclient.DelLocationAction"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="referenced" path="/WEB-INF/jsp/manageLocations.jsp" />
      <forward name="success" path="/WEB-INF/jsp/manageLocations.jsp" />     
    </action>
    
    <action    path="/subscribe"
               type="org.jahia.suite.calendar.webApp.uiclient.SubscribeAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>
  </action-mappings>
  
  <!-- ========== Controller Configuration ================================ -->

  <controller pagePattern="$M$P" inputForward="true" 
    processorClass="org.apache.portals.bridges.struts.PortletRequestProcessor"/>
    <!-- pagePattern: use this pattern when creating URIs to resources.
      
   $M=module, $P=path -->
    <!-- inputForward: The "input" parameter on "action" elements is the name 
of a
         local or global "forward" rather than a module-relative path -->

<!--               unknown="true" -->

</struts-config>


  \ No newline at end of file
  +<?xml version="1.0" encoding="ISO-8859-1" ?>
<!--
 BEGIN LICENSE BLOCK
 Version: JCSL 1.0

 The contents of this file are subject to the Jahia Community Source License
 1.0 or later (the "License"); you may not use this file except in
 compliance with the License. You may obtain a copy of the License at
 http://www.jahia.org/license

 Software distributed under the License is distributed on an "AS IS" basis,
 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 for the rights, obligations and limitations governing use of the contents
 of the file. The Original and Upgraded Code is the Jahia CMS and Portal
 Server. The developer of the Original and Upgraded Code is JAHIA Ltd. JAHIA
 Ltd. owns the copyrights in the portions it created. All Rights Reserved.

 The Shared Modifications are Jahia View Helper.

 The Developer of the Shared Modifications is Jahia Solution Sarl.
 Portions created by the Initial Developer are Copyright (C) 2002 by the
 Initial D
 eveloper. All Rights Reserved.

 END LICENSE BLOCK

 Author: Xavier Lawrence @ jahia . com
-->
<!DOCTYPE struts-config PUBLIC
          "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
          "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd";>

  <!-- ====================================================================
     This is a the Struts configuration for the uwcal client.
     ====================================================================== -->

<struts-config>
  <!-- ========== Form Bean Definitions =================================== -->
  <form-beans>
    <form-bean      name="calForm"
                    type="edu.rpi.cct.uwcal.webclient.UWCalActionForm"/>
  </form-beans>

  <!-- ========== Global Forward Definitions ============================== -->

  <global-forwards>
    <forward name="initial"     path="/setup.do"/>
    <forward name="doNothing"   path="/WEB-INF/jsp/main.jsp" />
    <forward name="error"       path="/WEB
 -INF/jsp/main.jsp"/>
    <forward name="success"     path="/WEB-INF/jsp/main.jsp" />
    <forward name="cancelled"   path="/WEB-INF/jsp/main.jsp" />
  </global-forwards>

  <!-- ========== Action Mapping Definitions ============================== -->

  <action-mappings>
    <action    path="/setup"
               type="org.jahia.suite.calendar.webApp.uiclient.Action"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="loggedOut" path="/WEB-INF/jsp/login/logout.html" />
    </action>

    <action    path="/selectFilter"
               type="org.jahia.suite.calendar.webApp.uiclient.FilterAction"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="noCalDef" path="/WEB-INF/jsp/main.jsp" />
    </action>

    <action    path="/showCals"
               type="org.jahia.suite.calendar.webApp.uiclient.Action"
               name="calForm"
               scope
 ="session"
               validate="false">
      <forward name="success" path="/WEB-INF/jsp/calendars.jsp" />
    </action>

    <action    path="/setView"
               type="org.jahia.suite.calendar.webApp.uiclient.GoToAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>

    <action    path="/eventView"
               type="org.jahia.suite.calendar.webApp.uiclient.EventAction"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="success" path="/WEB-INF/jsp/eventMore.jsp" />
    </action>

    <action    path="/addEvent"
               type="org.jahia.suite.calendar.webApp.uiclient.AddEventAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>

    <action    path="/editEvent"
               type="org.jahia.suite.calendar.webApp.uiclient.EditEventAction"
               name="calForm"
    
            scope="session"
               validate="false">
      <forward name="edit" path="/WEB-INF/jsp/editEvent.jsp" />
    </action>

    <action    path="/delEvent"
               type="org.jahia.suite.calendar.webApp.uiclient.DelEventAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>

    <action    path="/addEventRef"
               type="org.jahia.suite.calendar.webApp.uiclient.AddEventRefAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>

    <action    path="/delEventRef"
               type="org.jahia.suite.calendar.webApp.uiclient.DelEventRefAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>

    <action    path="/showPage"
               type="org.jahia.suite.calendar.webApp.uiclient.Action"
               name="calForm"
               scope="session"
               val
 idate="false">
      <forward name="success" path="/WEB-INF/jsp/showPage.jsp" />
    </action>

    <action    path="/manageLocations"
               type="org.jahia.suite.calendar.webApp.uiclient.Action"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="success" path="/WEB-INF/jsp/manageLocations.jsp" />
    </action>

    <action    path="/addLocation"
               type="org.jahia.suite.calendar.webApp.uiclient.AddLocationAction"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="success" path="/WEB-INF/jsp/manageLocations.jsp" />
    </action>

    <action    path="/editLocation"
               
type="org.jahia.suite.calendar.webApp.uiclient.EditLocationAction"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="edit" path="/WEB-INF/jsp/editLocation.jsp" />
      <forward name="succ
 ess" path="/WEB-INF/jsp/manageLocations.jsp" />
    </action>

    <action    path="/delLocation"
               type="org.jahia.suite.calendar.webApp.uiclient.DelLocationAction"
               name="calForm"
               scope="session"
               validate="false">
      <forward name="referenced" path="/WEB-INF/jsp/manageLocations.jsp" />
      <forward name="success" path="/WEB-INF/jsp/manageLocations.jsp" />
    </action>

    <action    path="/subscribe"
               type="org.jahia.suite.calendar.webApp.uiclient.SubscribeAction"
               name="calForm"
               scope="session"
               validate="false">
    </action>
  </action-mappings>

  <!-- ========== Controller Configuration ================================ -->

  <controller pagePattern="$M$P" inputForward="true"
    processorClass="org.apache.portals.bridges.struts.PortletRequestProcessor"/>
    <!-- pagePattern: use this pattern when creating URIs to resources.
        $M=module, $P=p
 ath -->
    <!-- inputForward: The "input" parameter on "action" elements is the name 
of a
         local or global "forward" rather than a module-relative path -->

<!--               unknown="true" -->

</struts-config>


  \ No newline at end of file
  

Reply via email to