summaryrefslogtreecommitdiffstats
path: root/schemas/info.xsd
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-07-31 11:48:28 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-01 11:28:24 -0400
commit9f11ed8f546d5951e874c9b541b372065381a2fe (patch)
tree60ba899f1ae88fc6bd8bcd19bd58a5573a729a7e /schemas/info.xsd
parent108a467820942ceaf9978c98273f7f3f0a8782e4 (diff)
downloadbcfg2-9f11ed8f546d5951e874c9b541b372065381a2fe.tar.gz
bcfg2-9f11ed8f546d5951e874c9b541b372065381a2fe.tar.bz2
bcfg2-9f11ed8f546d5951e874c9b541b372065381a2fe.zip
added ACL tag support to info.xml schema
Diffstat (limited to 'schemas/info.xsd')
-rw-r--r--schemas/info.xsd6
1 files changed, 5 insertions, 1 deletions
diff --git a/schemas/info.xsd b/schemas/info.xsd
index c45c40ebc..862b758b2 100644
--- a/schemas/info.xsd
+++ b/schemas/info.xsd
@@ -1,5 +1,5 @@
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
-
+
<xsd:annotation>
<xsd:documentation>
info.xml schema for bcfg2
@@ -7,8 +7,12 @@
</xsd:annotation>
<xsd:include schemaLocation="atom.xsd"/>
+ <xsd:include schemaLocation="types.xsd"/>
<xsd:complexType name='InfoType'>
+ <xsd:choice minOccurs='0' maxOccurs='unbounded'>
+ <xsd:element name='ACL' type='ACLType'/>
+ </xsd:choice>
<xsd:attribute name='encoding' type='xsd:string'/>
<xsd:attribute name='group' type='xsd:string'/>
<xsd:attribute name='important' type='xsd:string'/>