diff options
-rw-r--r-- | schemas/defaults.xsd | 1 | ||||
-rw-r--r-- | schemas/grouppatterns.xsd | 23 |
2 files changed, 12 insertions, 12 deletions
diff --git a/schemas/defaults.xsd b/schemas/defaults.xsd index d449f023a..d19c8a564 100644 --- a/schemas/defaults.xsd +++ b/schemas/defaults.xsd @@ -58,7 +58,6 @@ <xsd:element name="Package" type="PackageType"/> <xsd:element name="Path" type="PathType"/> <xsd:element name="Action" type="ActionType"/> - <xsd:element name="PostInstall" type="PostInstallType"/> <xsd:element name="Group" type="DContainerType"/> <xsd:element name="Client" type="DContainerType"/> </xsd:choice> diff --git a/schemas/grouppatterns.xsd b/schemas/grouppatterns.xsd index 712d21f6c..f2bdceccd 100644 --- a/schemas/grouppatterns.xsd +++ b/schemas/grouppatterns.xsd @@ -7,20 +7,21 @@ </xsd:documentation> </xsd:annotation> - <xsd:complexType name='PatternType'> - <xsd:choice minOccurs='1' maxOccurs='unbounded'> + <xsd:complexType name="PatternType"> + <xsd:choice minOccurs="1" maxOccurs="unbounded"> <xsd:element name="NameRange" type="xsd:string"/> <xsd:element name="NamePattern" type="xsd:string"/> - <xsd:element name="Group" type="xsd:string" minOccurs='1' - maxOccurs='unbounded'/> + <xsd:element name="Group" type="xsd:string" minOccurs="1" + maxOccurs="unbounded"/> </xsd:choice> </xsd:complexType> - <xsd:element name='GroupPatterns'> - <xsd:complexType> - <xsd:choice minOccurs='1' maxOccurs='unbounded'> - <xsd:element name='GroupPattern' type='PatternType'/> - </xsd:choice> - </xsd:complexType> - </xsd:element> + <xsd:complexType name="GroupPatternsType"> + <xsd:choice minOccurs="1" maxOccurs="unbounded"> + <xsd:element name="GroupPattern" type="PatternType"/> + <xsd:element name="GroupPatterns" type="GroupPatternsType"/> + </xsd:choice> + </xsd:complexType> + + <xsd:element name="GroupPatterns" type="GroupPatternsType"/> </xsd:schema> |