~ubuntu-branches/ubuntu/wily/opencollada/wily-proposed

« back to all changes in this revision

Viewing changes to xsd2cppsax/mathml2/content/semantics.xsd

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2015-05-14 17:23:27 UTC
  • Revision ID: package-import@ubuntu.com-20150514172327-f862u8envms01fra
Tags: upstream-0.1.0~20140703.ddf8f47+dfsg1
ImportĀ upstreamĀ versionĀ 0.1.0~20140703.ddf8f47+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
 
 
3
<xs:schema 
 
4
  xmlns:xs="http://www.w3.org/2001/XMLSchema"
 
5
  xmlns="http://www.w3.org/1998/Math/MathML"
 
6
  targetNamespace="http://www.w3.org/1998/Math/MathML"
 
7
  elementFormDefault="qualified"
 
8
 >
 
9
 
 
10
<xs:annotation>
 
11
  <xs:documentation>
 
12
  This is an XML Schema module for the "sematics" element of content MathML.
 
13
  Author: St&#233;phane Dalmas, INRIA.
 
14
  </xs:documentation>
 
15
</xs:annotation>
 
16
 
 
17
<!-- "annotation" -->
 
18
 
 
19
<xs:attributeGroup name="annotation.attlist">
 
20
   <xs:attribute name="encoding" type="xs:string"/>
 
21
   <xs:attributeGroup ref="Common.attrib"/>
 
22
</xs:attributeGroup>
 
23
 
 
24
<xs:complexType name="annotation.type" mixed="true">
 
25
  <xs:attributeGroup ref="annotation.attlist"/>
 
26
</xs:complexType>
 
27
 
 
28
<xs:element name="annotation" type="annotation.type"/>
 
29
 
 
30
<!-- "annotation-xml" -->
 
31
 
 
32
<xs:attributeGroup name="annotation-xml.attlist">
 
33
   <xs:attribute name="encoding" type="xs:string"/>
 
34
   <xs:attributeGroup ref="Common.attrib"/>
 
35
</xs:attributeGroup>
 
36
 
 
37
<xs:group name="annotation-xml.content">
 
38
   <xs:sequence>
 
39
     <xs:any processContents="lax"/>    
 
40
   </xs:sequence>
 
41
</xs:group>
 
42
 
 
43
<xs:complexType name="annotation-xml.type">
 
44
   <xs:group ref="annotation-xml.content"/>
 
45
   <xs:attributeGroup ref="annotation-xml.attlist"/>
 
46
</xs:complexType>
 
47
 
 
48
<xs:element name="annotation-xml" type="annotation-xml.type"/>
 
49
 
 
50
<!-- "semantics" -->
 
51
 
 
52
<xs:attributeGroup name="semantics.attlist">
 
53
   <xs:attribute name="encoding" type="xs:string"/>
 
54
   <xs:attribute name="definitionURL" type="xs:anyURI"/>
 
55
   <xs:attributeGroup ref="Common.attrib"/>
 
56
</xs:attributeGroup>
 
57
 
 
58
<xs:group name="Annotation.class">
 
59
  <xs:choice>
 
60
    <xs:element ref="annotation"/>
 
61
    <xs:element ref="annotation-xml"/>
 
62
  </xs:choice>
 
63
</xs:group>
 
64
 
 
65
<xs:group name="semantics.content">
 
66
  <xs:sequence>
 
67
    <xs:group ref="Content-expr.class"/>
 
68
    <xs:group ref="Annotation.class" minOccurs="1" maxOccurs="unbounded"/>
 
69
  </xs:sequence>
 
70
</xs:group>
 
71
 
 
72
<xs:complexType name="semantics.type">
 
73
  <xs:group ref="semantics.content"  minOccurs="1" maxOccurs="unbounded"/>
 
74
  <xs:attributeGroup ref="semantics.attlist"/>
 
75
</xs:complexType>
 
76
 
 
77
<xs:element name="semantics" type="semantics.type"/>
 
78
 
 
79
</xs:schema>
 
80
<!--
 
81
  Copyright &#251; 2002 World Wide Web Consortium, (Massachusetts Institute
 
82
  of Technology, Institut National de Recherche en Informatique et en
 
83
  Automatique, Keio University). All Rights Reserved. See
 
84
  http://www.w3.org/Consortium/Legal/.
 
85
  -->