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

« back to all changes in this revision

Viewing changes to xsd2cppsax/mathml2/content/vector-calculus.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 vector calculs operators of content
 
13
  MathML. 
 
14
  Author: St&#233;phane Dalmas, INRIA.
 
15
  </xs:documentation>
 
16
</xs:annotation>
 
17
 
 
18
<!-- "divergence" -->
 
19
 
 
20
<xs:attributeGroup name="divergence.attlist">
 
21
  <xs:attributeGroup ref="Definition.attrib"/>
 
22
  <xs:attributeGroup ref="Common.attrib"/>
 
23
</xs:attributeGroup>
 
24
 
 
25
<xs:complexType name="divergence.type">
 
26
  <xs:attributeGroup ref="divergence.attlist"/>
 
27
</xs:complexType>
 
28
 
 
29
<xs:element name="divergence" type="divergence.type"/>
 
30
 
 
31
<!-- "grad" -->
 
32
 
 
33
<xs:attributeGroup name="grad.attlist">
 
34
  <xs:attributeGroup ref="Definition.attrib"/>
 
35
  <xs:attributeGroup ref="Common.attrib"/>
 
36
</xs:attributeGroup>
 
37
 
 
38
<xs:complexType name="grad.type">
 
39
  <xs:attributeGroup ref="grad.attlist"/>
 
40
</xs:complexType>
 
41
 
 
42
<xs:element name="grad" type="grad.type"/>
 
43
 
 
44
<!-- "curl" -->
 
45
 
 
46
<xs:attributeGroup name="curl.attlist">
 
47
  <xs:attributeGroup ref="Definition.attrib"/>
 
48
  <xs:attributeGroup ref="Common.attrib"/>
 
49
</xs:attributeGroup>
 
50
 
 
51
<xs:complexType name="curl.type">
 
52
  <xs:attributeGroup ref="curl.attlist"/>
 
53
</xs:complexType>
 
54
 
 
55
<xs:element name="curl" type="curl.type"/>
 
56
 
 
57
<!-- "laplacian" -->
 
58
 
 
59
<xs:attributeGroup name="laplacian.attlist">
 
60
  <xs:attributeGroup ref="Definition.attrib"/>
 
61
  <xs:attributeGroup ref="Common.attrib"/>
 
62
</xs:attributeGroup>
 
63
 
 
64
<xs:complexType name="laplacian.type">
 
65
  <xs:attributeGroup ref="laplacian.attlist"/>
 
66
</xs:complexType>
 
67
 
 
68
<xs:element name="laplacian" type="laplacian.type"/>
 
69
 
 
70
<!-- And the group of everything -->
 
71
 
 
72
<xs:group name="Content-vector-calculus.class">
 
73
  <xs:choice>
 
74
    <xs:element ref="divergence"/>
 
75
    <xs:element ref="grad"/>
 
76
    <xs:element ref="curl"/>
 
77
    <xs:element ref="laplacian"/>
 
78
  </xs:choice>
 
79
</xs:group>
 
80
 
 
81
 
 
82
</xs:schema>
 
83
<!--
 
84
  Copyright &#251; 2002 World Wide Web Consortium, (Massachusetts Institute
 
85
  of Technology, Institut National de Recherche en Informatique et en
 
86
  Automatique, Keio University). All Rights Reserved. See
 
87
  http://www.w3.org/Consortium/Legal/.
 
88
  -->