@heylemon/lemonade 0.0.4 → 0.0.5

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 (105) hide show
  1. package/dist/build-info.json +3 -3
  2. package/dist/canvas-host/a2ui/.bundle.hash +1 -1
  3. package/package.json +1 -1
  4. package/skills/docx/SKILL.md +25 -30
  5. package/skills/docx/scripts/accept_changes.py +0 -17
  6. package/skills/docx/scripts/comment.py +10 -39
  7. package/skills/docx/scripts/office/helpers/merge_runs.py +1 -33
  8. package/skills/docx/scripts/office/helpers/simplify_redlines.py +0 -43
  9. package/skills/docx/scripts/office/pack.py +0 -30
  10. package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -1499
  11. package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -1085
  12. package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -3081
  13. package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -287
  14. package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -1676
  15. package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -174
  16. package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -582
  17. package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -4439
  18. package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -570
  19. package/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -116
  20. package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -42
  21. package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -50
  22. package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -49
  23. package/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -33
  24. package/skills/docx/scripts/office/soffice.py +0 -55
  25. package/skills/docx/scripts/office/unpack.py +5 -27
  26. package/skills/docx/scripts/office/validate.py +19 -14
  27. package/skills/docx/scripts/office/validators/base.py +48 -224
  28. package/skills/docx/scripts/office/validators/docx.py +44 -117
  29. package/skills/docx/scripts/office/validators/pptx.py +2 -42
  30. package/skills/docx/scripts/office/validators/redlining.py +3 -40
  31. package/skills/pdf/SKILL.md +22 -15
  32. package/skills/pdf/{FORMS.md → forms.md} +0 -14
  33. package/skills/pdf/scripts/check_bounding_boxes.py +0 -5
  34. package/skills/pdf/scripts/check_fillable_fields.py +0 -1
  35. package/skills/pdf/scripts/convert_pdf_to_images.py +0 -2
  36. package/skills/pdf/scripts/create_validation_image.py +0 -4
  37. package/skills/pdf/scripts/extract_form_field_info.py +1 -31
  38. package/skills/pdf/scripts/extract_form_structure.py +0 -9
  39. package/skills/pdf/scripts/fill_fillable_fields.py +0 -23
  40. package/skills/pdf/scripts/fill_pdf_form_with_annotations.py +3 -38
  41. package/skills/pptx/SKILL.md +2 -29
  42. package/skills/pptx/editing.md +2 -2
  43. package/skills/pptx/pptxgenjs.md +53 -8
  44. package/skills/pptx/scripts/add_slide.py +0 -30
  45. package/skills/pptx/scripts/clean.py +0 -23
  46. package/skills/pptx/scripts/office/helpers/merge_runs.py +1 -33
  47. package/skills/pptx/scripts/office/helpers/simplify_redlines.py +0 -43
  48. package/skills/pptx/scripts/office/pack.py +0 -30
  49. package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -1499
  50. package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -1085
  51. package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -3081
  52. package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -287
  53. package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -1676
  54. package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -174
  55. package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -582
  56. package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -4439
  57. package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -570
  58. package/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -116
  59. package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -42
  60. package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -50
  61. package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -49
  62. package/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -33
  63. package/skills/pptx/scripts/office/soffice.py +0 -55
  64. package/skills/pptx/scripts/office/unpack.py +5 -27
  65. package/skills/pptx/scripts/office/validate.py +19 -14
  66. package/skills/pptx/scripts/office/validators/base.py +48 -224
  67. package/skills/pptx/scripts/office/validators/docx.py +44 -117
  68. package/skills/pptx/scripts/office/validators/pptx.py +2 -42
  69. package/skills/pptx/scripts/office/validators/redlining.py +3 -40
  70. package/skills/pptx/scripts/thumbnail.py +0 -31
  71. package/skills/xlsx/SKILL.md +3 -26
  72. package/skills/xlsx/scripts/office/helpers/merge_runs.py +1 -33
  73. package/skills/xlsx/scripts/office/helpers/simplify_redlines.py +0 -43
  74. package/skills/xlsx/scripts/office/pack.py +0 -30
  75. package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -1499
  76. package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -1085
  77. package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -3081
  78. package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -287
  79. package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -1676
  80. package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -174
  81. package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -582
  82. package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -4439
  83. package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -570
  84. package/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -116
  85. package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -42
  86. package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -50
  87. package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -49
  88. package/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -33
  89. package/skills/xlsx/scripts/office/soffice.py +0 -55
  90. package/skills/xlsx/scripts/office/unpack.py +5 -27
  91. package/skills/xlsx/scripts/office/validate.py +19 -14
  92. package/skills/xlsx/scripts/office/validators/base.py +48 -224
  93. package/skills/xlsx/scripts/office/validators/docx.py +44 -117
  94. package/skills/xlsx/scripts/office/validators/pptx.py +2 -42
  95. package/skills/xlsx/scripts/office/validators/redlining.py +3 -40
  96. package/skills/xlsx/scripts/recalc.py +2 -26
  97. package/skills/docx/scripts/__init__.py +0 -1
  98. package/skills/docx/scripts/office/helpers/__init__.py +0 -0
  99. package/skills/docx/scripts/office/validators/__init__.py +0 -15
  100. package/skills/pptx/scripts/__init__.py +0 -0
  101. package/skills/pptx/scripts/office/helpers/__init__.py +0 -0
  102. package/skills/pptx/scripts/office/validators/__init__.py +0 -15
  103. package/skills/xlsx/scripts/office/helpers/__init__.py +0 -0
  104. package/skills/xlsx/scripts/office/validators/__init__.py +0 -15
  105. /package/skills/pdf/{REFERENCE.md → reference.md} +0 -0
@@ -1,116 +1,116 @@
1
- <?xml version='1.0'?>
2
- <xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace" xmlns:xs="http://www.w3.org/2001/XMLSchema" xml:lang="en">
3
-
4
- <xs:annotation>
5
- <xs:documentation>
6
- See http://www.w3.org/XML/1998/namespace.html and
7
- http://www.w3.org/TR/REC-xml for information about this namespace.
8
-
9
- This schema document describes the XML namespace, in a form
10
- suitable for import by other schema documents.
11
-
12
- Note that local names in this namespace are intended to be defined
13
- only by the World Wide Web Consortium or its subgroups. The
14
- following names are currently defined in this namespace and should
15
- not be used with conflicting semantics by any Working Group,
16
- specification, or document instance:
17
-
18
- base (as an attribute name): denotes an attribute whose value
19
- provides a URI to be used as the base for interpreting any
20
- relative URIs in the scope of the element on which it
21
- appears; its value is inherited. This name is reserved
22
- by virtue of its definition in the XML Base specification.
23
-
24
- lang (as an attribute name): denotes an attribute whose value
25
- is a language code for the natural language of the content of
26
- any element; its value is inherited. This name is reserved
27
- by virtue of its definition in the XML specification.
28
-
29
- space (as an attribute name): denotes an attribute whose
30
- value is a keyword indicating what whitespace processing
31
- discipline is intended for the content of the element; its
32
- value is inherited. This name is reserved by virtue of its
33
- definition in the XML specification.
34
-
35
- Father (in any context at all): denotes Jon Bosak, the chair of
36
- the original XML Working Group. This name is reserved by
37
- the following decision of the W3C XML Plenary and
38
- XML Coordination groups:
39
-
40
- In appreciation for his vision, leadership and dedication
41
- the W3C XML Plenary on this 10th day of February, 2000
42
- reserves for Jon Bosak in perpetuity the XML name
43
- xml:Father
44
- </xs:documentation>
45
- </xs:annotation>
46
-
47
- <xs:annotation>
48
- <xs:documentation>This schema defines attributes and an attribute group
49
- suitable for use by
50
- schemas wishing to allow xml:base, xml:lang or xml:space attributes
51
- on elements they define.
52
-
53
- To enable this, such a schema must import this schema
54
- for the XML namespace, e.g. as follows:
55
- &lt;schema . . .>
56
- . . .
57
- &lt;import namespace="http://www.w3.org/XML/1998/namespace"
58
- schemaLocation="http://www.w3.org/2001/03/xml.xsd"/>
59
-
60
- Subsequently, qualified reference to any of the attributes
61
- or the group defined below will have the desired effect, e.g.
62
-
63
- &lt;type . . .>
64
- . . .
65
- &lt;attributeGroup ref="xml:specialAttrs"/>
66
-
67
- will define a type which will schema-validate an instance
68
- element with any of those attributes</xs:documentation>
69
- </xs:annotation>
70
-
71
- <xs:annotation>
72
- <xs:documentation>In keeping with the XML Schema WG's standard versioning
73
- policy, this schema document will persist at
74
- http://www.w3.org/2001/03/xml.xsd.
75
- At the date of issue it can also be found at
76
- http://www.w3.org/2001/xml.xsd.
77
- The schema document at that URI may however change in the future,
78
- in order to remain compatible with the latest version of XML Schema
79
- itself. In other words, if the XML Schema namespace changes, the version
80
- of this document at
81
- http://www.w3.org/2001/xml.xsd will change
82
- accordingly; the version at
83
- http://www.w3.org/2001/03/xml.xsd will not change.
84
- </xs:documentation>
85
- </xs:annotation>
86
-
87
- <xs:attribute name="lang" type="xs:language">
88
- <xs:annotation>
89
- <xs:documentation>In due course, we should install the relevant ISO 2- and 3-letter
90
- codes as the enumerated possible values . . .</xs:documentation>
91
- </xs:annotation>
92
- </xs:attribute>
93
-
94
- <xs:attribute name="space" default="preserve">
95
- <xs:simpleType>
96
- <xs:restriction base="xs:NCName">
97
- <xs:enumeration value="default"/>
98
- <xs:enumeration value="preserve"/>
99
- </xs:restriction>
100
- </xs:simpleType>
101
- </xs:attribute>
102
-
103
- <xs:attribute name="base" type="xs:anyURI">
104
- <xs:annotation>
105
- <xs:documentation>See http://www.w3.org/TR/xmlbase/ for
106
- information about this attribute.</xs:documentation>
107
- </xs:annotation>
108
- </xs:attribute>
109
-
110
- <xs:attributeGroup name="specialAttrs">
111
- <xs:attribute ref="xml:base"/>
112
- <xs:attribute ref="xml:lang"/>
113
- <xs:attribute ref="xml:space"/>
114
- </xs:attributeGroup>
115
-
116
- </xs:schema>
1
+ <?xml version='1.0'?>
2
+ <xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace" xmlns:xs="http://www.w3.org/2001/XMLSchema" xml:lang="en">
3
+
4
+ <xs:annotation>
5
+ <xs:documentation>
6
+ See http://www.w3.org/XML/1998/namespace.html and
7
+ http://www.w3.org/TR/REC-xml for information about this namespace.
8
+
9
+ This schema document describes the XML namespace, in a form
10
+ suitable for import by other schema documents.
11
+
12
+ Note that local names in this namespace are intended to be defined
13
+ only by the World Wide Web Consortium or its subgroups. The
14
+ following names are currently defined in this namespace and should
15
+ not be used with conflicting semantics by any Working Group,
16
+ specification, or document instance:
17
+
18
+ base (as an attribute name): denotes an attribute whose value
19
+ provides a URI to be used as the base for interpreting any
20
+ relative URIs in the scope of the element on which it
21
+ appears; its value is inherited. This name is reserved
22
+ by virtue of its definition in the XML Base specification.
23
+
24
+ lang (as an attribute name): denotes an attribute whose value
25
+ is a language code for the natural language of the content of
26
+ any element; its value is inherited. This name is reserved
27
+ by virtue of its definition in the XML specification.
28
+
29
+ space (as an attribute name): denotes an attribute whose
30
+ value is a keyword indicating what whitespace processing
31
+ discipline is intended for the content of the element; its
32
+ value is inherited. This name is reserved by virtue of its
33
+ definition in the XML specification.
34
+
35
+ Father (in any context at all): denotes Jon Bosak, the chair of
36
+ the original XML Working Group. This name is reserved by
37
+ the following decision of the W3C XML Plenary and
38
+ XML Coordination groups:
39
+
40
+ In appreciation for his vision, leadership and dedication
41
+ the W3C XML Plenary on this 10th day of February, 2000
42
+ reserves for Jon Bosak in perpetuity the XML name
43
+ xml:Father
44
+ </xs:documentation>
45
+ </xs:annotation>
46
+
47
+ <xs:annotation>
48
+ <xs:documentation>This schema defines attributes and an attribute group
49
+ suitable for use by
50
+ schemas wishing to allow xml:base, xml:lang or xml:space attributes
51
+ on elements they define.
52
+
53
+ To enable this, such a schema must import this schema
54
+ for the XML namespace, e.g. as follows:
55
+ &lt;schema . . .>
56
+ . . .
57
+ &lt;import namespace="http://www.w3.org/XML/1998/namespace"
58
+ schemaLocation="http://www.w3.org/2001/03/xml.xsd"/>
59
+
60
+ Subsequently, qualified reference to any of the attributes
61
+ or the group defined below will have the desired effect, e.g.
62
+
63
+ &lt;type . . .>
64
+ . . .
65
+ &lt;attributeGroup ref="xml:specialAttrs"/>
66
+
67
+ will define a type which will schema-validate an instance
68
+ element with any of those attributes</xs:documentation>
69
+ </xs:annotation>
70
+
71
+ <xs:annotation>
72
+ <xs:documentation>In keeping with the XML Schema WG's standard versioning
73
+ policy, this schema document will persist at
74
+ http://www.w3.org/2001/03/xml.xsd.
75
+ At the date of issue it can also be found at
76
+ http://www.w3.org/2001/xml.xsd.
77
+ The schema document at that URI may however change in the future,
78
+ in order to remain compatible with the latest version of XML Schema
79
+ itself. In other words, if the XML Schema namespace changes, the version
80
+ of this document at
81
+ http://www.w3.org/2001/xml.xsd will change
82
+ accordingly; the version at
83
+ http://www.w3.org/2001/03/xml.xsd will not change.
84
+ </xs:documentation>
85
+ </xs:annotation>
86
+
87
+ <xs:attribute name="lang" type="xs:language">
88
+ <xs:annotation>
89
+ <xs:documentation>In due course, we should install the relevant ISO 2- and 3-letter
90
+ codes as the enumerated possible values . . .</xs:documentation>
91
+ </xs:annotation>
92
+ </xs:attribute>
93
+
94
+ <xs:attribute name="space" default="preserve">
95
+ <xs:simpleType>
96
+ <xs:restriction base="xs:NCName">
97
+ <xs:enumeration value="default"/>
98
+ <xs:enumeration value="preserve"/>
99
+ </xs:restriction>
100
+ </xs:simpleType>
101
+ </xs:attribute>
102
+
103
+ <xs:attribute name="base" type="xs:anyURI">
104
+ <xs:annotation>
105
+ <xs:documentation>See http://www.w3.org/TR/xmlbase/ for
106
+ information about this attribute.</xs:documentation>
107
+ </xs:annotation>
108
+ </xs:attribute>
109
+
110
+ <xs:attributeGroup name="specialAttrs">
111
+ <xs:attribute ref="xml:base"/>
112
+ <xs:attribute ref="xml:lang"/>
113
+ <xs:attribute ref="xml:space"/>
114
+ </xs:attributeGroup>
115
+
116
+ </xs:schema>
@@ -1,42 +1,42 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <xs:schema xmlns="http://schemas.openxmlformats.org/package/2006/content-types"
3
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
4
- targetNamespace="http://schemas.openxmlformats.org/package/2006/content-types"
5
- elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all">
6
-
7
- <xs:element name="Types" type="CT_Types"/>
8
- <xs:element name="Default" type="CT_Default"/>
9
- <xs:element name="Override" type="CT_Override"/>
10
-
11
- <xs:complexType name="CT_Types">
12
- <xs:choice minOccurs="0" maxOccurs="unbounded">
13
- <xs:element ref="Default"/>
14
- <xs:element ref="Override"/>
15
- </xs:choice>
16
- </xs:complexType>
17
-
18
- <xs:complexType name="CT_Default">
19
- <xs:attribute name="Extension" type="ST_Extension" use="required"/>
20
- <xs:attribute name="ContentType" type="ST_ContentType" use="required"/>
21
- </xs:complexType>
22
-
23
- <xs:complexType name="CT_Override">
24
- <xs:attribute name="ContentType" type="ST_ContentType" use="required"/>
25
- <xs:attribute name="PartName" type="xs:anyURI" use="required"/>
26
- </xs:complexType>
27
-
28
- <xs:simpleType name="ST_ContentType">
29
- <xs:restriction base="xs:string">
30
- <xs:pattern
31
- value="(((([\p{IsBasicLatin}-[\p{Cc}&#127;\(\)&lt;&gt;@,;:\\&quot;/\[\]\?=\{\}\s\t]])+))/((([\p{IsBasicLatin}-[\p{Cc}&#127;\(\)&lt;&gt;@,;:\\&quot;/\[\]\?=\{\}\s\t]])+))((\s+)*;(\s+)*(((([\p{IsBasicLatin}-[\p{Cc}&#127;\(\)&lt;&gt;@,;:\\&quot;/\[\]\?=\{\}\s\t]])+))=((([\p{IsBasicLatin}-[\p{Cc}&#127;\(\)&lt;&gt;@,;:\\&quot;/\[\]\?=\{\}\s\t]])+)|(&quot;(([\p{IsLatin-1Supplement}\p{IsBasicLatin}-[\p{Cc}&#127;&quot;\n\r]]|(\s+))|(\\[\p{IsBasicLatin}]))*&quot;))))*)"
32
- />
33
- </xs:restriction>
34
- </xs:simpleType>
35
-
36
- <xs:simpleType name="ST_Extension">
37
- <xs:restriction base="xs:string">
38
- <xs:pattern
39
- value="([!$&amp;'\(\)\*\+,:=]|(%[0-9a-fA-F][0-9a-fA-F])|[:@]|[a-zA-Z0-9\-_~])+"/>
40
- </xs:restriction>
41
- </xs:simpleType>
42
- </xs:schema>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <xs:schema xmlns="http://schemas.openxmlformats.org/package/2006/content-types"
3
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"
4
+ targetNamespace="http://schemas.openxmlformats.org/package/2006/content-types"
5
+ elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all">
6
+
7
+ <xs:element name="Types" type="CT_Types"/>
8
+ <xs:element name="Default" type="CT_Default"/>
9
+ <xs:element name="Override" type="CT_Override"/>
10
+
11
+ <xs:complexType name="CT_Types">
12
+ <xs:choice minOccurs="0" maxOccurs="unbounded">
13
+ <xs:element ref="Default"/>
14
+ <xs:element ref="Override"/>
15
+ </xs:choice>
16
+ </xs:complexType>
17
+
18
+ <xs:complexType name="CT_Default">
19
+ <xs:attribute name="Extension" type="ST_Extension" use="required"/>
20
+ <xs:attribute name="ContentType" type="ST_ContentType" use="required"/>
21
+ </xs:complexType>
22
+
23
+ <xs:complexType name="CT_Override">
24
+ <xs:attribute name="ContentType" type="ST_ContentType" use="required"/>
25
+ <xs:attribute name="PartName" type="xs:anyURI" use="required"/>
26
+ </xs:complexType>
27
+
28
+ <xs:simpleType name="ST_ContentType">
29
+ <xs:restriction base="xs:string">
30
+ <xs:pattern
31
+ value="(((([\p{IsBasicLatin}-[\p{Cc}&#127;\(\)&lt;&gt;@,;:\\&quot;/\[\]\?=\{\}\s\t]])+))/((([\p{IsBasicLatin}-[\p{Cc}&#127;\(\)&lt;&gt;@,;:\\&quot;/\[\]\?=\{\}\s\t]])+))((\s+)*;(\s+)*(((([\p{IsBasicLatin}-[\p{Cc}&#127;\(\)&lt;&gt;@,;:\\&quot;/\[\]\?=\{\}\s\t]])+))=((([\p{IsBasicLatin}-[\p{Cc}&#127;\(\)&lt;&gt;@,;:\\&quot;/\[\]\?=\{\}\s\t]])+)|(&quot;(([\p{IsLatin-1Supplement}\p{IsBasicLatin}-[\p{Cc}&#127;&quot;\n\r]]|(\s+))|(\\[\p{IsBasicLatin}]))*&quot;))))*)"
32
+ />
33
+ </xs:restriction>
34
+ </xs:simpleType>
35
+
36
+ <xs:simpleType name="ST_Extension">
37
+ <xs:restriction base="xs:string">
38
+ <xs:pattern
39
+ value="([!$&amp;'\(\)\*\+,:=]|(%[0-9a-fA-F][0-9a-fA-F])|[:@]|[a-zA-Z0-9\-_~])+"/>
40
+ </xs:restriction>
41
+ </xs:simpleType>
42
+ </xs:schema>
@@ -1,50 +1,50 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <xs:schema targetNamespace="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
3
- xmlns="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
4
- xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:dc="http://purl.org/dc/elements/1.1/"
5
- xmlns:dcterms="http://purl.org/dc/terms/" elementFormDefault="qualified" blockDefault="#all">
6
-
7
- <xs:import namespace="http://purl.org/dc/elements/1.1/"
8
- schemaLocation="http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd"/>
9
- <xs:import namespace="http://purl.org/dc/terms/"
10
- schemaLocation="http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcterms.xsd"/>
11
- <xs:import id="xml" namespace="http://www.w3.org/XML/1998/namespace"/>
12
-
13
- <xs:element name="coreProperties" type="CT_CoreProperties"/>
14
-
15
- <xs:complexType name="CT_CoreProperties">
16
- <xs:all>
17
- <xs:element name="category" minOccurs="0" maxOccurs="1" type="xs:string"/>
18
- <xs:element name="contentStatus" minOccurs="0" maxOccurs="1" type="xs:string"/>
19
- <xs:element ref="dcterms:created" minOccurs="0" maxOccurs="1"/>
20
- <xs:element ref="dc:creator" minOccurs="0" maxOccurs="1"/>
21
- <xs:element ref="dc:description" minOccurs="0" maxOccurs="1"/>
22
- <xs:element ref="dc:identifier" minOccurs="0" maxOccurs="1"/>
23
- <xs:element name="keywords" minOccurs="0" maxOccurs="1" type="CT_Keywords"/>
24
- <xs:element ref="dc:language" minOccurs="0" maxOccurs="1"/>
25
- <xs:element name="lastModifiedBy" minOccurs="0" maxOccurs="1" type="xs:string"/>
26
- <xs:element name="lastPrinted" minOccurs="0" maxOccurs="1" type="xs:dateTime"/>
27
- <xs:element ref="dcterms:modified" minOccurs="0" maxOccurs="1"/>
28
- <xs:element name="revision" minOccurs="0" maxOccurs="1" type="xs:string"/>
29
- <xs:element ref="dc:subject" minOccurs="0" maxOccurs="1"/>
30
- <xs:element ref="dc:title" minOccurs="0" maxOccurs="1"/>
31
- <xs:element name="version" minOccurs="0" maxOccurs="1" type="xs:string"/>
32
- </xs:all>
33
- </xs:complexType>
34
-
35
- <xs:complexType name="CT_Keywords" mixed="true">
36
- <xs:sequence>
37
- <xs:element name="value" minOccurs="0" maxOccurs="unbounded" type="CT_Keyword"/>
38
- </xs:sequence>
39
- <xs:attribute ref="xml:lang" use="optional"/>
40
- </xs:complexType>
41
-
42
- <xs:complexType name="CT_Keyword">
43
- <xs:simpleContent>
44
- <xs:extension base="xs:string">
45
- <xs:attribute ref="xml:lang" use="optional"/>
46
- </xs:extension>
47
- </xs:simpleContent>
48
- </xs:complexType>
49
-
50
- </xs:schema>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xs:schema targetNamespace="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
3
+ xmlns="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
4
+ xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:dcterms="http://purl.org/dc/terms/" elementFormDefault="qualified" blockDefault="#all">
6
+
7
+ <xs:import namespace="http://purl.org/dc/elements/1.1/"
8
+ schemaLocation="http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd"/>
9
+ <xs:import namespace="http://purl.org/dc/terms/"
10
+ schemaLocation="http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcterms.xsd"/>
11
+ <xs:import id="xml" namespace="http://www.w3.org/XML/1998/namespace"/>
12
+
13
+ <xs:element name="coreProperties" type="CT_CoreProperties"/>
14
+
15
+ <xs:complexType name="CT_CoreProperties">
16
+ <xs:all>
17
+ <xs:element name="category" minOccurs="0" maxOccurs="1" type="xs:string"/>
18
+ <xs:element name="contentStatus" minOccurs="0" maxOccurs="1" type="xs:string"/>
19
+ <xs:element ref="dcterms:created" minOccurs="0" maxOccurs="1"/>
20
+ <xs:element ref="dc:creator" minOccurs="0" maxOccurs="1"/>
21
+ <xs:element ref="dc:description" minOccurs="0" maxOccurs="1"/>
22
+ <xs:element ref="dc:identifier" minOccurs="0" maxOccurs="1"/>
23
+ <xs:element name="keywords" minOccurs="0" maxOccurs="1" type="CT_Keywords"/>
24
+ <xs:element ref="dc:language" minOccurs="0" maxOccurs="1"/>
25
+ <xs:element name="lastModifiedBy" minOccurs="0" maxOccurs="1" type="xs:string"/>
26
+ <xs:element name="lastPrinted" minOccurs="0" maxOccurs="1" type="xs:dateTime"/>
27
+ <xs:element ref="dcterms:modified" minOccurs="0" maxOccurs="1"/>
28
+ <xs:element name="revision" minOccurs="0" maxOccurs="1" type="xs:string"/>
29
+ <xs:element ref="dc:subject" minOccurs="0" maxOccurs="1"/>
30
+ <xs:element ref="dc:title" minOccurs="0" maxOccurs="1"/>
31
+ <xs:element name="version" minOccurs="0" maxOccurs="1" type="xs:string"/>
32
+ </xs:all>
33
+ </xs:complexType>
34
+
35
+ <xs:complexType name="CT_Keywords" mixed="true">
36
+ <xs:sequence>
37
+ <xs:element name="value" minOccurs="0" maxOccurs="unbounded" type="CT_Keyword"/>
38
+ </xs:sequence>
39
+ <xs:attribute ref="xml:lang" use="optional"/>
40
+ </xs:complexType>
41
+
42
+ <xs:complexType name="CT_Keyword">
43
+ <xs:simpleContent>
44
+ <xs:extension base="xs:string">
45
+ <xs:attribute ref="xml:lang" use="optional"/>
46
+ </xs:extension>
47
+ </xs:simpleContent>
48
+ </xs:complexType>
49
+
50
+ </xs:schema>
@@ -1,49 +1,49 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <xsd:schema xmlns="http://schemas.openxmlformats.org/package/2006/digital-signature"
3
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4
- targetNamespace="http://schemas.openxmlformats.org/package/2006/digital-signature"
5
- elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all">
6
-
7
- <xsd:element name="SignatureTime" type="CT_SignatureTime"/>
8
- <xsd:element name="RelationshipReference" type="CT_RelationshipReference"/>
9
- <xsd:element name="RelationshipsGroupReference" type="CT_RelationshipsGroupReference"/>
10
-
11
- <xsd:complexType name="CT_SignatureTime">
12
- <xsd:sequence>
13
- <xsd:element name="Format" type="ST_Format"/>
14
- <xsd:element name="Value" type="ST_Value"/>
15
- </xsd:sequence>
16
- </xsd:complexType>
17
-
18
- <xsd:complexType name="CT_RelationshipReference">
19
- <xsd:simpleContent>
20
- <xsd:extension base="xsd:string">
21
- <xsd:attribute name="SourceId" type="xsd:string" use="required"/>
22
- </xsd:extension>
23
- </xsd:simpleContent>
24
- </xsd:complexType>
25
-
26
- <xsd:complexType name="CT_RelationshipsGroupReference">
27
- <xsd:simpleContent>
28
- <xsd:extension base="xsd:string">
29
- <xsd:attribute name="SourceType" type="xsd:anyURI" use="required"/>
30
- </xsd:extension>
31
- </xsd:simpleContent>
32
- </xsd:complexType>
33
-
34
- <xsd:simpleType name="ST_Format">
35
- <xsd:restriction base="xsd:string">
36
- <xsd:pattern
37
- value="(YYYY)|(YYYY-MM)|(YYYY-MM-DD)|(YYYY-MM-DDThh:mmTZD)|(YYYY-MM-DDThh:mm:ssTZD)|(YYYY-MM-DDThh:mm:ss.sTZD)"
38
- />
39
- </xsd:restriction>
40
- </xsd:simpleType>
41
-
42
- <xsd:simpleType name="ST_Value">
43
- <xsd:restriction base="xsd:string">
44
- <xsd:pattern
45
- value="(([0-9][0-9][0-9][0-9]))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):(((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))\.[0-9])(((\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))"
46
- />
47
- </xsd:restriction>
48
- </xsd:simpleType>
49
- </xsd:schema>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xsd:schema xmlns="http://schemas.openxmlformats.org/package/2006/digital-signature"
3
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4
+ targetNamespace="http://schemas.openxmlformats.org/package/2006/digital-signature"
5
+ elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all">
6
+
7
+ <xsd:element name="SignatureTime" type="CT_SignatureTime"/>
8
+ <xsd:element name="RelationshipReference" type="CT_RelationshipReference"/>
9
+ <xsd:element name="RelationshipsGroupReference" type="CT_RelationshipsGroupReference"/>
10
+
11
+ <xsd:complexType name="CT_SignatureTime">
12
+ <xsd:sequence>
13
+ <xsd:element name="Format" type="ST_Format"/>
14
+ <xsd:element name="Value" type="ST_Value"/>
15
+ </xsd:sequence>
16
+ </xsd:complexType>
17
+
18
+ <xsd:complexType name="CT_RelationshipReference">
19
+ <xsd:simpleContent>
20
+ <xsd:extension base="xsd:string">
21
+ <xsd:attribute name="SourceId" type="xsd:string" use="required"/>
22
+ </xsd:extension>
23
+ </xsd:simpleContent>
24
+ </xsd:complexType>
25
+
26
+ <xsd:complexType name="CT_RelationshipsGroupReference">
27
+ <xsd:simpleContent>
28
+ <xsd:extension base="xsd:string">
29
+ <xsd:attribute name="SourceType" type="xsd:anyURI" use="required"/>
30
+ </xsd:extension>
31
+ </xsd:simpleContent>
32
+ </xsd:complexType>
33
+
34
+ <xsd:simpleType name="ST_Format">
35
+ <xsd:restriction base="xsd:string">
36
+ <xsd:pattern
37
+ value="(YYYY)|(YYYY-MM)|(YYYY-MM-DD)|(YYYY-MM-DDThh:mmTZD)|(YYYY-MM-DDThh:mm:ssTZD)|(YYYY-MM-DDThh:mm:ss.sTZD)"
38
+ />
39
+ </xsd:restriction>
40
+ </xsd:simpleType>
41
+
42
+ <xsd:simpleType name="ST_Value">
43
+ <xsd:restriction base="xsd:string">
44
+ <xsd:pattern
45
+ value="(([0-9][0-9][0-9][0-9]))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1))))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):(((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))\.[0-9])(((\+|-)((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))"
46
+ />
47
+ </xsd:restriction>
48
+ </xsd:simpleType>
49
+ </xsd:schema>
@@ -1,33 +1,33 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <xsd:schema xmlns="http://schemas.openxmlformats.org/package/2006/relationships"
3
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4
- targetNamespace="http://schemas.openxmlformats.org/package/2006/relationships"
5
- elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all">
6
-
7
- <xsd:element name="Relationships" type="CT_Relationships"/>
8
- <xsd:element name="Relationship" type="CT_Relationship"/>
9
-
10
- <xsd:complexType name="CT_Relationships">
11
- <xsd:sequence>
12
- <xsd:element ref="Relationship" minOccurs="0" maxOccurs="unbounded"/>
13
- </xsd:sequence>
14
- </xsd:complexType>
15
-
16
- <xsd:complexType name="CT_Relationship">
17
- <xsd:simpleContent>
18
- <xsd:extension base="xsd:string">
19
- <xsd:attribute name="TargetMode" type="ST_TargetMode" use="optional"/>
20
- <xsd:attribute name="Target" type="xsd:anyURI" use="required"/>
21
- <xsd:attribute name="Type" type="xsd:anyURI" use="required"/>
22
- <xsd:attribute name="Id" type="xsd:ID" use="required"/>
23
- </xsd:extension>
24
- </xsd:simpleContent>
25
- </xsd:complexType>
26
-
27
- <xsd:simpleType name="ST_TargetMode">
28
- <xsd:restriction base="xsd:string">
29
- <xsd:enumeration value="External"/>
30
- <xsd:enumeration value="Internal"/>
31
- </xsd:restriction>
32
- </xsd:simpleType>
33
- </xsd:schema>
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <xsd:schema xmlns="http://schemas.openxmlformats.org/package/2006/relationships"
3
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4
+ targetNamespace="http://schemas.openxmlformats.org/package/2006/relationships"
5
+ elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all">
6
+
7
+ <xsd:element name="Relationships" type="CT_Relationships"/>
8
+ <xsd:element name="Relationship" type="CT_Relationship"/>
9
+
10
+ <xsd:complexType name="CT_Relationships">
11
+ <xsd:sequence>
12
+ <xsd:element ref="Relationship" minOccurs="0" maxOccurs="unbounded"/>
13
+ </xsd:sequence>
14
+ </xsd:complexType>
15
+
16
+ <xsd:complexType name="CT_Relationship">
17
+ <xsd:simpleContent>
18
+ <xsd:extension base="xsd:string">
19
+ <xsd:attribute name="TargetMode" type="ST_TargetMode" use="optional"/>
20
+ <xsd:attribute name="Target" type="xsd:anyURI" use="required"/>
21
+ <xsd:attribute name="Type" type="xsd:anyURI" use="required"/>
22
+ <xsd:attribute name="Id" type="xsd:ID" use="required"/>
23
+ </xsd:extension>
24
+ </xsd:simpleContent>
25
+ </xsd:complexType>
26
+
27
+ <xsd:simpleType name="ST_TargetMode">
28
+ <xsd:restriction base="xsd:string">
29
+ <xsd:enumeration value="External"/>
30
+ <xsd:enumeration value="Internal"/>
31
+ </xsd:restriction>
32
+ </xsd:simpleType>
33
+ </xsd:schema>