[jboss-cvs] jboss-seam/examples/dvdstore/resources/WEB-INF ...

Gavin King gavin.king at jboss.com
Wed Feb 21 23:29:08 EST 2007


  User: gavin   
  Date: 07/02/21 23:29:08

  Modified:    examples/dvdstore/resources/WEB-INF  web.xml
  Log:
  use SeamFilter
  
  Revision  Changes    Path
  1.19      +5 -20     jboss-seam/examples/dvdstore/resources/WEB-INF/web.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: web.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/dvdstore/resources/WEB-INF/web.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -b -r1.18 -r1.19
  --- web.xml	17 Dec 2006 07:20:05 -0000	1.18
  +++ web.xml	22 Feb 2007 04:29:08 -0000	1.19
  @@ -5,10 +5,6 @@
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
   
  -    <session-config>
  -        <session-timeout>3</session-timeout>
  -    </session-config>
  -   
       <context-param>
           <param-name>javax.faces.CONFIG_FILES</param-name>
           <param-value>/WEB-INF/navigation.xml</param-value>
  @@ -37,27 +33,16 @@
           <param-value>.xhtml</param-value>
       </context-param>
   
  -
  -    <filter>
  -        <filter-name>Seam Exception Filter</filter-name>
  -        <filter-class>org.jboss.seam.servlet.SeamExceptionFilter</filter-class>
  -    </filter>
  -
       <filter>
  -        <filter-name>Seam Redirect Filter</filter-name>
  -        <filter-class>org.jboss.seam.servlet.SeamRedirectFilter</filter-class>
  +      <filter-name>Seam Filter</filter-name>
  +      <filter-class>org.jboss.seam.web.SeamFilter</filter-class>
       </filter>
   
       <filter-mapping>
  -        <filter-name>Seam Exception Filter</filter-name>
  +      <filter-name>Seam Filter</filter-name>
           <url-pattern>/*</url-pattern>
       </filter-mapping>
       
  -    <filter-mapping>
  -        <filter-name>Seam Redirect Filter</filter-name>
  -        <url-pattern>*.seam</url-pattern>
  -    </filter-mapping>
  -
       <servlet>
           <servlet-name>Faces Servlet</servlet-name>
           <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
  
  
  



More information about the jboss-cvs-commits mailing list