You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2007/02/26 21:45:35 UTC

svn commit: r511997 - in /myfaces/fusion/trunk/examples/src/main/webapp/WEB-INF: faces-config.xml web.xml

Author: imario
Date: Mon Feb 26 12:45:33 2007
New Revision: 511997

URL: http://svn.apache.org/viewvc?view=rev&rev=511997
Log:
missing files

Modified:
    myfaces/fusion/trunk/examples/src/main/webapp/WEB-INF/faces-config.xml
    myfaces/fusion/trunk/examples/src/main/webapp/WEB-INF/web.xml

Modified: myfaces/fusion/trunk/examples/src/main/webapp/WEB-INF/faces-config.xml
URL: http://svn.apache.org/viewvc/myfaces/fusion/trunk/examples/src/main/webapp/WEB-INF/faces-config.xml?view=diff&rev=511997&r1=511996&r2=511997
==============================================================================
--- myfaces/fusion/trunk/examples/src/main/webapp/WEB-INF/faces-config.xml (original)
+++ myfaces/fusion/trunk/examples/src/main/webapp/WEB-INF/faces-config.xml Mon Feb 26 12:45:33 2007
@@ -23,15 +23,12 @@
 	<application>
 		<variable-resolver>org.springframework.web.jsf.DelegatingVariableResolver</variable-resolver>
 	</application>
-	<lifecycle>
-		<phase-listener>org.apache.myfaces.fusion.listenersner</phase-listener>
-	</lifecycle>
 
 	<navigation-rule>
 		<description>global navigation rules</description>
 		<navigation-case>
 			<from-outcome>configurator</from-outcome>
-			<to-view-id>/configurator/Configurator.jsp</to-view-id>
+			<to-view-id>/configurator/ComponentSelection.jsp</to-view-id>
 			<redirect/>
 		</navigation-case>
 	</navigation-rule>
@@ -39,7 +36,7 @@
 	<navigation-rule>
 		<description>orderHead complete / checkout</description>
 		<navigation-case>
-			<from-action>#{configuratorState.checkoutAction}</from-action>
+			<from-action>#{configuratorData.checkoutAction}</from-action>
 			<from-outcome>success</from-outcome>
 			<to-view-id>/configurator/Checkout.jsp</to-view-id>
 			<redirect/>
@@ -49,9 +46,9 @@
 	<navigation-rule>
 		<description>checkout complete / next orderHead</description>
 		<navigation-case>
-			<from-action>#{configuratorState.buyAction}</from-action>
+			<from-action>#{configuratorData.buyAction}</from-action>
 			<from-outcome>success</from-outcome>
-			<to-view-id>/configurator/Configurator.jsp</to-view-id>
+			<to-view-id>/configurator/ComponentSelection.jsp</to-view-id>
 			<redirect/>
 		</navigation-case>
 	</navigation-rule>
@@ -59,9 +56,9 @@
 	<navigation-rule>
 		<description>cancel buy</description>
 		<navigation-case>
-			<from-action>#{configuratorState.cancelAction}</from-action>
+			<from-action>#{configuratorData.cancelAction}</from-action>
 			<from-outcome>success</from-outcome>
-			<to-view-id>/configurator/Configurator.jsp</to-view-id>
+			<to-view-id>/configurator/ComponentSelection.jsp</to-view-id>
 			<redirect/>
 		</navigation-case>
 	</navigation-rule>

Modified: myfaces/fusion/trunk/examples/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/fusion/trunk/examples/src/main/webapp/WEB-INF/web.xml?view=diff&rev=511997&r1=511996&r2=511997
==============================================================================
--- myfaces/fusion/trunk/examples/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/fusion/trunk/examples/src/main/webapp/WEB-INF/web.xml Mon Feb 26 12:45:33 2007
@@ -90,6 +90,7 @@
 		<url-pattern>/*</url-pattern>
 	</filter-mapping>
 
+
 	<filter-mapping>
 		<filter-name>FacesExtensionsFilter</filter-name>
 		<url-pattern>/faces/*</url-pattern>