Statistics
| Branch: | Revision:

root / webodf / relaxngtests / test14.rng @ 3e11cf16

History | View | Annotate | Download (1.2 kB)

1
<?xml version="1.0" encoding="UTF-8"?>
2
<grammar
3
	xmlns="http://relaxng.org/ns/structure/1.0"
4
	datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"
5
	xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
6
	xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
7
	xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
8
>
9
	<start>
10
		<element name="office:document">
11
			<attribute name="office:version">
12
				<value>1.2</value>
13
			</attribute>
14
			<attribute name="office:mimetype">
15
				<data type="string"/>
16
			</attribute>
17
			<ref name="office-automatic-styles"/>
18
			<element name="office:body">
19
				<element name="office:text">
20
					<empty/>
21
				</element>
22
			</element>
23
		</element>
24
	</start>
25
	<define name="office-automatic-styles">
26
		<element name="office:automatic-styles">
27
			<interleave>
28
				<element name="style:style">
29
					<attribute name="style:name">
30
						<data type="NCName"/>
31
					</attribute>
32
					<attribute name="style:family">
33
						<value>table</value>
34
					</attribute>
35
				</element>
36
				<choice>
37
					<empty/>
38
					<element name="text:list-style">
39
						<empty/>
40
					</element>
41
				</choice>
42
			</interleave>
43
		</element>
44
	</define>
45
</grammar>