~wattazoum/livrezmoi/projectdeposit

« back to all changes in this revision

Viewing changes to SERVER/WEB-INF/src/common/model/project.xsd

  • Committer: Rachid
  • Date: 2009-05-17 13:39:03 UTC
  • Revision ID: rachid@chidi-laptop-20090517133903-sp32jm8kym0g4wua
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8" ?>
 
2
 
 
3
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" >
 
4
  <xs:element name="BUILD" type="xs:string" />
 
5
 
 
6
  <xs:element name="COMMENTS" type="xs:string" />
 
7
 
 
8
  <xs:element name="DATE" type="xs:date" />
 
9
 
 
10
  <xs:element name="DEPOSIT">
 
11
    <xs:complexType>
 
12
      <xs:sequence>
 
13
        <xs:element ref="PROJECT" maxOccurs="unbounded" />
 
14
      </xs:sequence>
 
15
    </xs:complexType>
 
16
  </xs:element>
 
17
 
 
18
  <xs:element name="JAR" type="xs:string" />
 
19
 
 
20
  <xs:element name="PROJECT">
 
21
    <xs:complexType>
 
22
      <xs:sequence>
 
23
        <xs:element ref="VERSION"  maxOccurs="unbounded"/>
 
24
      </xs:sequence>
 
25
      <xs:attribute name="name" type="xs:string" use="required" />
 
26
      <xs:attribute name="user" type="xs:string" use="required" />
 
27
    </xs:complexType>
 
28
  </xs:element>
 
29
 
 
30
  <xs:element name="TITRE" type="xs:string" />
 
31
 
 
32
  <xs:element name="VERSION">
 
33
    <xs:complexType>
 
34
      <xs:sequence>
 
35
        <xs:element ref="TITRE" />
 
36
        <xs:element ref="JAR" />
 
37
        <xs:element ref="BUILD" />
 
38
        <xs:element ref="COMMENTS" />
 
39
        <xs:element ref="DATE" />
 
40
      </xs:sequence>
 
41
    </xs:complexType>
 
42
  </xs:element>
 
43
 
 
44
</xs:schema>
 
 
b'\\ No newline at end of file'