|
12 | 12 | <xsd:element name="chain" type="chain" minOccurs="0" />
|
13 | 13 | <xsd:element name="dynamic" type="dynamic" minOccurs="0" />
|
14 | 14 | </xsd:sequence>
|
15 |
| - |
16 |
| - <xsd:attribute name="use-sonata-admin" type="use_sonata_admin" /> |
17 |
| - <xsd:attribute name="content-basepath" type="xsd:string" /> |
18 |
| - <xsd:attribute name="route-basepath" type="xsd:string" /> |
19 | 15 | </xsd:complexType>
|
20 | 16 |
|
21 | 17 | <xsd:complexType name="chain">
|
22 | 18 | <xsd:sequence>
|
23 | 19 | <xsd:element name="router-by-id" type="by_id" maxOccurs="unbounded" />
|
24 | 20 | </xsd:sequence>
|
25 | 21 |
|
26 |
| - <xsd:attribute name="replace-symfony-router" type="boolean" /> |
| 22 | + <xsd:attribute name="replace-symfony-router" type="xsd:boolean" /> |
27 | 23 | </xsd:complexType>
|
28 | 24 |
|
29 | 25 | <xsd:complexType name="dynamic">
|
30 | 26 | <xsd:sequence>
|
31 | 27 | <xsd:element name="controller-by-type" type="controller_by_type" minOccurs="0" maxOccurs="unbounded" />
|
32 | 28 | <xsd:element name="controller-by-class" type="controller_by_class" minOccurs="0" maxOccurs="unbounded" />
|
33 | 29 | <xsd:element name="template-by-class" type="template_by_class" minOccurs="0" maxOccurs="unbounded" />
|
34 |
| - |
| 30 | + <xsd:element name="persistence" type="persistence" minOccurs="0"/> |
35 | 31 | <xsd:element name="route-filter-by-id" type="by_id" minOccurs="0" maxOccurs="unbounded" />
|
36 | 32 | <xsd:element name="locale" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
|
37 | 33 | </xsd:sequence>
|
38 | 34 |
|
39 |
| - <xsd:attribute name="enabled" type="boolean" /> |
| 35 | + <xsd:attribute name="enabled" type="xsd:boolean" /> |
| 36 | + <xsd:attribute name="route-collection-limit" type="xsd:integer" /> |
40 | 37 | <xsd:attribute name="generic-controller" type="xsd:string" />
|
41 |
| - <xsd:attribute name="manager-registery" type="xsd:string" /> |
42 |
| - <xsd:attribute name="manager-name" type="xsd:string" /> |
| 38 | + <xsd:attribute name="default-controller" type="xsd:string" /> |
43 | 39 | <xsd:attribute name="uri-filter-regexp" type="xsd:string" />
|
44 | 40 | <xsd:attribute name="route-provider-service-id" type="xsd:string" />
|
45 | 41 | <xsd:attribute name="content-repository-service-id" type="xsd:string" />
|
46 |
| - <xsd:attribute name="routing-repositoryroot" type="xsd:string" /> |
47 | 42 | </xsd:complexType>
|
48 | 43 |
|
49 | 44 | <xsd:complexType name="controller_by_type">
|
|
65 | 60 | <xsd:complexType name="template_by_class">
|
66 | 61 | <xsd:simpleContent>
|
67 | 62 | <xsd:extension base="xsd:string">
|
68 |
| - <xsd:attribute name="alias" type="xsd:string" /> |
| 63 | + <xsd:attribute name="class" type="xsd:string" /> |
69 | 64 | </xsd:extension>
|
70 | 65 | </xsd:simpleContent>
|
71 | 66 | </xsd:complexType>
|
72 | 67 |
|
| 68 | + <xsd:complexType name="persistence"> |
| 69 | + <xsd:sequence> |
| 70 | + <xsd:element name="phpcr" type="phpcr" minOccurs="0"/> |
| 71 | + <xsd:element name="orm" type="orm" minOccurs="0"/> |
| 72 | + </xsd:sequence> |
| 73 | + </xsd:complexType> |
| 74 | + |
| 75 | + <xsd:complexType name="phpcr"> |
| 76 | + <xsd:attribute name="enabled" type="xsd:boolean" /> |
| 77 | + <xsd:attribute name="manager-name" type="xsd:string" /> |
| 78 | + <xsd:attribute name="route-basepath" type="xsd:string" /> |
| 79 | + <xsd:attribute name="content-basepath" type="xsd:string" /> |
| 80 | + <xsd:attribute name="use-sonata-admin" type="enable_auto" /> |
| 81 | + </xsd:complexType> |
| 82 | + |
| 83 | + <xsd:complexType name="orm"> |
| 84 | + <xsd:attribute name="enabled" type="xsd:boolean" /> |
| 85 | + <xsd:attribute name="manager-name" type="xsd:string" /> |
| 86 | + </xsd:complexType> |
| 87 | + |
73 | 88 | <xsd:complexType name="by_id">
|
74 | 89 | <xsd:simpleContent>
|
75 | 90 | <xsd:extension base="xsd:string">
|
|
78 | 93 | </xsd:simpleContent>
|
79 | 94 | </xsd:complexType>
|
80 | 95 |
|
81 |
| - <xsd:simpleType name="boolean"> |
82 |
| - <xsd:restriction base="xsd:string"> |
83 |
| - <xsd:enumeration value="true" /> |
84 |
| - <xsd:enumeration value="false" /> |
85 |
| - </xsd:restriction> |
86 |
| - </xsd:simpleType> |
87 |
| - |
88 |
| - <xsd:simpleType name="use_sonata_admin"> |
| 96 | + <xsd:simpleType name="enable_auto"> |
89 | 97 | <xsd:restriction base="xsd:string">
|
90 | 98 | <xsd:enumeration value="true" />
|
91 | 99 | <xsd:enumeration value="false" />
|
|
0 commit comments