blob: 28a3b6aa559f970c22bb0cc121678da5af566bb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
|
<?xml version="1.0" encoding="utf-8" ?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:maml="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:doc="http://ddue.schemas.microsoft.com/authoring/internal" targetNamespace="http://ddue.schemas.microsoft.com/authoring/2003/5" elementFormDefault="qualified" attributeFormDefault="unqualified">
<!-- Schema documentation -->
<annotation>
<documentation>
This schema defines common inline elements.
</documentation>
</annotation>
<!-- include and import declarations -->
<include schemaLocation="base.xsd" />
<!-- element declarations -->
<!-- linking elements -->
<element name="link" type="maml:inlineLinkType">
<annotation>
<documentation>
The link element can contain text but this text
is discarded at build time in favor of the actual title of
the link target, so the text in this element is not localizable.
</documentation>
<appinfo>
<doc:localizable>false</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
</element>
<element name="legacyLink" type="maml:inlineLinkType">
<annotation>
<documentation>
The legacyLink element allows custom text to be used for the link, so
the text is localizable. The link element is to be preferred over the
legacyLink element for all new content.
</documentation>
<appinfo>
<doc:localizable>true</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
</element>
<!-- media links -->
<element name="mediaLinkInline" type="maml:mediaLinkInlineType">
<annotation>
<documentation>
The mediaLinkInline element
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
</element>
<complexType name="mediaLinkType">
<annotation>
<documentation>This complexType is intended as the content model for media referencing elements in the schema.</documentation>
</annotation>
<sequence>
<element name="caption" type="token" minOccurs="0">
<annotation>
<documentation>The caption element describes a summary of an associated object, such as an image.</documentation>
<documentation>This text is intended for the alternate text in web representations.</documentation>
<appinfo>
<doc:localizable>true</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
</element>
<element name="image">
<complexType>
<annotation>
<documentation>A source link targeting the platform object type: image.</documentation>
<documentation>The structure required to define a link to an image object.</documentation>
<documentation>The mediaLinkInline element represents a reference to an image object</documentation>
<documentation>directly (optionally via a presentation object).</documentation>
<appinfo>
<doc:localizable>false</doc:localizable>
<doc:type>structure</doc:type>
</appinfo>
</annotation>
<attributeGroup ref="maml:linkingGroup" />
</complexType>
</element>
</sequence>
</complexType>
<complexType name="mediaLinkInlineType">
<annotation>
<documentation>This complexType is intended as the content model for media referencing elements in the schema.</documentation>
</annotation>
<sequence>
<element name="image">
<complexType>
<annotation>
<documentation>A source link targeting the platform object type: image.</documentation>
<documentation>The structure required to define a link to an image object.</documentation>
<documentation>The mediaLinkInline element represents a reference to an image object</documentation>
<documentation>directly (optionally via a presentation object).</documentation>
<appinfo>
<doc:localizable>false</doc:localizable>
<doc:type>structure</doc:type>
</appinfo>
</annotation>
<attributeGroup ref="maml:linkingGroup" />
</complexType>
</element>
</sequence>
</complexType>
<!-- Code links -->
<simpleType name="codeEntityReferenceStringType">
<restriction base="token">
<!--<pattern value='[NTFPME]:[^)(]+([(][^)(]*[)])?'/>-->
<pattern value='.*' />
</restriction>
</simpleType>
<complexType name="codeEntityReferenceType" mixed="false">
<simpleContent>
<extension base="maml:codeEntityReferenceStringType">
<attribute name="qualifyHint" type="boolean" />
<attribute name="autoUpgrade" type="boolean" />
</extension>
</simpleContent>
</complexType>
<element name="codeEntityReference" type="maml:codeEntityReferenceType">
<annotation>
<documentation>
This element holds a reference to a code entity.
</documentation>
<appinfo>
<doc:localizable>false</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
</element>
<element name="parameterReference" type="maml:textType">
<annotation>
<documentation>
This element holds a reference to a parameter.
</documentation>
<appinfo>
<doc:localizable>false</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
</element>
<group name="codeLinkingGroup">
<annotation>
<documentation>
This type describes the set of inline elements that are
used for referring to code elements and parameters.
</documentation>
</annotation>
<choice>
<element ref="maml:codeEntityReference" />
<element ref="maml:parameterReference" />
</choice>
</group>
<!-- external resource links -->
<complexType name="inlineLinkType" mixed="true">
<simpleContent>
<extension base="maml:textType">
<attributeGroup ref="maml:linkingGroup" />
</extension>
</simpleContent>
</complexType>
<complexType name="sharedContentParameterType" mixed="true">
<choice minOccurs="0" maxOccurs="unbounded">
<group ref="maml:inlineGroup" />
</choice>
<attribute name="name" type="token" />
</complexType>
<element name="sharedContentParameter" type="maml:sharedContentParameterType">
<annotation>
<documentation></documentation>
<appinfo>
<doc:localizable>true</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
</element>
<complexType name="sharedContentType">
<sequence>
<element ref="maml:sharedContentParameter" minOccurs="0" maxOccurs="unbounded" />
</sequence>
<attributeGroup ref="maml:contentIdentificationSharingAndConditionGroup" />
<attributeGroup ref="maml:linkingGroup" />
</complexType>
<element name="sharedContent" type="maml:sharedContentType">
<annotation>
<documentation></documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
</element>
<!-- External redir web link -->
<element name="externalLink">
<annotation>
<documentation>
The externalLink element describes links that are external to Microsoft
and must be managed through a redirection scheme.
</documentation>
<appinfo>
<doc:localizable>n/a</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
<complexType>
<sequence>
<element name="linkText" type="maml:textType">
<annotation>
<documentation>
The linkText element describes the text of a link.
</documentation>
<appinfo>
<doc:localizable>true</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
</element>
<element name="linkAlternateText" type="maml:textType" minOccurs="0">
<annotation>
<documentation>
The linkAlternateText element describes the alternate
text of the link, used for "alt text" on the Web.
</documentation>
<appinfo>
<doc:localizable>true</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
</element>
<element name="linkUri" type="maml:textType">
<annotation>
<documentation>
The linkUri element describes the URI of the link.
</documentation>
<appinfo>
<doc:localizable>true</doc:localizable>
<doc:type>character</doc:type>
</appinfo>
</annotation>
</element>
</sequence>
</complexType>
</element>
<!-- group declarations -->
<group name="inlineLinkingGroup">
<annotation>
<documentation>
This type describes the set of inline elements that are likely to be
needed for block elements' content models.
</documentation>
</annotation>
<choice>
<group ref="maml:codeLinkingGroup" />
<element ref="maml:link" />
<element ref="maml:legacyLink" />
<element ref="maml:mediaLinkInline" />
<element ref="maml:externalLink" />
</choice>
</group>
</schema>
|