Author: nbelaevski
Date: 2010-02-15 11:01:09 -0500 (Mon, 15 Feb 2010)
New Revision: 16454
Modified:
root/cdk/trunk/plugins/generator/src/main/resources/META-INF/schema/cdk-jstl-core.xsd
Log:
Schema refactored to exclude global attributes
Modified:
root/cdk/trunk/plugins/generator/src/main/resources/META-INF/schema/cdk-jstl-core.xsd
===================================================================
---
root/cdk/trunk/plugins/generator/src/main/resources/META-INF/schema/cdk-jstl-core.xsd 2010-02-15
10:44:15 UTC (rev 16453)
+++
root/cdk/trunk/plugins/generator/src/main/resources/META-INF/schema/cdk-jstl-core.xsd 2010-02-15
16:01:09 UTC (rev 16454)
@@ -37,17 +37,6 @@
<xs:import schemaLocation="cdk-template.xsd"
namespace="http://richfaces.org/cdk/core" />
- <xs:attributeGroup name="testGroup">
- <xs:attribute name="test" form="unqualified"
use="required"
- type="cdk:elStrictExpression">
- <xs:annotation>
- <xs:documentation>
- <p>The test condition that determines whether or not the body content should
be processed.</p>
- </xs:documentation>
- </xs:annotation>
- </xs:attribute>
- </xs:attributeGroup>
-
<xs:complexType name="arbitraryContent" mixed="true">
<xs:choice>
<xs:any minOccurs="0" maxOccurs="unbounded" />
@@ -57,7 +46,14 @@
<xs:complexType name="arbitraryConditionalContent">
<xs:complexContent>
<xs:extension base="arbitraryContent">
- <xs:attributeGroup ref="testGroup" />
+ <xs:attribute name="test" form="unqualified"
use="required"
+ type="cdk:elStrictExpression">
+ <xs:annotation>
+ <xs:documentation>
+ <p>The test condition that determines whether or not the body content should
be processed.</p>
+ </xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>