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

Shane Bryzak Shane_Bryzak at symantec.com
Sat Feb 10 02:32:54 EST 2007


  User: sbryzak2
  Date: 07/02/10 02:32:54

  Modified:    examples/seamspace/resources/WEB-INF   components.xml
                        web.xml
  Log:
  SeamFilter changes
  
  Revision  Changes    Path
  1.23      +4 -4      jboss-seam/examples/seamspace/resources/WEB-INF/components.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: components.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seamspace/resources/WEB-INF/components.xml,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -b -r1.22 -r1.23
  --- components.xml	8 Feb 2007 23:43:39 -0000	1.22
  +++ components.xml	10 Feb 2007 07:32:54 -0000	1.23
  @@ -3,13 +3,13 @@
               xmlns:core="http://jboss.com/products/seam/core"
               xmlns:security="http://jboss.com/products/seam/security"
               xmlns:drools="http://jboss.com/products/seam/drools"
  -            xmlns:servlet="http://jboss.com/products/seam/servlet"
  +            xmlns:web="http://jboss.com/products/seam/web"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation=
                   "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-1.1.xsd 
                    http://jboss.com/products/seam/components http://jboss.com/products/seam/components-1.1.xsd
                    http://jboss.com/products/seam/security http://jboss.com/products/seam/security-1.1.xsd
  -                 http://jboss.com/products/seam/servlet http://jboss.com/products/seam/servlet-1.1.xsd
  +                 http://jboss.com/products/seam/web http://jboss.com/products/seam/web-1.1.xsd
                    http://jboss.com/products/seam/drools http://jboss.com/products/seam/drools-1.1.xsd">
   
       <core:init jndi-pattern="@jndiPattern@" debug="false"/>
  @@ -21,8 +21,8 @@
       
       <security:identity authenticate-method="#{authenticator.authenticate}"/>
       
  -    <servlet:multipart-filter create-temp-files="true" max-request-size="1000000" url-pattern="*.seam"/>
  -    <servlet:seam-servlet-filter url-pattern="/content/*"/>
  +    <web:multipart-filter create-temp-files="true" max-request-size="1000000" url-pattern="*.seam"/>
  +    <web:servlet-filter url-pattern="/content/*"/>
   
       <drools:rule-base name="securityRules">
          <drools:rule-files><value>/META-INF/security-rules.drl</value></drools:rule-files>
  
  
  
  1.13      +1 -1      jboss-seam/examples/seamspace/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/seamspace/resources/WEB-INF/web.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -b -r1.12 -r1.13
  --- web.xml	8 Feb 2007 23:43:39 -0000	1.12
  +++ web.xml	10 Feb 2007 07:32:54 -0000	1.13
  @@ -13,7 +13,7 @@
       
       <filter>
         <filter-name>Seam Filter</filter-name>
  -      <filter-class>org.jboss.seam.servlet.SeamFilter</filter-class>
  +      <filter-class>org.jboss.seam.web.SeamFilter</filter-class>
       </filter>
       
       <filter-mapping>
  
  
  



More information about the jboss-cvs-commits mailing list