blob: 41a11e7f391cc3b4dcc97b6797b1c9182b6427d2 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<start>
<ref name="element-pacemakerd"/>
</start>
<define name="element-pacemakerd">
<element name="pacemakerd">
<attribute name="version"> <text /> </attribute>
<attribute name="build"> <text /> </attribute>
<attribute name="feature_set"> <text /> </attribute>
<optional>
<ref name="feature-list" />
</optional>
</element>
</define>
<define name="feature-list">
<element name="features">
<oneOrMore>
<element name="feature"> <text/> </element>
</oneOrMore>
</element>
</define>
</grammar>
|