[jboss-cvs] jboss-seam/src/main/org/jboss/seam ...

Gavin King gavin.king at jboss.com
Sun Jun 24 02:34:29 EDT 2007


  User: gavin   
  Date: 07/06/24 02:34:29

  Modified:    src/main/org/jboss/seam   core-1.3.xsd transaction-1.3.xsd
  Log:
  got rid of TransactionListener, merged with the Transaction package, for more consistent behavior across diff types of tx management
  
  Revision  Changes    Path
  1.17      +0 -9      jboss-seam/src/main/org/jboss/seam/core-1.3.xsd
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: core-1.3.xsd
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core-1.3.xsd,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -b -r1.16 -r1.17
  --- core-1.3.xsd	20 Jun 2007 22:11:30 -0000	1.16
  +++ core-1.3.xsd	24 Jun 2007 06:34:29 -0000	1.17
  @@ -44,15 +44,6 @@
           <xs:attribute name="parent-conversation-id-parameter"/>
       </xs:attributeGroup>
       
  -    <xs:element name="ejb-transaction-listener">
  -        <xs:complexType mixed="true">
  -            <xs:attributeGroup ref="components:attlist.component"/>
  -            <xs:attributeGroup ref="components:attlist.ejbcomponent"/>
  -            <xs:attributeGroup ref="core:attlist.transactionListener"/>
  -        </xs:complexType>
  -    </xs:element>
  -    <xs:attributeGroup name="attlist.transactionListener"> </xs:attributeGroup>
  -
       <xs:element name="resource-bundle">
           <xs:complexType mixed="true">
               <xs:choice minOccurs="0" maxOccurs="unbounded">
  
  
  
  1.2       +12 -3     jboss-seam/src/main/org/jboss/seam/transaction-1.3.xsd
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: transaction-1.3.xsd
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/transaction-1.3.xsd,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- transaction-1.3.xsd	23 Jun 2007 07:51:11 -0000	1.1
  +++ transaction-1.3.xsd	24 Jun 2007 06:34:29 -0000	1.2
  @@ -1,13 +1,22 @@
   <?xml version="1.0" encoding="UTF-8"?>
   <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
  -    targetNamespace="http://jboss.com/products/seam/transaction" xmlns:drools="http://jboss.com/products/seam/transaction"
  +    targetNamespace="http://jboss.com/products/seam/transaction" xmlns:transaction="http://jboss.com/products/seam/transaction"
       xmlns:components="http://jboss.com/products/seam/components" attributeFormDefault="unqualified">
       <xs:import namespace="http://jboss.com/products/seam/components" schemaLocation="components-1.3.xsd"/>
   
  +    <xs:element name="ejb-transaction">
  +        <xs:complexType mixed="true">
  +            <xs:attributeGroup ref="components:attlist.component"/>
  +            <xs:attributeGroup ref="components:attlist.ejbcomponent"/>
  +            <xs:attributeGroup ref="transaction:attlist.transaction"/>
  +        </xs:complexType>
  +    </xs:element>
  +    <xs:attributeGroup name="attlist.transaction"> </xs:attributeGroup>
  +
       <xs:element name="hibernate-transaction">
           <xs:complexType mixed="true">
               <xs:attributeGroup ref="components:attlist.component"/>
  -            <xs:attributeGroup ref="drools:attlist.HibernateTransaction"/>
  +            <xs:attributeGroup ref="transaction:attlist.HibernateTransaction"/>
           </xs:complexType>
       </xs:element>
       <xs:attributeGroup name="attlist.HibernateTransaction">
  @@ -17,7 +26,7 @@
       <xs:element name="entity-transaction">
           <xs:complexType mixed="true">
               <xs:attributeGroup ref="components:attlist.component"/>
  -            <xs:attributeGroup ref="drools:attlist.EntityTransaction"/>
  +            <xs:attributeGroup ref="transaction:attlist.EntityTransaction"/>
           </xs:complexType>
       </xs:element>
       <xs:attributeGroup name="attlist.EntityTransaction">
  
  
  



More information about the jboss-cvs-commits mailing list