1cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?>
2*e76eebc6SAndrew Rist<!--***********************************************************
3*e76eebc6SAndrew Rist *
4*e76eebc6SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
5*e76eebc6SAndrew Rist * or more contributor license agreements.  See the NOTICE file
6*e76eebc6SAndrew Rist * distributed with this work for additional information
7*e76eebc6SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
8*e76eebc6SAndrew Rist * to you under the Apache License, Version 2.0 (the
9*e76eebc6SAndrew Rist * "License"); you may not use this file except in compliance
10*e76eebc6SAndrew Rist * with the License.  You may obtain a copy of the License at
11*e76eebc6SAndrew Rist *
12*e76eebc6SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
13*e76eebc6SAndrew Rist *
14*e76eebc6SAndrew Rist * Unless required by applicable law or agreed to in writing,
15*e76eebc6SAndrew Rist * software distributed under the License is distributed on an
16*e76eebc6SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17*e76eebc6SAndrew Rist * KIND, either express or implied.  See the License for the
18*e76eebc6SAndrew Rist * specific language governing permissions and limitations
19*e76eebc6SAndrew Rist * under the License.
20*e76eebc6SAndrew Rist *
21*e76eebc6SAndrew Rist ***********************************************************-->
22cdf0e10cSrcweir
23cdf0e10cSrcweir<grammar
24cdf0e10cSrcweir	xmlns="http://relaxng.org/ns/structure/1.0"
25cdf0e10cSrcweir    xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
26cdf0e10cSrcweir
27cdf0e10cSrcweir    xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
28cdf0e10cSrcweir    xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
29cdf0e10cSrcweir    xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
30cdf0e10cSrcweir>
31cdf0e10cSrcweir<include href="office-strict-schema-1.0-cd-2.rng">
32cdf0e10cSrcweir
33cdf0e10cSrcweir<!-- ==================== -->
34cdf0e10cSrcweir<!-- replaced definitions -->
35cdf0e10cSrcweir<!-- ==================== -->
36cdf0e10cSrcweir
37cdf0e10cSrcweir<!-- list styles contained in graphic styles currently have no name (i36217) -->
38cdf0e10cSrcweir<define name="text-list-style-attr" combine="interleave">
39cdf0e10cSrcweir    <optional>
40cdf0e10cSrcweir		<attribute name="style:name">
41cdf0e10cSrcweir			<ref name="styleName"/>
42cdf0e10cSrcweir		</attribute>
43cdf0e10cSrcweir	</optional>
44cdf0e10cSrcweir</define>
45cdf0e10cSrcweir<define name="text-list-style-attr" combine="interleave">
46cdf0e10cSrcweir    <optional>
47cdf0e10cSrcweir        <attribute name="style:display-name">
48cdf0e10cSrcweir            <ref name="string"/>
49cdf0e10cSrcweir        </attribute>
50cdf0e10cSrcweir    </optional>
51cdf0e10cSrcweir</define>
52cdf0e10cSrcweir<define name="text-list-style-attr" combine="interleave">
53cdf0e10cSrcweir    <optional>
54cdf0e10cSrcweir        <attribute name="text:consecutive-numbering" a:defaultValue="false">
55cdf0e10cSrcweir            <ref name="boolean"/>
56cdf0e10cSrcweir        </attribute>
57cdf0e10cSrcweir    </optional>
58cdf0e10cSrcweir</define>
59cdf0e10cSrcweir
60cdf0e10cSrcweir</include>
61cdf0e10cSrcweir
62cdf0e10cSrcweir<!-- ====================== -->
63cdf0e10cSrcweir<!-- additional definitions -->
64cdf0e10cSrcweir<!-- ====================== -->
65cdf0e10cSrcweir
66cdf0e10cSrcweir<!-- The following definition is obsolete, but required for legacy -->
67cdf0e10cSrcweir<!-- files that have their origin in binary files (i35420).        -->
68cdf0e10cSrcweir<define name="chart-plot-area-attlist" combine="interleave">
69cdf0e10cSrcweir	<optional>
70cdf0e10cSrcweir		<attribute name="chart:table-number-list">
71cdf0e10cSrcweir			<ref name="string"/>
72cdf0e10cSrcweir		</attribute>
73cdf0e10cSrcweir	</optional>
74cdf0e10cSrcweir</define>
75cdf0e10cSrcweir
76cdf0e10cSrcweir<!-- List styles contained in graphic styles currently are -->
77cdf0e10cSrcweir<!-- enabled by the following attribute (i36217).          -->
78cdf0e10cSrcweir<define name="style-paragraph-properties-attlist" combine="interleave">
79cdf0e10cSrcweir	<optional>
80cdf0e10cSrcweir		<attribute name="text:enable-numbering">
81cdf0e10cSrcweir			<ref name="boolean"/>
82cdf0e10cSrcweir		</attribute>
83cdf0e10cSrcweir	</optional>
84cdf0e10cSrcweir</define>
85cdf0e10cSrcweir
86cdf0e10cSrcweir</grammar>
87