File tree Expand file tree Collapse file tree 2 files changed +19
-16
lines changed
app/code/Magento/Config/etc Expand file tree Collapse file tree 2 files changed +19
-16
lines changed Original file line number Diff line number Diff line change 20
20
<xs : choice minOccurs =" 0" maxOccurs =" unbounded" >
21
21
<xs : element ref =" tab" />
22
22
<xs : element ref =" section" />
23
- <xs : element ref =" include" />
23
+ <xs : element name =" include" type = " includeType " />
24
24
</xs : choice >
25
25
</xs : sequence >
26
26
</xs : complexType >
65
65
<xs : attribute name =" extends" type =" xs:string" use =" optional" />
66
66
</xs : attributeGroup >
67
67
68
- <xs : element name =" include " >
68
+ <xs : complexType name =" includeType " >
69
69
<xs : annotation >
70
70
<xs : documentation >
71
71
Include Resource. Recursive complex type
72
72
</xs : documentation >
73
73
</xs : annotation >
74
-
75
- <xs : complexType >
76
- <xs : attribute name =" path" type =" typePath" use =" required" />
77
- </xs : complexType >
78
- </xs : element >
74
+ <xs : attribute name =" path" type =" typePath" use =" required" />
75
+ </xs : complexType >
79
76
80
77
<xs : element name =" tab" >
81
78
<xs : annotation >
108
105
<xs : element name =" header_css" type =" xs:string" />
109
106
<xs : element name =" resource" type =" typeAclResourceId" />
110
107
<xs : element ref =" group" />
111
- <xs : element ref =" include" />
108
+ <xs : element name =" include" type = " includeType " />
112
109
</xs : choice >
113
110
</xs : sequence >
114
111
150
147
<xs : element ref =" group" minOccurs =" 0" maxOccurs =" unbounded" />
151
148
<xs : element ref =" depends" />
152
149
<xs : element ref =" attribute" />
153
- <xs : element ref =" include" />
150
+ <xs : element name =" include" type = " includeType " />
154
151
</xs : choice >
155
152
</xs : sequence >
156
153
Original file line number Diff line number Diff line change 6
6
*/
7
7
-->
8
8
<xs : schema xmlns : xs =" http://www.w3.org/2001/XMLSchema" >
9
- <xs : redefine schemaLocation =" system_file.xsd" >
10
- <xs : complexType name =" configDeclaration" >
11
- <xs : sequence >
12
- <xs : any minOccurs =" 0" />
13
- </xs : sequence >
14
- </xs : complexType >
15
- </xs : redefine >
9
+ <xs : include schemaLocation =" system_file.xsd" />
10
+ <xs : element name =" include" type =" include" />
11
+ <xs : complexType name =" include" >
12
+ <xs : group minOccurs =" 1" maxOccurs =" unbounded" ref =" insertNodes" />
13
+ </xs : complexType >
14
+ <xs : group name =" insertNodes" >
15
+ <xs : choice >
16
+ <xs : element ref =" group" />
17
+ <xs : element ref =" tab" />
18
+ <xs : element ref =" section" />
19
+ <xs : element ref =" include" />
20
+ </xs : choice >
21
+ </xs : group >
16
22
</xs : schema >
You can’t perform that action at this time.
0 commit comments