summaryrefslogtreecommitdiffstats
path: root/lib/metadata.rng
blob: e0cd441e8cc4fe3d1922e30eeba751556f43583a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<grammar xmlns="http://relaxng.org/ns/structure/1.0">

<start><element name="resource-agent">
	<attribute name="name" />
	<attribute name="shortdesc" />

	<zeroOrMore>
		<element name="symlink">
			<attribute name="name" />
			<attribute name="shortdesc" />
		</element>
	</zeroOrMore>

	<element name="longdesc"> <text /> </element>
	<element name="vendor-url"> <text /> </element>

	<element name="parameters"> <oneOrMore>
		<element name="parameter">
			<attribute name="name" />
			<attribute name="unique"> <ref name="boolean-values" /> </attribute>
			<attribute name="required"> <ref name="boolean-values" />  </attribute>
			<optional><attribute name="deprecated"> <ref name="boolean-values" /></attribute></optional>
			<optional><attribute name="obsoletes" /> </optional>
			<element name="getopt">
				<attribute name="mixed" />
			</element>
			<element name="content">
				<choice>
					<attribute name="type">
						<choice>
							<value>boolean</value>
							<value>string</value>
							<value>second</value>
							<value>integer</value>
						</choice>
					</attribute>
					<group>
						<attribute name="type">
							<value>select</value>
						</attribute>
						<zeroOrMore>
							<element name="option">
								<attribute name="value" />
							</element>
						</zeroOrMore>
					</group>
				</choice>
				<optional>
					<attribute name="default"> <text /> </attribute>
				</optional>
			</element>

			<oneOrMore> <element name="shortdesc">
				<attribute name="lang" />
				<text />
			</element> </oneOrMore>
		</element>
	</oneOrMore> </element>

	<element name="actions"> <oneOrMore>
		<element name="action">
			<attribute name="name" />
			<optional>
				<attribute name="on_target"> <ref name="boolean-values" /> </attribute>
			</optional>
			<optional>
				<attribute name="automatic"> <ref name="boolean-values" /> </attribute>
			</optional>
		</element>
	</oneOrMore> </element>
</element></start>

<define name="boolean-values">
	<choice>
		<value>0</value>
		<value>1</value>
	</choice>
</define>

</grammar>