[jboss-cvs] jboss-seam/seam-gen/resources/WEB-INF ...

Gavin King gavin.king at jboss.com
Fri Dec 1 21:15:44 EST 2006


  User: gavin   
  Date: 06/12/01 21:15:44

  Modified:    seam-gen/resources/WEB-INF    components.xml
                        faces-config.xml navigation.xml
  Log:
  JBSEAM-552
  
  Revision  Changes    Path
  1.5       +20 -30    jboss-seam/seam-gen/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/seam-gen/resources/WEB-INF/components.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- components.xml	10 Nov 2006 19:24:22 -0000	1.4
  +++ components.xml	2 Dec 2006 02:15:44 -0000	1.5
  @@ -1,41 +1,31 @@
  -<?xml version="1.0" ?>
  -<!DOCTYPE components PUBLIC
  -  "-//JBoss/Seam Component Configuration DTD 1.1//EN"
  -  "http://jboss.com/products/seam/components-1.1.dtd">
  -
  -<components>
  -
  -    <component name="org.jboss.seam.core.init">
  -        <property name="debug">true</property>
  -        <property name="jndiPattern">@jndiPattern@</property>
  -    </component>    
  -     
  -    <component name="org.jboss.seam.core.manager">
  -        <!-- half second wait for conversation lock on concurrent requests -->
  -        <property name="concurrentRequestTimeout">500</property>
  -        <!-- 120 second conversation timeout -->
  -        <property name="conversationTimeout">120000</property>
  -        <property name="conversationIdParameter">cid</property>
  -        <property name="conversationIsLongRunningParameter">clr</property>
  -    </component>
  -    
  -    <component name="org.jboss.seam.core.pages">
  -        <property name="noConversationViewId">/home.xhtml</property>
  -    </component>
  -    
  -    <component name="entityManager"
  -            class="org.jboss.seam.core.ManagedPersistenceContext">
  -        <property name="persistenceUnitJndiName">java:/@projectName at EntityManagerFactory</property>
  -    </component>
  +<?xml version="1.0" encoding="UTF-8"?>
  +<components xmlns="http://jboss.com/products/seam/components"
  +            xmlns:core="http://jboss.com/products/seam/core"
  +            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">
  +
  +    <core:init debug="true" jndi-pattern="@jndiPattern@"/>
  +     
  +    <core:manager concurrent-request-timeout="500" 
  +                  conversation-timeout="120000" 
  +                  conversation-id-parameter="cid" 
  +                  conversation-is-long-running-parameter="clr"/>
   
  -    <component class="org.jboss.seam.core.Ejb" installed="@embeddedEjb@"/>
  +    <core:pages no-conversation-view-id="/home.xhtml"/>
  +    
  +    <core:managed-persistence-context name="entityManager"
  +            persistence-unit-jndi-name="java:/@projectName at EntityManagerFactory"/>
  +
  +    <core:ejb installed="@embeddedEjb@"/>
       
       <!-- For use with jBPM pageflow or process management -->
       <!--  
  -    <component class="org.jboss.seam.core.Jbpm">
  -        <property name="processDefinitions"></property>
  -        <property name="pageflowDefinitions"></property>
  -    </component>
  +    <core:jbpm>
  +        <core:process-definitions></core:process-definitions>
  +        <core:pageflow-definitions></core:pageflow-definitions>
  +    </core:jbpm>
     -->
         
   </components>
  \ No newline at end of file
  
  
  
  1.5       +3 -4      jboss-seam/seam-gen/resources/WEB-INF/faces-config.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: faces-config.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/resources/WEB-INF/faces-config.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- faces-config.xml	4 Nov 2006 02:32:38 -0000	1.4
  +++ faces-config.xml	2 Dec 2006 02:15:44 -0000	1.5
  @@ -1,5 +1,4 @@
   <?xml version='1.0' encoding='UTF-8'?>
  -
   <!DOCTYPE faces-config PUBLIC
     "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
     "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
  @@ -8,7 +7,7 @@
   
       <application>
           <message-bundle>messages</message-bundle>
  -        <view-handler>com.sun.facelets.FaceletViewHandler</view-handler>
  +        <view-handler>org.jboss.seam.ui.facelet.SeamFaceletViewHandler</view-handler>
       </application>
   
       <!-- Seam transaction management -->
  
  
  
  1.2       +2 -3      jboss-seam/seam-gen/resources/WEB-INF/navigation.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: navigation.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/seam-gen/resources/WEB-INF/navigation.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- navigation.xml	2 Nov 2006 22:34:20 -0000	1.1
  +++ navigation.xml	2 Dec 2006 02:15:44 -0000	1.2
  @@ -1,5 +1,4 @@
   <?xml version='1.0' encoding='UTF-8'?>
  -
   <!DOCTYPE faces-config PUBLIC
     "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
     "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
  
  
  



More information about the jboss-cvs-commits mailing list