You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2007/10/04 14:39:09 UTC

svn commit: r581879 - /myfaces/orchestra/trunk/examples/src/main/webapp/WEB-INF/web.xml

Author: skitching
Date: Thu Oct  4 05:39:08 2007
New Revision: 581879

URL: http://svn.apache.org/viewvc?rev=581879&view=rev
Log:
Update example to match changes in core. Also fix what are apparently a few bugs in the web.xml.

Modified:
    myfaces/orchestra/trunk/examples/src/main/webapp/WEB-INF/web.xml

Modified: myfaces/orchestra/trunk/examples/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/examples/src/main/webapp/WEB-INF/web.xml?rev=581879&r1=581878&r2=581879&view=diff
==============================================================================
--- myfaces/orchestra/trunk/examples/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/orchestra/trunk/examples/src/main/webapp/WEB-INF/web.xml Thu Oct  4 05:39:08 2007
@@ -94,11 +94,6 @@
 	</filter>
 
 	<filter>
-		<filter-name>frameworkAdapterFilter</filter-name>
-		<filter-class>org.apache.myfaces.orchestra.frameworkAdapter.FrameworkAdapterServletFilter</filter-class>
-	</filter>
-
-	<filter>
 		<filter-name>orchestraFilter</filter-name>
 		<filter-class>org.apache.myfaces.orchestra.conversation.jsf.filter.OrchestraServletFilter</filter-class>
 	</filter>
@@ -109,13 +104,8 @@
 	</filter-mapping>
 
 	<filter-mapping>
-		<filter-name>frameworkAdapterFilter</filter-name>
-		<url-pattern>*.jsp</url-pattern>
-	</filter-mapping>
-
-	<filter-mapping>
 		<filter-name>requestParameterFilter</filter-name>
-		<url-pattern>*.jsp</url-pattern>
+		<url-pattern>*.faces</url-pattern>
 	</filter-mapping>
 
 	<filter-mapping>