blob: 6c040eaeffbf25c63390d9b1a1d558464370b25b (
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
|
<?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-crm_attribute"/>
</start>
<define name="element-crm_attribute">
<choice>
<zeroOrMore>
<ref name="element-attribute" />
</zeroOrMore>
</choice>
</define>
<define name="element-attribute">
<element name="attribute">
<optional>
<attribute name="scope"> <text /> </attribute>
</optional>
<optional>
<attribute name="id"> <text /> </attribute>
</optional>
<attribute name="name"> <text /> </attribute>
<attribute name="value"> <text /> </attribute>
<optional>
<attribute name="host"> <text /> </attribute>
</optional>
</element>
</define>
</grammar>
|