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

« back to all changes in this revision

Viewing changes to xsd2cppsax/mathml2/content/functions.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
<xs:schema 
 
2
  xmlns:xs="http://www.w3.org/2001/XMLSchema"
 
3
  xmlns="http://www.w3.org/1998/Math/MathML"
 
4
  targetNamespace="http://www.w3.org/1998/Math/MathML"
 
5
  elementFormDefault="qualified"
 
6
 >
 
7
 
 
8
 
 
9
<xs:annotation>
 
10
  <xs:documentation>
 
11
  This is an XML Schema module for operators dealing with functions in content
 
12
  MathML.
 
13
  Author: St&#233;phane Dalmas, INRIA.
 
14
  </xs:documentation>
 
15
</xs:annotation>
 
16
 
 
17
<!-- a common type for all this -->
 
18
 
 
19
<xs:complexType name="Functions.type">
 
20
  <xs:attributeGroup ref="Definition.attrib"/>
 
21
  <xs:attributeGroup ref="Common.attrib"/>
 
22
</xs:complexType>
 
23
 
 
24
<!-- "compose" -->
 
25
 
 
26
<xs:element name="compose" type="Functions.type"/>
 
27
 
 
28
<!-- Domain, codomain and image -->
 
29
 
 
30
<xs:element name="domain" type="Functions.type"/>
 
31
<xs:element name="codomain" type="Functions.type"/>
 
32
<xs:element name="image" type="Functions.type"/>
 
33
 
 
34
<!-- "domainofapplication" -->
 
35
 
 
36
<xs:group name="domainofapplication.content">
 
37
  <xs:sequence>
 
38
     <xs:group ref="Content-expr.class"/>
 
39
  </xs:sequence>
 
40
</xs:group>
 
41
 
 
42
<xs:complexType name="domainofapplication.type">
 
43
  <xs:group ref="domainofapplication.content"/>
 
44
  <xs:attributeGroup ref="Definition.attrib"/>
 
45
  <xs:attributeGroup ref="Common.attrib"/>
 
46
</xs:complexType>
 
47
 
 
48
<xs:element name="domainofapplication" type="domainofapplication.type"/>
 
49
 
 
50
<!-- identity -->
 
51
 
 
52
<xs:element name="ident" type="Functions.type"/>
 
53
 
 
54
<!-- And the group of everything -->
 
55
 
 
56
<xs:group name="Content-functions.class">
 
57
  <xs:choice>
 
58
    <xs:element ref="compose"/>
 
59
    <xs:element ref="domain"/>
 
60
    <xs:element ref="codomain"/>
 
61
    <xs:element ref="image"/>
 
62
    <xs:element ref="domainofapplication"/>
 
63
    <xs:element ref="ident"/>
 
64
  </xs:choice>
 
65
</xs:group>
 
66
 
 
67
</xs:schema>
 
68
<!--
 
69
  Copyright &#251; 2002 World Wide Web Consortium, (Massachusetts Institute
 
70
  of Technology, Institut National de Recherche en Informatique et en
 
71
  Automatique, Keio University). All Rights Reserved. See
 
72
  http://www.w3.org/Consortium/Legal/.
 
73
  -->