summaryrefslogtreecommitdiffstats
path: root/schemas/pkglist.xsd
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2004-10-07 14:23:02 +0000
committerNarayan Desai <desai@mcs.anl.gov>2004-10-07 14:23:02 +0000
commit40f36c499b0a286569f2f8080daf7b9064d8369e (patch)
tree1c48e8e1e7aa096677d8bbdb3ed705b9ed579f7b /schemas/pkglist.xsd
parentaf1ddd5c4acaf7348f7b14f21d916558894238a7 (diff)
downloadbcfg2-40f36c499b0a286569f2f8080daf7b9064d8369e.tar.gz
bcfg2-40f36c499b0a286569f2f8080daf7b9064d8369e.tar.bz2
bcfg2-40f36c499b0a286569f2f8080daf7b9064d8369e.zip
(Logical change 1.78)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@381 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'schemas/pkglist.xsd')
-rw-r--r--schemas/pkglist.xsd34
1 files changed, 34 insertions, 0 deletions
diff --git a/schemas/pkglist.xsd b/schemas/pkglist.xsd
index e69de29bb..bde0d53fa 100644
--- a/schemas/pkglist.xsd
+++ b/schemas/pkglist.xsd
@@ -0,0 +1,34 @@
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
+
+ <xsd:annotation>
+ <xsd:documentation>
+ package list schema for bcfg2
+ Narayan Desai, Argonne National Laboratory
+ $Id: $
+ </xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:complexType name='PackageType'>
+ <xsd:attribute type='xsd:string' name='name'/>
+ <xsd:attribute type='xsd:string' name='version'/>
+ <xsd:attribute type='xsd:string' name='file'/>
+ <xsd:attribute type='xsd:string' name='verify'/>
+ </xsd:complexType>
+
+ <xsd:complexType name='LocationType'>
+ <xsd:choice minOccurs='0' maxOccurs='unbounded'>
+ <xsd:element name='Package' type='PackageType'/>
+ </xsd:choice>
+ <xsd:attribute type='xsd:string' name='uri' use='required'/>
+ </xsd:complexType>
+
+ <xsd:element name='PackageList'>
+ <xsd:complexType>
+ <xsd:choice minOccurs='0' maxOccurs='unbounded'>
+ <xsd:element name='Location' type='LocationType'/>
+ </xsd:choice>
+ <xsd:attribute name='image' type='xsd:string' use='required'/>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema> \ No newline at end of file