dsh-courseware 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +109 -0
  3. package/cordis.patch.yml +9 -0
  4. package/engine/pptxgen/__init__.py +8 -0
  5. package/engine/pptxgen/__main__.py +4 -0
  6. package/engine/pptxgen/builtin_template.py +218 -0
  7. package/engine/pptxgen/cli.py +575 -0
  8. package/engine/pptxgen/examples.py +290 -0
  9. package/engine/pptxgen/imagegen.py +564 -0
  10. package/engine/pptxgen/layoutmap.py +211 -0
  11. package/engine/pptxgen/patterns.py +106 -0
  12. package/engine/pptxgen/preview.py +126 -0
  13. package/engine/pptxgen/profile.py +456 -0
  14. package/engine/pptxgen/render.py +1673 -0
  15. package/engine/pptxgen/review.py +184 -0
  16. package/engine/pptxgen/schemacheck.py +122 -0
  17. package/engine/pptxgen/schemas/XAdES.xsd +466 -0
  18. package/engine/pptxgen/schemas/XAdESv141.xsd +15 -0
  19. package/engine/pptxgen/schemas/chartEx.xsd +838 -0
  20. package/engine/pptxgen/schemas/dml-chart.xsd +1499 -0
  21. package/engine/pptxgen/schemas/dml-chartDrawing.xsd +146 -0
  22. package/engine/pptxgen/schemas/dml-diagram.xsd +1085 -0
  23. package/engine/pptxgen/schemas/dml-drawing.xsd +63 -0
  24. package/engine/pptxgen/schemas/dml-lockedCanvas.xsd +11 -0
  25. package/engine/pptxgen/schemas/dml-main.xsd +3081 -0
  26. package/engine/pptxgen/schemas/dml-picture.xsd +23 -0
  27. package/engine/pptxgen/schemas/dml-spreadsheetDrawing.xsd +185 -0
  28. package/engine/pptxgen/schemas/dml-wordprocessingDrawing.xsd +287 -0
  29. package/engine/pptxgen/schemas/drawing-chart2012.xsd +129 -0
  30. package/engine/pptxgen/schemas/markup-compatibility.xsd +95 -0
  31. package/engine/pptxgen/schemas/opc-digSig.xsd +49 -0
  32. package/engine/pptxgen/schemas/opc-relationships.xsd +33 -0
  33. package/engine/pptxgen/schemas/pml.xsd +1676 -0
  34. package/engine/pptxgen/schemas/shared-additionalCharacteristics.xsd +28 -0
  35. package/engine/pptxgen/schemas/shared-bibliography.xsd +144 -0
  36. package/engine/pptxgen/schemas/shared-commonSimpleTypes.xsd +172 -0
  37. package/engine/pptxgen/schemas/shared-customXmlDataProperties.xsd +25 -0
  38. package/engine/pptxgen/schemas/shared-customXmlSchemaProperties.xsd +18 -0
  39. package/engine/pptxgen/schemas/shared-documentPropertiesCustom.xsd +59 -0
  40. package/engine/pptxgen/schemas/shared-documentPropertiesExtended.xsd +56 -0
  41. package/engine/pptxgen/schemas/shared-documentPropertiesVariantTypes.xsd +195 -0
  42. package/engine/pptxgen/schemas/shared-math.xsd +582 -0
  43. package/engine/pptxgen/schemas/shared-relationshipReference.xsd +25 -0
  44. package/engine/pptxgen/schemas/signatureInfo.xsd +103 -0
  45. package/engine/pptxgen/schemas/sml.xsd +4439 -0
  46. package/engine/pptxgen/schemas/visio.xsd +829 -0
  47. package/engine/pptxgen/schemas/vml-main.xsd +570 -0
  48. package/engine/pptxgen/schemas/vml-officeDrawing.xsd +509 -0
  49. package/engine/pptxgen/schemas/vml-presentationDrawing.xsd +12 -0
  50. package/engine/pptxgen/schemas/vml-spreadsheetDrawing.xsd +108 -0
  51. package/engine/pptxgen/schemas/vml-wordprocessingDrawing.xsd +96 -0
  52. package/engine/pptxgen/schemas/vmlDrawing.xsd +36 -0
  53. package/engine/pptxgen/schemas/wml.xsd +3643 -0
  54. package/engine/pptxgen/schemas/word12.xsd +66 -0
  55. package/engine/pptxgen/schemas/xlThreadedComments.xsd +59 -0
  56. package/engine/pptxgen/schemas/xlThreadedComments2.xsd +22 -0
  57. package/engine/pptxgen/schemas/xmldsig-core-schema.xsd +318 -0
  58. package/engine/pptxgen/shapes.py +417 -0
  59. package/engine/pptxgen/spec.py +529 -0
  60. package/engine/pptxgen/template.py +834 -0
  61. package/engine/pptxgen/util.py +218 -0
  62. package/engine/pptxgen/xmlutil.py +298 -0
  63. package/engine/pptxgen.sh +7 -0
  64. package/engine/requirements.txt +9 -0
  65. package/lib/index.js +186 -0
  66. package/package.json +34 -0
  67. package/skills/courseware/SKILL.md +130 -0
  68. package/skills/courseware/references/content-polish.md +121 -0
  69. package/skills/courseware/references/deck-spec.md +155 -0
  70. package/skills/courseware/references/design-review.md +121 -0
  71. package/skills/courseware/references/image-backends.md +94 -0
  72. package/skills/courseware/references/quality-gates.md +71 -0
  73. package/skills/courseware/references/roadmap.md +55 -0
  74. package/skills/courseware/references/template-fidelity.md +100 -0
  75. package/skills/courseware/workflows/generate.md +172 -0
  76. package/skills/courseware/workflows/quick.md +41 -0
  77. package/skills/courseware/workflows/revise.md +40 -0
  78. package/skills/courseware/workflows/routing.md +49 -0
  79. package/skills/courseware/workflows/stages/generate-images.md +74 -0
  80. package/skills/courseware/workflows/template-intake.md +112 -0
@@ -0,0 +1,829 @@
1
+ <!--
2
+ XML for Visio Schema
3
+ http://schemas.microsoft.com/office/visio/2011/1/core
4
+ Copyright (C) 2000-2002 Microsoft Corporation. All rights reserved.
5
+ -->
6
+ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
7
+ targetNamespace="http://schemas.microsoft.com/office/visio/2012/main"
8
+ xmlns="http://schemas.microsoft.com/office/visio/2012/main"
9
+ xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
10
+ elementFormDefault="qualified" attributeFormDefault="unqualified">
11
+
12
+ <xsd:import namespace="http://schemas.openxmlformats.org/officeDocument/2006/relationships"/>
13
+
14
+ <xsd:annotation>
15
+ <xsd:documentation>
16
+ Permission to copy, display and distribute the contents of this document (the
17
+ "Specification"), in any medium for any purpose without fee or royalty is
18
+ hereby granted, provided that you include the following notice on ALL copies of
19
+ the Specification, or portions thereof, that you make:
20
+ Copyright (c) Microsoft Corporation. All rights reserved. Permission to copy,
21
+ display and distribute this document is available at:
22
+ http://msdn.microsoft.com/library/en-us/odcXMLRef/html/odcXMLRefLegalNotice.asp?frame=true.
23
+ No right to create modifications or derivatives of this Specification is
24
+ granted herein. There is a separate patent license available to parties
25
+ interested in implementing software programs that can read and write files that
26
+ conform to the Specification. This patent license is available at this
27
+ location: http://www.microsoft.com/mscorp/ip/format/xmlpatentlicense.asp.
28
+ THE SPECIFICATION IS PROVIDED "AS IS" AND MICROSOFT MAKES NO REPRESENTATIONS OR
29
+ WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF
30
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE;
31
+ THAT THE CONTENTS OF THE SPECIFICATION ARE SUITABLE FOR ANY PURPOSE; NOR THAT
32
+ THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS,
33
+ COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. MICROSOFT WILL NOT BE LIABLE FOR ANY
34
+ DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF
35
+ OR RELATING TO ANY USE OR DISTRIBUTION OF THE SPECIFICATION.
36
+ The name and trademarks of Microsoft may NOT be used in any manner, including
37
+ advertising or publicity pertaining to the Specification or its contents
38
+ without specific, written prior permission. Title to copyright in the
39
+ Specification will at all times remain with Microsoft. No other rights are
40
+ granted by implication, estoppel or otherwise.
41
+ </xsd:documentation>
42
+ </xsd:annotation>
43
+
44
+ <!--
45
+ Root-level elements for different parts
46
+ -->
47
+ <!--document.xml-->
48
+ <xsd:element name="VisioDocument" type="VisioDocument_Type" />
49
+ <!--masters/masters.xml-->
50
+ <xsd:element name="Masters" type="Masters_Type" />
51
+ <!--masters/master#.xml-->
52
+ <xsd:element name="MasterContents" type="PageContents_Type" />
53
+ <!--pages/pages.xml-->
54
+ <xsd:element name="Pages" type="Pages_Type" />
55
+ <!--pages/page#.xml-->
56
+ <xsd:element name="PageContents" type="PageContents_Type" />
57
+ <!--data/connections.xml-->
58
+ <xsd:element name="DataConnections" type="DataConnections_Type" />
59
+ <!--data/recordsets.xml-->
60
+ <xsd:element name="DataRecordSets" type="DataRecordSets_Type" />
61
+ <!--comments.xml-->
62
+ <xsd:element name="Comments" type="Comments_Type" />
63
+ <!--extensions.xml-->
64
+ <xsd:element name="Extensions" type="Extensions_Type" />
65
+ <!--
66
+ Complex types
67
+ -->
68
+ <xsd:complexType name="VisioDocument_Type">
69
+ <xsd:sequence>
70
+ <xsd:element name="DocumentSettings" type="DocumentSettings_Type" minOccurs="0"
71
+ maxOccurs="1" />
72
+ <xsd:element name="Colors" type="Colors_Type" minOccurs="0" maxOccurs="1" />
73
+ <xsd:element name="FaceNames" type="FaceNames_Type" minOccurs="0"
74
+ maxOccurs="1" />
75
+ <xsd:element name="StyleSheets" type="StyleSheets_Type" minOccurs="0"
76
+ maxOccurs="1" />
77
+ <xsd:element name="DocumentSheet" type="DocumentSheet_Type" minOccurs="0"
78
+ maxOccurs="1" />
79
+ <xsd:element name="EventList" type="EventList_Type" minOccurs="0"
80
+ maxOccurs="1" />
81
+ <xsd:element name="HeaderFooter" type="HeaderFooter_Type" minOccurs="0"
82
+ maxOccurs="1" />
83
+ <xsd:element name="PublishSettings" type="PublishSettings_Type" minOccurs="0"
84
+ maxOccurs="1" />
85
+ <xsd:any minOccurs="0" maxOccurs="unbounded" namespace="##other"
86
+ processContents="lax" />
87
+ </xsd:sequence>
88
+ <xsd:anyAttribute namespace="##other" processContents="lax" />
89
+ </xsd:complexType>
90
+
91
+ <!--Sheet abstract base class-->
92
+ <xsd:complexType name="Sheet_Type" abstract="true">
93
+ <xsd:sequence minOccurs="0" maxOccurs="unbounded">
94
+ <xsd:element name="Cell" type="Cell_Type" minOccurs="0"
95
+ maxOccurs="unbounded" />
96
+ <xsd:element name="Trigger" type="Trigger_Type" minOccurs="0"
97
+ maxOccurs="unbounded" />
98
+ <xsd:element name="Section" type="Section_Type" minOccurs="0"
99
+ maxOccurs="unbounded" />
100
+
101
+ <!--Sheets can hold and roundtrip arbitrary, unknown sub-XML-->
102
+ <xsd:any minOccurs="0" maxOccurs="unbounded" namespace="##other"
103
+ processContents="lax" />
104
+ </xsd:sequence>
105
+
106
+ <!--Style sheet IDs for inheritance-->
107
+ <xsd:attribute name="LineStyle" type="xsd:unsignedInt" />
108
+ <xsd:attribute name="FillStyle" type="xsd:unsignedInt" />
109
+ <xsd:attribute name="TextStyle" type="xsd:unsignedInt" />
110
+
111
+ <!--Sheets can hold and roundtrip arbitrary, unknown attributes-->
112
+ <xsd:anyAttribute namespace="##other" processContents="lax" />
113
+ </xsd:complexType>
114
+
115
+ <!--Section base types-->
116
+ <xsd:complexType name="Section_Type">
117
+ <xsd:sequence>
118
+ <!--Cells only show up directly under the Geometry section-->
119
+ <xsd:element name="Cell" type="Cell_Type" minOccurs="0"
120
+ maxOccurs="unbounded" />
121
+ <xsd:element name="Trigger" type="Trigger_Type" minOccurs="0"
122
+ maxOccurs="unbounded" />
123
+
124
+ <!--All Sections have child rows-->
125
+ <xsd:element name="Row" type="Row_Type" minOccurs="0" maxOccurs="unbounded" />
126
+ </xsd:sequence>
127
+
128
+ <xsd:attribute name="N" type="xsd:string" use="required" />
129
+ <xsd:attribute name="Del" type="xsd:boolean" />
130
+
131
+ <!--Only Geometry sections have indexes as there can be several in a Sheet-->
132
+ <xsd:attribute name="IX" type="xsd:unsignedInt" />
133
+ </xsd:complexType>
134
+
135
+ <!--Row base types-->
136
+ <xsd:complexType name="Row_Type">
137
+ <xsd:sequence>
138
+ <xsd:element name="Cell" type="Cell_Type" minOccurs="0"
139
+ maxOccurs="unbounded" />
140
+ <xsd:element name="Trigger" type="Trigger_Type" minOccurs="0"
141
+ maxOccurs="unbounded" />
142
+ </xsd:sequence>
143
+
144
+ <!--The name attributes are only used on named rows-->
145
+ <xsd:attribute name="N" type="xsd:string" />
146
+ <xsd:attribute name="LocalName" type="xsd:string" />
147
+
148
+ <!--The index attribute is only used on indexed rows-->
149
+ <xsd:attribute name="IX" type="xsd:unsignedInt" />
150
+
151
+ <!--The type attribute is only used on Rows in the Geometry section-->
152
+ <xsd:attribute name="T" type="xsd:string" />
153
+
154
+ <!--Any row can be locally deleted-->
155
+ <xsd:attribute name="Del" type="xsd:boolean" />
156
+ </xsd:complexType>
157
+
158
+ <!--Cell base type-->
159
+ <xsd:complexType name="Cell_Type" mixed="true">
160
+ <xsd:sequence>
161
+ <xsd:element name="RefBy" type="RefBy_Type" minOccurs="0"
162
+ maxOccurs="unbounded" />
163
+ </xsd:sequence>
164
+ <xsd:attribute name="N" type="xsd:string" use="required" />
165
+ <xsd:attribute name="U" type="xsd:string" />
166
+ <xsd:attribute name="E" type="xsd:string" />
167
+ <xsd:attribute name="F" type="xsd:string" />
168
+ <xsd:attribute name="V" type="xsd:string" />
169
+ </xsd:complexType>
170
+
171
+ <!--Trigger base type-->
172
+ <xsd:complexType name="Trigger_Type" mixed="true">
173
+ <xsd:sequence>
174
+ <xsd:element name="RefBy" type="RefBy_Type" minOccurs="0"
175
+ maxOccurs="unbounded" />
176
+ </xsd:sequence>
177
+ <xsd:attribute name="N" type="xsd:string" use="required" />
178
+ </xsd:complexType>
179
+
180
+ <xsd:complexType name="DocumentSheet_Type">
181
+ <xsd:complexContent>
182
+ <xsd:extension base="Sheet_Type">
183
+ <xsd:attribute name="Name" type="xsd:string" />
184
+ <xsd:attribute name="NameU" type="xsd:string" />
185
+ <xsd:attribute name="IsCustomName" type="xsd:boolean" />
186
+ <xsd:attribute name="IsCustomNameU" type="xsd:boolean" />
187
+ <xsd:attribute name="UniqueID" type="xsd:string" />
188
+ </xsd:extension>
189
+ </xsd:complexContent>
190
+ </xsd:complexType>
191
+
192
+ <xsd:complexType name="StyleSheet_Type">
193
+ <xsd:complexContent>
194
+ <xsd:extension base="Sheet_Type">
195
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
196
+ <xsd:attribute name="Name" type="xsd:string" />
197
+ <xsd:attribute name="NameU" type="xsd:string" />
198
+ <xsd:attribute name="IsCustomName" type="xsd:boolean" />
199
+ <xsd:attribute name="IsCustomNameU" type="xsd:boolean" />
200
+ </xsd:extension>
201
+ </xsd:complexContent>
202
+ </xsd:complexType>
203
+
204
+ <xsd:complexType name="PageSheet_Type">
205
+ <xsd:complexContent>
206
+ <xsd:extension base="Sheet_Type">
207
+ <xsd:attribute name="UniqueID" type="xsd:string" />
208
+ </xsd:extension>
209
+ </xsd:complexContent>
210
+ </xsd:complexType>
211
+
212
+ <xsd:complexType name="ShapeSheet_Type">
213
+ <xsd:complexContent>
214
+ <xsd:extension base="Sheet_Type">
215
+ <xsd:sequence>
216
+ <!--Shape Text-->
217
+ <xsd:element name="Text" type="Text_Type" minOccurs="0" maxOccurs="1" />
218
+
219
+ <!--Legacy data fields-->
220
+ <xsd:element name="Data1" type="Data_Type" minOccurs="0" maxOccurs="1" />
221
+ <xsd:element name="Data2" type="Data_Type" minOccurs="0" maxOccurs="1" />
222
+ <xsd:element name="Data3" type="Data_Type" minOccurs="0" maxOccurs="1" />
223
+
224
+ <!--Foreign object data for images, OLE, ActiveX, etc.-->
225
+ <xsd:element name="ForeignData" type="ForeignData_Type" minOccurs="0"
226
+ maxOccurs="1" />
227
+
228
+ <!--Sub-shapes if this is a group-->
229
+ <xsd:element name="Shapes" type="Shapes_Type" minOccurs="0"
230
+ maxOccurs="1" />
231
+ </xsd:sequence>
232
+
233
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
234
+ <xsd:attribute name="OriginalID" type="xsd:unsignedInt" />
235
+ <xsd:attribute name="Del" type="xsd:boolean" />
236
+ <xsd:attribute name="MasterShape" type="xsd:unsignedInt" />
237
+ <xsd:attribute name="UniqueID" type="xsd:string" />
238
+ <xsd:attribute name="Name" type="xsd:string" />
239
+ <xsd:attribute name="NameU" type="xsd:string" />
240
+ <xsd:attribute name="IsCustomName" type="xsd:boolean" />
241
+ <xsd:attribute name="IsCustomNameU" type="xsd:boolean" />
242
+ <xsd:attribute name="Master" type="xsd:unsignedInt" />
243
+ <xsd:attribute name="Type" type="xsd:token" />
244
+ </xsd:extension>
245
+ </xsd:complexContent>
246
+ </xsd:complexType>
247
+
248
+ <xsd:complexType name="Text_Type" mixed="true">
249
+ <xsd:choice minOccurs="0" maxOccurs="unbounded">
250
+ <xsd:element name="cp" type="cp_Type" minOccurs="0" maxOccurs="unbounded" />
251
+ <xsd:element name="pp" type="pp_Type" minOccurs="0" maxOccurs="unbounded" />
252
+ <xsd:element name="tp" type="tp_Type" minOccurs="0" maxOccurs="unbounded" />
253
+ <xsd:element name="fld" type="fld_Type" minOccurs="0" maxOccurs="unbounded" />
254
+ </xsd:choice>
255
+ </xsd:complexType>
256
+
257
+ <!--Text fields-->
258
+ <xsd:complexType name="cp_Type">
259
+ <xsd:attribute name="IX" type="xsd:unsignedInt" use="required" />
260
+ </xsd:complexType>
261
+ <xsd:complexType name="pp_Type">
262
+ <xsd:attribute name="IX" type="xsd:unsignedInt" use="required" />
263
+ </xsd:complexType>
264
+ <xsd:complexType name="tp_Type">
265
+ <xsd:attribute name="IX" type="xsd:unsignedInt" use="required" />
266
+ </xsd:complexType>
267
+ <xsd:complexType name="fld_Type">
268
+ <xsd:simpleContent>
269
+ <xsd:extension base="xsd:string">
270
+ <xsd:attribute name="IX" type="xsd:unsignedInt" use="required" />
271
+ </xsd:extension>
272
+ </xsd:simpleContent>
273
+ </xsd:complexType>
274
+
275
+ <xsd:complexType name="Data_Type">
276
+ <xsd:simpleContent>
277
+ <xsd:extension base="xsd:string" />
278
+ </xsd:simpleContent>
279
+ </xsd:complexType>
280
+
281
+ <xsd:complexType name="ForeignData_Type" mixed="true">
282
+ <xsd:sequence>
283
+ <xsd:element name="Rel" type="Rel_Type" minOccurs="1" maxOccurs="1" />
284
+ </xsd:sequence>
285
+ <xsd:attribute name="ForeignType" type="xsd:token" use="required" />
286
+ <xsd:attribute name="ObjectType" type="xsd:unsignedInt" />
287
+ <xsd:attribute name="ShowAsIcon" type="xsd:boolean" />
288
+ <xsd:attribute name="ObjectWidth" type="xsd:double" />
289
+ <xsd:attribute name="ObjectHeight" type="xsd:double" />
290
+ <xsd:attribute name="MappingMode" type="xsd:unsignedShort" />
291
+ <xsd:attribute name="ExtentX" type="xsd:double" />
292
+ <xsd:attribute name="ExtentY" type="xsd:double" />
293
+ <xsd:attribute name="CompressionType" type="xsd:token" />
294
+ <xsd:attribute name="CompressionLevel" type="xsd:double" />
295
+ </xsd:complexType>
296
+
297
+ <xsd:complexType name="DocumentSettings_Type">
298
+ <xsd:all>
299
+ <xsd:element name="GlueSettings" type="GlueSettings_Type" minOccurs="0"
300
+ maxOccurs="1" />
301
+ <xsd:element name="SnapSettings" type="SnapSettings_Type" minOccurs="0"
302
+ maxOccurs="1" />
303
+ <xsd:element name="SnapExtensions" type="SnapExtensions_Type" minOccurs="0"
304
+ maxOccurs="1" />
305
+ <xsd:element name="SnapAngles" type="SnapAngles_Type" minOccurs="0"
306
+ maxOccurs="1" />
307
+ <xsd:element name="DynamicGridEnabled" type="DynamicGridEnabled_Type"
308
+ minOccurs="0" maxOccurs="1" />
309
+ <xsd:element name="ProtectStyles" type="ProtectStyles_Type" minOccurs="0"
310
+ maxOccurs="1" />
311
+ <xsd:element name="ProtectShapes" type="ProtectShapes_Type" minOccurs="0"
312
+ maxOccurs="1" />
313
+ <xsd:element name="ProtectMasters" type="ProtectMasters_Type" minOccurs="0"
314
+ maxOccurs="1" />
315
+ <xsd:element name="ProtectBkgnds" type="ProtectBkgnds_Type" minOccurs="0"
316
+ maxOccurs="1" />
317
+ <xsd:element name="CustomMenusFile" type="CustomMenusFile_Type" minOccurs="0"
318
+ maxOccurs="1" />
319
+ <xsd:element name="CustomToolbarsFile" type="CustomToolbarsFile_Type"
320
+ minOccurs="0" maxOccurs="1" />
321
+ <xsd:element name="AttachedToolbars" type="AttachedToolbars_Type" minOccurs="0"
322
+ maxOccurs="1" />
323
+ </xsd:all>
324
+ <xsd:attribute name="TopPage" type="xsd:unsignedInt" />
325
+ <xsd:attribute name="DefaultTextStyle" type="xsd:unsignedInt" />
326
+ <xsd:attribute name="DefaultLineStyle" type="xsd:unsignedInt" />
327
+ <xsd:attribute name="DefaultFillStyle" type="xsd:unsignedInt" />
328
+ <xsd:attribute name="DefaultGuideStyle" type="xsd:unsignedInt" />
329
+ </xsd:complexType>
330
+ <xsd:complexType name="GlueSettings_Type">
331
+ <xsd:simpleContent>
332
+ <xsd:extension base="xsd:int" />
333
+ </xsd:simpleContent>
334
+ </xsd:complexType>
335
+ <xsd:complexType name="SnapSettings_Type">
336
+ <xsd:simpleContent>
337
+ <xsd:extension base="xsd:int" />
338
+ </xsd:simpleContent>
339
+ </xsd:complexType>
340
+ <xsd:complexType name="SnapExtensions_Type">
341
+ <xsd:simpleContent>
342
+ <xsd:extension base="xsd:int" />
343
+ </xsd:simpleContent>
344
+ </xsd:complexType>
345
+ <xsd:complexType name="SnapAngles_Type">
346
+ <xsd:sequence>
347
+ <xsd:element name="SnapAngle" type="SnapAngle_Type" minOccurs="0"
348
+ maxOccurs="unbounded" />
349
+ </xsd:sequence>
350
+ </xsd:complexType>
351
+ <xsd:complexType name="SnapAngle_Type">
352
+ <xsd:simpleContent>
353
+ <xsd:extension base="xsd:double" />
354
+ </xsd:simpleContent>
355
+ </xsd:complexType>
356
+ <xsd:complexType name="DynamicGridEnabled_Type">
357
+ <xsd:simpleContent>
358
+ <xsd:extension base="xsd:boolean" />
359
+ </xsd:simpleContent>
360
+ </xsd:complexType>
361
+ <xsd:complexType name="ProtectStyles_Type">
362
+ <xsd:simpleContent>
363
+ <xsd:extension base="xsd:boolean" />
364
+ </xsd:simpleContent>
365
+ </xsd:complexType>
366
+ <xsd:complexType name="ProtectShapes_Type">
367
+ <xsd:simpleContent>
368
+ <xsd:extension base="xsd:boolean" />
369
+ </xsd:simpleContent>
370
+ </xsd:complexType>
371
+ <xsd:complexType name="ProtectMasters_Type">
372
+ <xsd:simpleContent>
373
+ <xsd:extension base="xsd:boolean" />
374
+ </xsd:simpleContent>
375
+ </xsd:complexType>
376
+ <xsd:complexType name="ProtectBkgnds_Type">
377
+ <xsd:simpleContent>
378
+ <xsd:extension base="xsd:boolean" />
379
+ </xsd:simpleContent>
380
+ </xsd:complexType>
381
+ <xsd:complexType name="CustomMenusFile_Type">
382
+ <xsd:simpleContent>
383
+ <xsd:extension base="xsd:string" />
384
+ </xsd:simpleContent>
385
+ </xsd:complexType>
386
+ <xsd:complexType name="CustomToolbarsFile_Type">
387
+ <xsd:simpleContent>
388
+ <xsd:extension base="xsd:string" />
389
+ </xsd:simpleContent>
390
+ </xsd:complexType>
391
+ <xsd:complexType name="AttachedToolbars_Type">
392
+ <xsd:simpleContent>
393
+ <xsd:extension base="xsd:base64Binary" />
394
+ </xsd:simpleContent>
395
+ </xsd:complexType>
396
+ <xsd:complexType name="Colors_Type">
397
+ <xsd:sequence>
398
+ <xsd:element name="ColorEntry" type="ColorEntry_Type" minOccurs="1"
399
+ maxOccurs="unbounded" />
400
+ </xsd:sequence>
401
+ </xsd:complexType>
402
+ <xsd:complexType name="ColorEntry_Type">
403
+ <xsd:attribute name="IX" type="xsd:unsignedInt" use="required" />
404
+ <xsd:attribute name="RGB" type="xsd:string" use="required" />
405
+ </xsd:complexType>
406
+ <xsd:complexType name="FaceNames_Type">
407
+ <xsd:sequence>
408
+ <xsd:element name="FaceName" type="FaceName_Type" minOccurs="1"
409
+ maxOccurs="unbounded" />
410
+ </xsd:sequence>
411
+ </xsd:complexType>
412
+ <xsd:complexType name="FaceName_Type">
413
+ <xsd:attribute name="NameU" type="xsd:string" use="required" />
414
+ <xsd:attribute name="UnicodeRanges" type="xsd:string" />
415
+ <xsd:attribute name="CharSets" type="xsd:string" />
416
+ <xsd:attribute name="Panos" type="xsd:string" />
417
+ <xsd:attribute name="Panose" type="xsd:string" />
418
+ <xsd:attribute name="Flags" type="xsd:unsignedInt" />
419
+ </xsd:complexType>
420
+ <xsd:complexType name="StyleSheets_Type">
421
+ <xsd:sequence>
422
+ <xsd:element name="StyleSheet" type="StyleSheet_Type" minOccurs="0"
423
+ maxOccurs="unbounded" />
424
+ </xsd:sequence>
425
+ </xsd:complexType>
426
+ <xsd:complexType name="Masters_Type">
427
+ <xsd:sequence>
428
+ <xsd:element name="Master" type="Master_Type" minOccurs="0"
429
+ maxOccurs="unbounded" />
430
+ <xsd:element name="MasterShortcut" type="MasterShortcut_Type" minOccurs="0"
431
+ maxOccurs="unbounded" />
432
+ </xsd:sequence>
433
+ </xsd:complexType>
434
+ <xsd:complexType name="Master_Type">
435
+ <xsd:all>
436
+ <xsd:element name="PageSheet" type="PageSheet_Type" minOccurs="0"
437
+ maxOccurs="1" />
438
+ <xsd:element name="Rel" type="Rel_Type" minOccurs="1" maxOccurs="1" />
439
+ <xsd:element name="Icon" type="Icon_Type" minOccurs="0" maxOccurs="1" />
440
+ </xsd:all>
441
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
442
+ <xsd:attribute name="BaseID" type="xsd:string" />
443
+ <xsd:attribute name="UniqueID" type="xsd:string" />
444
+ <xsd:attribute name="MatchByName" type="xsd:boolean" />
445
+ <xsd:attribute name="Name" type="xsd:string" />
446
+ <xsd:attribute name="NameU" type="xsd:string" />
447
+ <xsd:attribute name="IsCustomName" type="xsd:boolean" />
448
+ <xsd:attribute name="IsCustomNameU" type="xsd:boolean" />
449
+ <xsd:attribute name="IconSize" type="xsd:unsignedShort" />
450
+ <xsd:attribute name="PatternFlags" type="xsd:unsignedShort" />
451
+ <xsd:attribute name="Prompt" type="xsd:string" />
452
+ <xsd:attribute name="Hidden" type="xsd:boolean" />
453
+ <xsd:attribute name="IconUpdate" type="xsd:boolean" />
454
+ <xsd:attribute name="AlignName" type="xsd:unsignedShort" />
455
+ <xsd:attribute name="MasterType" type="xsd:unsignedShort" />
456
+ </xsd:complexType>
457
+ <xsd:complexType name="Icon_Type">
458
+ <xsd:simpleContent>
459
+ <xsd:extension base="xsd:base64Binary" />
460
+ </xsd:simpleContent>
461
+ </xsd:complexType>
462
+ <xsd:complexType name="MasterShortcut_Type">
463
+ <xsd:all>
464
+ <xsd:element name="Icon" type="Icon_Type" minOccurs="0" maxOccurs="1" />
465
+ </xsd:all>
466
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
467
+ <xsd:attribute name="Name" type="xsd:string" />
468
+ <xsd:attribute name="NameU" type="xsd:string" />
469
+ <xsd:attribute name="IsCustomName" type="xsd:boolean" />
470
+ <xsd:attribute name="IsCustomNameU" type="xsd:boolean" />
471
+ <xsd:attribute name="IconSize" type="xsd:unsignedShort" />
472
+ <xsd:attribute name="PatternFlags" type="xsd:unsignedShort" />
473
+ <xsd:attribute name="Prompt" type="xsd:string" />
474
+ <xsd:attribute name="ShortcutURL" type="xsd:string" />
475
+ <xsd:attribute name="ShortcutHelp" type="xsd:string" />
476
+ <xsd:attribute name="AlignName" type="xsd:unsignedShort" />
477
+ <xsd:attribute name="MasterType" type="xsd:unsignedShort" />
478
+ </xsd:complexType>
479
+ <xsd:complexType name="PageContents_Type">
480
+ <xsd:sequence>
481
+ <xsd:element name="Shapes" type="Shapes_Type" minOccurs="0" maxOccurs="1" />
482
+ <xsd:element name="Connects" type="Connects_Type" minOccurs="0"
483
+ maxOccurs="1" />
484
+ </xsd:sequence>
485
+ </xsd:complexType>
486
+ <xsd:complexType name="Shapes_Type">
487
+ <xsd:sequence>
488
+ <xsd:element name="Shape" type="ShapeSheet_Type" minOccurs="0"
489
+ maxOccurs="unbounded" />
490
+ </xsd:sequence>
491
+ </xsd:complexType>
492
+ <xsd:complexType name="Connects_Type">
493
+ <xsd:sequence>
494
+ <xsd:element name="Connect" type="Connect_Type" minOccurs="0"
495
+ maxOccurs="unbounded" />
496
+ </xsd:sequence>
497
+ </xsd:complexType>
498
+ <xsd:complexType name="Connect_Type">
499
+ <xsd:attribute name="FromSheet" type="xsd:unsignedInt" use="required" />
500
+ <xsd:attribute name="FromCell" type="xsd:string" />
501
+ <xsd:attribute name="FromPart" type="xsd:int" />
502
+ <xsd:attribute name="ToSheet" type="xsd:unsignedInt" use="required" />
503
+ <xsd:attribute name="ToCell" type="xsd:string" />
504
+ <xsd:attribute name="ToPart" type="xsd:int" />
505
+ </xsd:complexType>
506
+ <xsd:complexType name="Pages_Type">
507
+ <xsd:sequence>
508
+ <xsd:element name="Page" type="Page_Type" minOccurs="0"
509
+ maxOccurs="unbounded" />
510
+ </xsd:sequence>
511
+ </xsd:complexType>
512
+ <xsd:complexType name="Page_Type">
513
+ <xsd:all>
514
+ <xsd:element name="PageSheet" type="PageSheet_Type" minOccurs="0"
515
+ maxOccurs="1" />
516
+ <xsd:element name="Rel" type="Rel_Type" minOccurs="1" maxOccurs="1" />
517
+ </xsd:all>
518
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
519
+ <xsd:attribute name="Name" type="xsd:string" />
520
+ <xsd:attribute name="NameU" type="xsd:string" />
521
+ <xsd:attribute name="IsCustomName" type="xsd:boolean" />
522
+ <xsd:attribute name="IsCustomNameU" type="xsd:boolean" />
523
+ <xsd:attribute name="Background" type="xsd:boolean" />
524
+ <xsd:attribute name="BackPage" type="xsd:unsignedInt" />
525
+ <xsd:attribute name="ViewScale" type="xsd:double" />
526
+ <xsd:attribute name="ViewCenterX" type="xsd:double" />
527
+ <xsd:attribute name="ViewCenterY" type="xsd:double" />
528
+ <xsd:attribute name="ReviewerID" type="xsd:unsignedInt" />
529
+ <xsd:attribute name="AssociatedPage" type="xsd:unsignedInt" />
530
+ </xsd:complexType>
531
+ <xsd:complexType name="EventList_Type">
532
+ <xsd:sequence>
533
+ <xsd:element name="EventItem" type="EventItem_Type" minOccurs="0"
534
+ maxOccurs="unbounded" />
535
+ </xsd:sequence>
536
+ </xsd:complexType>
537
+ <xsd:complexType name="EventItem_Type">
538
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
539
+ <xsd:attribute name="Action" type="xsd:unsignedShort" use="required" />
540
+ <xsd:attribute name="EventCode" type="xsd:unsignedShort" use="required" />
541
+ <xsd:attribute name="Enabled" type="xsd:boolean" />
542
+ <xsd:attribute name="Target" type="xsd:string" use="required" />
543
+ <xsd:attribute name="TargetArgs" type="xsd:string" use="required" />
544
+ </xsd:complexType>
545
+ <xsd:complexType name="HeaderFooter_Type">
546
+ <xsd:all>
547
+ <xsd:element name="HeaderMargin" type="HeaderMargin_Type" minOccurs="0"
548
+ maxOccurs="1" />
549
+ <xsd:element name="FooterMargin" type="FooterMargin_Type" minOccurs="0"
550
+ maxOccurs="1" />
551
+ <xsd:element name="HeaderLeft" type="HeaderLeft_Type" minOccurs="0"
552
+ maxOccurs="1" />
553
+ <xsd:element name="HeaderCenter" type="HeaderCenter_Type" minOccurs="0"
554
+ maxOccurs="1" />
555
+ <xsd:element name="HeaderRight" type="HeaderRight_Type" minOccurs="0"
556
+ maxOccurs="1" />
557
+ <xsd:element name="FooterLeft" type="FooterLeft_Type" minOccurs="0"
558
+ maxOccurs="1" />
559
+ <xsd:element name="FooterCenter" type="FooterCenter_Type" minOccurs="0"
560
+ maxOccurs="1" />
561
+ <xsd:element name="FooterRight" type="FooterRight_Type" minOccurs="0"
562
+ maxOccurs="1" />
563
+ <xsd:element name="HeaderFooterFont" type="HeaderFooterFont_Type" minOccurs="0"
564
+ maxOccurs="1" />
565
+ </xsd:all>
566
+ <xsd:attribute name="HeaderFooterColor" type="xsd:string" />
567
+ </xsd:complexType>
568
+ <xsd:complexType name="HeaderMargin_Type">
569
+ <xsd:simpleContent>
570
+ <xsd:extension base="xsd:double">
571
+ <xsd:attribute name="Unit" type="xsd:string" />
572
+ </xsd:extension>
573
+ </xsd:simpleContent>
574
+ </xsd:complexType>
575
+ <xsd:complexType name="FooterMargin_Type">
576
+ <xsd:simpleContent>
577
+ <xsd:extension base="xsd:double">
578
+ <xsd:attribute name="Unit" type="xsd:string" />
579
+ </xsd:extension>
580
+ </xsd:simpleContent>
581
+ </xsd:complexType>
582
+ <xsd:complexType name="HeaderLeft_Type">
583
+ <xsd:simpleContent>
584
+ <xsd:extension base="xsd:string" />
585
+ </xsd:simpleContent>
586
+ </xsd:complexType>
587
+ <xsd:complexType name="HeaderCenter_Type">
588
+ <xsd:simpleContent>
589
+ <xsd:extension base="xsd:string" />
590
+ </xsd:simpleContent>
591
+ </xsd:complexType>
592
+ <xsd:complexType name="HeaderRight_Type">
593
+ <xsd:simpleContent>
594
+ <xsd:extension base="xsd:string" />
595
+ </xsd:simpleContent>
596
+ </xsd:complexType>
597
+ <xsd:complexType name="FooterLeft_Type">
598
+ <xsd:simpleContent>
599
+ <xsd:extension base="xsd:string" />
600
+ </xsd:simpleContent>
601
+ </xsd:complexType>
602
+ <xsd:complexType name="FooterCenter_Type">
603
+ <xsd:simpleContent>
604
+ <xsd:extension base="xsd:string" />
605
+ </xsd:simpleContent>
606
+ </xsd:complexType>
607
+ <xsd:complexType name="FooterRight_Type">
608
+ <xsd:simpleContent>
609
+ <xsd:extension base="xsd:string" />
610
+ </xsd:simpleContent>
611
+ </xsd:complexType>
612
+ <xsd:complexType name="HeaderFooterFont_Type">
613
+ <xsd:attribute name="Height" type="xsd:int" />
614
+ <xsd:attribute name="Width" type="xsd:int" />
615
+ <xsd:attribute name="Escapement" type="xsd:int" />
616
+ <xsd:attribute name="Orientation" type="xsd:int" />
617
+ <xsd:attribute name="Weight" type="xsd:int" />
618
+ <xsd:attribute name="Italic" type="xsd:unsignedByte" />
619
+ <xsd:attribute name="Underline" type="xsd:unsignedByte" />
620
+ <xsd:attribute name="StrikeOut" type="xsd:unsignedByte" />
621
+ <xsd:attribute name="CharSet" type="xsd:unsignedByte" />
622
+ <xsd:attribute name="OutPrecision" type="xsd:unsignedByte" />
623
+ <xsd:attribute name="ClipPrecision" type="xsd:unsignedByte" />
624
+ <xsd:attribute name="Quality" type="xsd:unsignedByte" />
625
+ <xsd:attribute name="PitchAndFamily" type="xsd:unsignedByte" />
626
+ <xsd:attribute name="FaceName" type="xsd:string" />
627
+ </xsd:complexType>
628
+ <xsd:complexType name="DataConnections_Type">
629
+ <xsd:sequence>
630
+ <xsd:element name="DataConnection" type="DataConnection_Type" minOccurs="1"
631
+ maxOccurs="unbounded" />
632
+ </xsd:sequence>
633
+ <xsd:attribute name="NextID" type="xsd:unsignedInt" use="required" />
634
+ </xsd:complexType>
635
+ <xsd:complexType name="DataConnection_Type">
636
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
637
+ <xsd:attribute name="FileName" type="xsd:string" use="required" />
638
+ <xsd:attribute name="ConnectionString" type="xsd:string" />
639
+ <xsd:attribute name="Command" type="xsd:string" />
640
+ <xsd:attribute name="FriendlyName" type="xsd:string" />
641
+ <xsd:attribute name="Timeout" type="xsd:unsignedInt" />
642
+ <xsd:attribute name="AlwaysUseConnectionFile" type="xsd:boolean" />
643
+ </xsd:complexType>
644
+ <xsd:complexType name="DataRecordSets_Type">
645
+ <xsd:sequence>
646
+ <xsd:element name="DataRecordSet" type="DataRecordSet_Type" minOccurs="0"
647
+ maxOccurs="unbounded" />
648
+ </xsd:sequence>
649
+ <xsd:attribute name="NextID" type="xsd:unsignedInt" use="required" />
650
+ <xsd:attribute name="ActiveRecordsetID" type="xsd:unsignedInt" />
651
+ <xsd:attribute name="DataWindowOrder" type="xsd:string" />
652
+ </xsd:complexType>
653
+ <xsd:complexType name="DataRecordSet_Type">
654
+ <xsd:sequence>
655
+ <xsd:element name="Rel" type="Rel_Type" minOccurs="1" maxOccurs="1" />
656
+ <xsd:element name="DataColumns" type="DataColumns_Type" minOccurs="1"
657
+ maxOccurs="1" />
658
+ <xsd:element name="PrimaryKey" type="PrimaryKey_Type" minOccurs="0"
659
+ maxOccurs="unbounded" />
660
+ <xsd:element name="RowMap" type="RowMap_Type" minOccurs="0"
661
+ maxOccurs="unbounded" />
662
+ <xsd:element name="RefreshConflict" type="RefreshConflict_Type" minOccurs="0"
663
+ maxOccurs="unbounded" />
664
+ <xsd:element name="AutoLinkComparison" type="AutoLinkComparison_Type"
665
+ minOccurs="0" maxOccurs="unbounded" />
666
+ </xsd:sequence>
667
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
668
+ <xsd:attribute name="ConnectionID" type="xsd:unsignedInt" />
669
+ <xsd:attribute name="Command" type="xsd:string" />
670
+ <xsd:attribute name="Options" type="xsd:unsignedInt" />
671
+ <xsd:attribute name="TimeRefreshed" type="xsd:dateTime" />
672
+ <xsd:attribute name="NextRowID" type="xsd:unsignedInt" />
673
+ <xsd:attribute name="Name" type="xsd:string" />
674
+ <xsd:attribute name="RowOrder" type="xsd:boolean" />
675
+ <xsd:attribute name="RefreshOverwriteAll" type="xsd:boolean" />
676
+ <xsd:attribute name="RefreshNoReconciliationUI" type="xsd:boolean" />
677
+ <xsd:attribute name="RefreshInterval" type="xsd:unsignedInt" />
678
+ <xsd:attribute name="ReplaceLinks" type="xsd:unsignedInt" />
679
+ <xsd:attribute name="Checksum" type="xsd:unsignedInt" />
680
+ </xsd:complexType>
681
+ <xsd:complexType name="DataColumns_Type">
682
+ <xsd:sequence>
683
+ <xsd:element name="DataColumn" type="DataColumn_Type" minOccurs="1"
684
+ maxOccurs="unbounded" />
685
+ </xsd:sequence>
686
+ <xsd:attribute name="SortColumn" type="xsd:string" />
687
+ <xsd:attribute name="SortAsc" type="xsd:boolean" />
688
+ </xsd:complexType>
689
+ <xsd:complexType name="DataColumn_Type">
690
+ <xsd:attribute name="ColumnNameID" type="xsd:string" use="required" />
691
+ <xsd:attribute name="Name" type="xsd:string" use="required" />
692
+ <xsd:attribute name="Label" type="xsd:string" use="required" />
693
+ <xsd:attribute name="OrigLabel" type="xsd:string" />
694
+ <xsd:attribute name="LangID" type="xsd:unsignedInt" />
695
+ <xsd:attribute name="Calendar" type="xsd:unsignedShort" />
696
+ <xsd:attribute name="DataType" type="xsd:unsignedShort" />
697
+ <xsd:attribute name="UnitType" type="xsd:string" />
698
+ <xsd:attribute name="Currency" type="xsd:unsignedShort" />
699
+ <xsd:attribute name="Degree" type="xsd:unsignedInt" />
700
+ <xsd:attribute name="DisplayWidth" type="xsd:unsignedInt" />
701
+ <xsd:attribute name="DisplayOrder" type="xsd:unsignedInt" />
702
+ <xsd:attribute name="Mapped" type="xsd:boolean" />
703
+ <xsd:attribute name="Hyperlink" type="xsd:boolean" />
704
+ </xsd:complexType>
705
+ <xsd:complexType name="PrimaryKey_Type">
706
+ <xsd:sequence>
707
+ <xsd:element name="RowKeyValue" type="RowKeyValue_Type" minOccurs="0"
708
+ maxOccurs="unbounded" />
709
+ </xsd:sequence>
710
+ <xsd:attribute name="ColumnNameID" type="xsd:string" use="required" />
711
+ </xsd:complexType>
712
+ <xsd:complexType name="RowKeyValue_Type">
713
+ <xsd:attribute name="RowID" type="xsd:unsignedInt" use="required" />
714
+ <xsd:attribute name="Value" type="xsd:string" use="required" />
715
+ </xsd:complexType>
716
+ <xsd:complexType name="RowMap_Type">
717
+ <xsd:attribute name="RowID" type="xsd:unsignedInt" use="required" />
718
+ <xsd:attribute name="PageID" type="xsd:unsignedInt" use="required" />
719
+ <xsd:attribute name="ShapeID" type="xsd:unsignedInt" use="required" />
720
+ </xsd:complexType>
721
+ <xsd:complexType name="RefreshConflict_Type">
722
+ <xsd:attribute name="RowID" type="xsd:unsignedInt" use="required" />
723
+ <xsd:attribute name="ShapeID" type="xsd:unsignedInt" use="required" />
724
+ <xsd:attribute name="PageID" type="xsd:unsignedInt" use="required" />
725
+ </xsd:complexType>
726
+ <xsd:complexType name="AutoLinkComparison_Type">
727
+ <xsd:attribute name="ColumnName" type="xsd:string" use="required" />
728
+ <xsd:attribute name="ContextType" type="xsd:unsignedInt" use="required" />
729
+ <xsd:attribute name="ContextTypeLabel" type="xsd:string" />
730
+ </xsd:complexType>
731
+ <xsd:complexType name="PublishSettings_Type">
732
+ <xsd:sequence>
733
+ <xsd:element name="PublishedPage" type="PublishedPage_Type" minOccurs="0"
734
+ maxOccurs="unbounded" />
735
+ <xsd:element name="RefreshableData" type="RefreshableData_Type" minOccurs="0"
736
+ maxOccurs="unbounded" />
737
+ </xsd:sequence>
738
+ </xsd:complexType>
739
+ <xsd:complexType name="Comments_Type">
740
+ <xsd:sequence>
741
+ <xsd:element name="AuthorList" type="AuthorList_Type" minOccurs="0"
742
+ maxOccurs="1" />
743
+ <xsd:element name="CommentList" type="CommentList_Type" minOccurs="0"
744
+ maxOccurs="1" />
745
+ </xsd:sequence>
746
+ <xsd:attribute name="ShowCommentTags" type="xsd:boolean" />
747
+ </xsd:complexType>
748
+ <xsd:complexType name="AuthorList_Type">
749
+ <xsd:sequence>
750
+ <xsd:element name="AuthorEntry" type="AuthorEntry_Type" minOccurs="0"
751
+ maxOccurs="unbounded" />
752
+ </xsd:sequence>
753
+ </xsd:complexType>
754
+ <xsd:complexType name="AuthorEntry_Type">
755
+ <xsd:attribute name="Name" type="xsd:string" />
756
+ <xsd:attribute name="Initials" type="xsd:string" />
757
+ <xsd:attribute name="ResolutionID" type="xsd:string" />
758
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
759
+ </xsd:complexType>
760
+ <xsd:complexType name="CommentList_Type">
761
+ <xsd:sequence>
762
+ <xsd:element name="CommentEntry" type="CommentEntry_Type" minOccurs="0"
763
+ maxOccurs="unbounded" />
764
+ </xsd:sequence>
765
+ </xsd:complexType>
766
+ <xsd:complexType name="CommentEntry_Type">
767
+ <xsd:simpleContent>
768
+ <xsd:extension base="xsd:string">
769
+ <xsd:attribute name="AuthorID" type="xsd:unsignedInt" use="required" />
770
+ <xsd:attribute name="PageID" type="xsd:unsignedInt" use="required" />
771
+ <xsd:attribute name="ShapeID" type="xsd:unsignedInt" />
772
+ <xsd:attribute name="Date" type="xsd:dateTime" use="required" />
773
+ <xsd:attribute name="EditDate" type="xsd:dateTime" />
774
+ <xsd:attribute name="Done" type="xsd:boolean" />
775
+ <xsd:attribute name="CommentID" type="xsd:unsignedInt" use="required" />
776
+ <xsd:attribute name="AutoCommentType" type="xsd:unsignedInt" />
777
+ </xsd:extension>
778
+ </xsd:simpleContent>
779
+ </xsd:complexType>
780
+ <xsd:complexType name="PublishedPage_Type">
781
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
782
+ </xsd:complexType>
783
+ <xsd:complexType name="RefreshableData_Type">
784
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
785
+ </xsd:complexType>
786
+ <xsd:complexType name="RefBy_Type">
787
+ <xsd:attribute name="T" type="xsd:string" use="required" />
788
+ <xsd:attribute name="ID" type="xsd:unsignedInt" use="required" />
789
+ </xsd:complexType>
790
+ <xsd:complexType name="Extensions_Type">
791
+ <xsd:sequence>
792
+ <xsd:element name="CellDef" type="CellDef_Type" minOccurs="0"
793
+ maxOccurs="unbounded" />
794
+ <xsd:element name="FunctionDef" type="FunctionDef_Type" minOccurs="0"
795
+ maxOccurs="unbounded" />
796
+ <xsd:element name="SectionDef" type="SectionDef_Type" minOccurs="0"
797
+ maxOccurs="unbounded" />
798
+ </xsd:sequence>
799
+ </xsd:complexType>
800
+ <xsd:complexType name="CellDef_Type">
801
+ <xsd:attribute name="N" type="xsd:string" use="required" />
802
+ <xsd:attribute name="T" type="xsd:token" use="required" />
803
+ <xsd:attribute name="F" type="xsd:string" />
804
+ <xsd:attribute name="IX" type="xsd:unsignedByte" />
805
+ <xsd:attribute name="S" type="xsd:unsignedByte" />
806
+ </xsd:complexType>
807
+ <xsd:complexType name="FunctionDef_Type">
808
+ <xsd:attribute name="N" type="xsd:string" use="required" />
809
+ </xsd:complexType>
810
+ <xsd:complexType name="SectionDef_Type">
811
+ <xsd:sequence>
812
+ <xsd:element name="CellDef" type="CellDef_Type" minOccurs="0"
813
+ maxOccurs="unbounded" />
814
+ <xsd:element name="RowDef" type="RowDef_Type" minOccurs="0" maxOccurs="1" />
815
+ </xsd:sequence>
816
+ <xsd:attribute name="N" type="xsd:string" use="required" />
817
+ <xsd:attribute name="T" type="xsd:string" />
818
+ <xsd:attribute name="S" type="xsd:unsignedByte" />
819
+ </xsd:complexType>
820
+ <xsd:complexType name="RowDef_Type">
821
+ <xsd:sequence>
822
+ <xsd:element name="CellDef" type="CellDef_Type" minOccurs="0"
823
+ maxOccurs="unbounded" />
824
+ </xsd:sequence>
825
+ </xsd:complexType>
826
+ <xsd:complexType name="Rel_Type">
827
+ <xsd:attribute ref="r:id" use="required"/>
828
+ </xsd:complexType>
829
+ </xsd:schema>