summaryrefslogtreecommitdiffstats
path: root/schemas/packages.xsd
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-02-04 13:51:38 -0500
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-02-04 13:51:38 -0500
commitdfe9dac83a9f6553b9d075fa14fcd28235aabda9 (patch)
tree68a80302d291e78fdea3b317a0c2742fa4fc65e2 /schemas/packages.xsd
parentcfa769abf8e464acee43e1cac359b0f7e5fc5e4b (diff)
downloadbcfg2-dfe9dac83a9f6553b9d075fa14fcd28235aabda9.tar.gz
bcfg2-dfe9dac83a9f6553b9d075fa14fcd28235aabda9.tar.bz2
bcfg2-dfe9dac83a9f6553b9d075fa14fcd28235aabda9.zip
updated StructFile schemas to allow genshi attrs/elements
Diffstat (limited to 'schemas/packages.xsd')
-rw-r--r--schemas/packages.xsd10
1 files changed, 10 insertions, 0 deletions
diff --git a/schemas/packages.xsd b/schemas/packages.xsd
index dbee2f31b..948402ca5 100644
--- a/schemas/packages.xsd
+++ b/schemas/packages.xsd
@@ -8,6 +8,8 @@
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="xml.xsd"/>
+ <xsd:import namespace="http://genshi.edgewall.org/"
+ schemaLocation="genshi.xsd"/>
<xsd:simpleType name="SourceTypeEnum">
<xsd:restriction base="xsd:string">
@@ -40,6 +42,7 @@
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
+ <xsd:attributeGroup ref="py:genshiAttrs"/>
<xsd:anyAttribute processContents="lax">
<xsd:annotation>
<xsd:documentation>
@@ -58,6 +61,7 @@
</xsd:documentation>
</xsd:annotation>
<xsd:choice minOccurs="0" maxOccurs="unbounded">
+ <xsd:group ref="py:genshiElements"/>
<xsd:element name="Component" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
@@ -107,6 +111,7 @@
</xsd:annotation>
</xsd:element>
<xsd:choice>
+ <xsd:group ref="py:genshiElements"/>
<xsd:element name="Blacklist" type="xsd:string">
<xsd:annotation>
<xsd:documentation>
@@ -202,10 +207,12 @@
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
+ <xsd:attributeGroup ref="py:genshiAttrs"/>
</xsd:complexType>
<xsd:complexType name="PackagesGroupType">
<xsd:choice minOccurs="1" maxOccurs="unbounded">
+ <xsd:group ref="py:genshiElements"/>
<xsd:element name="Group" type="PackagesGroupType"/>
<xsd:element name="Client" type="PackagesGroupType"/>
<xsd:element name="Sources" type="SourcesType"/>
@@ -213,16 +220,19 @@
</xsd:choice>
<xsd:attribute type="xsd:string" name="name" use="required"/>
<xsd:attribute type="xsd:boolean" name="negate"/>
+ <xsd:attributeGroup ref="py:genshiAttrs"/>
</xsd:complexType>
<xsd:complexType name="SourcesType">
<xsd:choice minOccurs="1" maxOccurs="unbounded">
+ <xsd:group ref="py:genshiElements"/>
<xsd:element name="Group" type="PackagesGroupType"/>
<xsd:element name="Client" type="PackagesGroupType"/>
<xsd:element name="Source" type="SourceType"/>
<xsd:element name="Sources" type="SourcesType"/>
</xsd:choice>
<xsd:attribute ref="xml:base"/>
+ <xsd:attributeGroup ref="py:genshiAttrs"/>
</xsd:complexType>
<xsd:element name="Sources" type="SourcesType"/>