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

Gavin King gavin.king at jboss.com
Mon Nov 20 20:12:55 EST 2006


  User: gavin   
  Date: 06/11/20 20:12:55

  Modified:    examples/dvdstore/resources/WEB-INF  components.xml
  Log:
  new xml style
  
  Revision  Changes    Path
  1.4       +19 -18    jboss-seam/examples/dvdstore/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/dvdstore/resources/WEB-INF/components.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- components.xml	10 Nov 2006 19:07:55 -0000	1.3
  +++ components.xml	21 Nov 2006 01:12:55 -0000	1.4
  @@ -1,25 +1,26 @@
  -<!DOCTYPE components PUBLIC
  -  "-//JBoss/Seam Component Configuration DTD 1.1//EN"
  -  "http://jboss.com/products/seam/components-1.1.dtd">
  +<?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">
   
  -<components>
  -
  -    <component name="org.jboss.seam.core.init">
  -        <property name="debug">true</property>
  -        <property name="jndiPattern">@jndiPattern@</property>
  -    </component>
  +    <core:init debug="true" jndi-pattern="@jndiPattern@"/>
       
       <!-- 120 second conversation timeout -->
  -    <component name="org.jboss.seam.core.manager">
  -        <property name="conversationTimeout">120000</property>
  -    </component>
  +    <core:manager conversation-timeout="120000"/>
       
  -    <component class="org.jboss.seam.core.Jbpm">
  -        <property name="processDefinitions">ordermanagement1.jpdl.xml</property>
  -        <property name="pageflowDefinitions">checkout.jpdl.xml, newuser.jpdl.xml</property>
  -    </component>
  +    <core:jbpm>
  +        <core:process-definitions>
  +            <value>ordermanagement1.jpdl.xml</value>
  +        </core:process-definitions>
  +        <core:pageflow-definitions>
  +            <value>checkout.jpdl.xml</value>
  +            <value>newuser.jpdl.xml</value>
  +        </core:pageflow-definitions>
  +    </core:jbpm>
   
  -    <component class="org.jboss.seam.core.Ejb" 
  -           installed="@embeddedEjb@"/>
  +    <core:ejb installed="@embeddedEjb@"/>
       
   </components>
  \ No newline at end of file
  
  
  



More information about the jboss-cvs-commits mailing list