File size: 7,821 Bytes
8c763fb | 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 | <?xml version="1.0" encoding="utf-8"?>
<schema targetNamespace="http://schemas.microsoft.com/maml/2004/10" xmlns:doc="http://schemas.microsoft.com/maml/internal" xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all" xml:lang="en">
<!-- Schema documentation -->
<annotation>
<documentation>This schema definition defines the common reference types within the Content Studio schema.</documentation>
</annotation>
<!-- include and import declarations -->
<include schemaLocation="base.xsd"/>
<!-- element declarations -->
<element name="application" type="maml:textType">
<annotation>
<documentation>Identifies the name of an application, such as Microsoft Windows or Notepad, within a body of text.</documentation>
</annotation>
</element>
<element name="database" type="maml:textType">
<annotation>
<documentation>Identifies the name of a database within a body of text.</documentation>
</annotation>
</element>
<element name="internetUri">
<annotation>
<documentation>Identifies an Internet address, such as a Web URL or an e-mail address, within a body of text.</documentation>
</annotation>
<complexType mixed="true">
<complexContent>
<extension base="maml:textType">
<attribute name="type">
<annotation>
<documentation>Indicates the type of URI to use.</documentation>
</annotation>
<simpleType>
<restriction base="token">
<enumeration value="email"/>
<enumeration value="web"/>
<enumeration value="ftp"/>
</restriction>
</simpleType>
</attribute>
</extension>
</complexContent>
</complexType>
</element>
<element name="localUri">
<annotation>
<documentation>Specifies a path to a local resource.</documentation>
</annotation>
<complexType mixed="true">
<sequence minOccurs="0">
<element ref="maml:replaceable"/>
</sequence>
<attributeGroup ref="maml:contentIdentificationSharingAndConditionGroup"/>
<attribute name="type">
<annotation>
<documentation>Indicates the type of URI to use.</documentation>
</annotation>
<simpleType>
<restriction base="token">
<enumeration value="absolutePath"/>
<enumeration value="relativePath"/>
<enumeration value="registryKey"/>
<enumeration value="allUsersDocAndSettings"/>
<enumeration value="currentUserDocAndSettings"/>
<enumeration value="programFiles"/>
<enumeration value="Windows"/>
<enumeration value="mshelp"/>
</restriction>
</simpleType>
</attribute>
</complexType>
</element>
<element name="environmentVariable" type="maml:textType">
<annotation>
<documentation>Identifies an operating system environment variable within a body of text.</documentation>
</annotation>
</element>
<element name="errorInline" type="maml:textType">
<annotation>
<documentation>Identifies a string of error text within a body of text.</documentation>
</annotation>
</element>
<element name="hardware" type="maml:textType">
<annotation>
<documentation>Identifies the name of a computer hardware component or peripheral device, within a body of text.</documentation>
</annotation>
</element>
<element name="literal" type="maml:textType">
<annotation>
<documentation>Identifies a literal value within a body of text.</documentation>
</annotation>
</element>
<element name="markup" type="maml:textType">
<annotation>
<documentation>Identifies a string of markup, such as XML or TeX, within a body of text.</documentation>
</annotation>
</element>
<element name="commandInline">
<annotation>
<documentation>Identifies the name of an executable or other software application.</documentation>
</annotation>
<complexType mixed="true">
<choice minOccurs="0" maxOccurs="unbounded">
<element ref="maml:replaceable"/>
</choice>
</complexType>
</element>
<element name="replaceable" type="maml:textType">
<annotation>
<documentation>Identifies a span of text representing part of a command or function that the user replaces.</documentation>
</annotation>
</element>
<element name="token" type="maml:textType">
<annotation>
<documentation>Identifies a symbol within a body of text that represents a grammatical construct, or is a link to something else. Similar to the literal element.</documentation>
</annotation>
</element>
<element name="codeInline" type="maml:textType">
<annotation>
<documentation>Identifies a string of code, within a body of text.</documentation>
</annotation>
</element>
<element name="computerOutputInline" type="maml:textType">
<annotation>
<documentation>Identifies textual content associated with a user interface or console output, within a body of text.</documentation>
</annotation>
</element>
<element name="prompt" type="maml:textType">
<annotation>
<documentation>Identifies a string that represents a command prompt or user interface input field, within a body of text.</documentation>
</annotation>
</element>
<element name="ui" type="maml:textType">
<annotation>
<documentation>Identifies text representing a user interface element, within a body of text.</documentation>
</annotation>
</element>
<element name="registryEntryInline">
<annotation>
<documentation>Identifies a registry entry, within a body of text.</documentation>
</annotation>
<complexType>
<sequence>
<element ref="maml:name">
<annotation>
<documentation>Specifies the name of the registry entry.</documentation>
</annotation>
</element>
<element name="key" type="string">
<annotation>
<documentation>Specifies the key value of the registry entry.</documentation>
</annotation>
</element>
<element name="value" type="string" maxOccurs="unbounded">
<annotation>
<documentation>Specifies the value of the registry entry.</documentation>
</annotation>
</element>
</sequence>
<attribute name="type" default="string">
<annotation>
<documentation>Specifies the type of registry entry.</documentation>
</annotation>
<simpleType>
<restriction base="string">
<enumeration value="string"/>
<enumeration value="expandableString"/>
<enumeration value="binary"/>
<enumeration value="dWord"/>
<enumeration value="multiString"/>
</restriction>
</simpleType>
</attribute>
</complexType>
</element>
<!-- group declarations -->
<group name="inlineSoftwareGroup">
<choice>
<element ref="maml:application"/>
<element ref="maml:database"/>
<element ref="maml:internetUri"/>
<element ref="maml:localUri"/>
<element ref="maml:environmentVariable"/>
<element ref="maml:errorInline"/>
<element ref="maml:hardware"/>
<element ref="maml:literal"/>
<element ref="maml:markup"/>
<element ref="maml:commandInline"/>
<element ref="maml:token"/>
<element ref="maml:codeInline"/>
<element ref="maml:computerOutputInline"/>
<element ref="maml:prompt"/>
<element ref="maml:ui"/>
<element ref="maml:registryEntryInline"/>
</choice>
</group>
</schema>
|