1 | <?xml version="1.0" encoding="utf-8" ?>
|
---|
2 | <schema
|
---|
3 | xmlns="http://www.w3.org/2001/XMLSchema"
|
---|
4 | xmlns:maml="http://ddue.schemas.microsoft.com/authoring/2003/5"
|
---|
5 | xmlns:doc="http://ddue.schemas.microsoft.com/authoring/internal"
|
---|
6 | targetNamespace="http://ddue.schemas.microsoft.com/authoring/2003/5"
|
---|
7 | blockDefault="#all"
|
---|
8 | elementFormDefault="qualified"
|
---|
9 | attributeFormDefault="unqualified"
|
---|
10 | xml:lang="en"
|
---|
11 | >
|
---|
12 |
|
---|
13 | <!-- Schema documentation -->
|
---|
14 | <annotation>
|
---|
15 | <documentation>
|
---|
16 | This schema describes MAML, the Microsoft Assistance Markup Language.
|
---|
17 | MAML is intended for software documentation. In particular, it is
|
---|
18 | intended to accomodate the needs of Microsoft documentation.
|
---|
19 | </documentation>
|
---|
20 | <documentation>
|
---|
21 | The schema is broken into three main areas: end user, developer and
|
---|
22 | IT Pro. These areas adequaltely categorize Microsoft
|
---|
23 | documentation.
|
---|
24 | </documentation>
|
---|
25 | <documentation>
|
---|
26 | The namespace uri for this version of Maml is: http://ddue.schemas.microsoft.com/authoring/2003/5.
|
---|
27 | Each backwards-incompatible revision to Maml will require that the date fields be appropriately
|
---|
28 | incremented in uri of the updated version of the Maml schema.
|
---|
29 | </documentation>
|
---|
30 | </annotation>
|
---|
31 |
|
---|
32 | <include schemaLocation="baseConditional.xsd"/>
|
---|
33 |
|
---|
34 | <!-- *************************************************************************** -->
|
---|
35 |
|
---|
36 | <!--
|
---|
37 | In a single condition set, values from the same axis are combined with OR
|
---|
38 | and values from different axes are combined with AND. Nesting condition sets
|
---|
39 | is equivalent to combining them with AND.
|
---|
40 | -->
|
---|
41 | <complexType name="conditionsType" mixed="false">
|
---|
42 | <choice minOccurs="1" maxOccurs="unbounded">
|
---|
43 | <element ref="maml:programmingLanguage"/>
|
---|
44 | <element ref="maml:legacyPlatform"/>
|
---|
45 | <element ref="maml:legacyMedium"/>
|
---|
46 | <element ref="maml:legacyUserDefined"/>
|
---|
47 | </choice>
|
---|
48 | </complexType>
|
---|
49 |
|
---|
50 |
|
---|
51 | <element name="conditions" type="maml:conditionsType">
|
---|
52 | <annotation>
|
---|
53 | <documentation>
|
---|
54 | This element is used to hold a set of conditions.
|
---|
55 | </documentation>
|
---|
56 | <appinfo>
|
---|
57 | <doc:localizable>n/a</doc:localizable>
|
---|
58 | <doc:type>section</doc:type>
|
---|
59 | </appinfo>
|
---|
60 | </annotation>
|
---|
61 | </element>
|
---|
62 |
|
---|
63 | </schema>
|
---|