[jboss-cvs] jboss-seam/src/main/org/jboss/seam ...
Dan Allen
dan.j.allen at gmail.com
Tue Jan 8 13:16:16 EST 2008
User: dallen
Date: 08/01/08 13:16:16
Modified: src/main/org/jboss/seam components-2.0.xsd
Log:
JBSEAM-2461 - added startup attribute to component
changed auto-create and installed to use xs:boolean
changed precendence to use xs:int
Revision Changes Path
1.6 +5 -19 jboss-seam/src/main/org/jboss/seam/components-2.0.xsd
(In the diff below, changes in quantity of whitespace are not shown.)
Index: components-2.0.xsd
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/components-2.0.xsd,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- components-2.0.xsd 13 Dec 2007 17:59:58 -0000 1.5
+++ components-2.0.xsd 8 Jan 2008 18:16:16 -0000 1.6
@@ -52,17 +52,10 @@
</xs:restriction>
</xs:simpleType>
</xs:attribute>
-
- <xs:attribute name="precedence"/>
- <xs:attribute name="installed" default="true"/>
- <xs:attribute name="auto-create" default="false">
- <xs:simpleType>
- <xs:restriction base="xs:token">
- <xs:enumeration value="true"/>
- <xs:enumeration value="false"/>
- </xs:restriction>
- </xs:simpleType>
- </xs:attribute>
+ <xs:attribute name="precedence" type="xs:int"/>
+ <xs:attribute name="installed" default="true" type="xs:boolean"/>
+ <xs:attribute name="auto-create" default="false" type="xs:boolean"/>
+ <xs:attribute name="startup" default="false" type="xs:boolean"/>
</xs:attributeGroup>
<xs:element name="factory">
<xs:complexType>
@@ -93,14 +86,7 @@
</xs:restriction>
</xs:simpleType>
</xs:attribute>
- <xs:attribute name="auto-create">
- <xs:simpleType>
- <xs:restriction base="xs:token">
- <xs:enumeration value="true"/>
- <xs:enumeration value="false"/>
- </xs:restriction>
- </xs:simpleType>
- </xs:attribute>
+ <xs:attribute name="auto-create" type="xs:boolean"/>
</xs:attributeGroup>
<xs:element name="property">
<xs:complexType mixed="true">
More information about the jboss-cvs-commits
mailing list