annotate doc/orchestration.dtd @ 70:ccd03b6f04ef

Updated DTD for orchestration profile.
author cmlenz
date Fri, 01 Jul 2005 10:28:46 +0000
parents 75ad81953032
children 94b703e2114d
rev   line source
70
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
1 <!--
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
2 DTD for the Bitten build orchestration BEEP profile.
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
3 -->
30
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
4
70
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
5 <!--
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
6 Slave registration.
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
7 -->
30
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
8 <!ELEMENT register (platform, os)>
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
9 <!ATTLIST register
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
10 name CDATA #REQUIRED
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
11 maintainer CDATA #IMPLIED>
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
12
70
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
13 <!--
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
14 Platform/machine information for slave registration.
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
15 -->
30
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
16 <!ELEMENT platform #PCDATA>
70
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
17 <!ATTLIST os
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
18 processor CDATA #IMPLIED>
30
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
19
70
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
20 <!--
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
21 Operating system information for slave registration.
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
22 -->
30
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
23 <!ELEMENT os #PCDATA>
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
24 <!ATTLIST os
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
25 family CDATA #REQUIRED
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
26 version CDATA #IMPLIED>
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
27
70
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
28 <!--
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
29 Reply message from the master when registration of a slave was successful
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
30 -->
30
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
31 <!ELEMENT ok EMPTY>
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
32
70
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
33 <!--
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
34 Generic error message. Can be received in response to registration or build
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
35 initiation.
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
36 -->
30
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
37 <!ELEMENT error #PCDATA>
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
38 <!ATTLIST error
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
39 code CDATA #REQUIRED
75ad81953032 Initial version of the DTD for the orchestration profile. Closes #5.
cmlenz
parents:
diff changeset
40 xml:lang CDATA #IMPLIED>
70
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
41
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
42 <!--
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
43 Build initiation request sent by the master to a slave.
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
44 -->
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
45 <!ELEMENT build #PCDATA>
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
46 <!ATTLIST build
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
47 recipe CDATA #REQUIRED>
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
48
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
49 <!--
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
50 Build request acknowledgement.
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
51 -->
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
52 <!ELEMENT started EMPTY>
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
53
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
54 <!--
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
55 Build status reporting: ANS payload sent by the slave for every build step
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
56 processed.
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
57 -->
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
58 <!ELEMENT step #PCDATA>
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
59 <!ATTLIST step
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
60 id ID #REQUIRED
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
61 result (success|failure) #REQUIRED
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
62 description CDATA #IMPLIED>
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
63
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
64 <!--
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
65 Cancellation of a build by the slave.
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
66 -->
ccd03b6f04ef Updated DTD for orchestration profile.
cmlenz
parents: 30
diff changeset
67 <!ELEMENT aborted #PCDATA>
Copyright (C) 2012-2017 Edgewall Software