Browse Source
Add min-version/max-version to fulltextsearch provider
Signed-off-by: Julius Härtl <jus@bitgrid.net>
pull/14905/head
Julius Härtl
7 years ago
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
1 changed files with
10 additions and
1 deletions
-
resources/app-info.xsd
|
|
@ -659,11 +659,20 @@ |
|
|
|
</xs:sequence> |
|
|
|
</xs:complexType> |
|
|
|
|
|
|
|
<xs:complexType name="fulltextsearch-provider"> |
|
|
|
<xs:simpleContent> |
|
|
|
<xs:extension base="php-class"> |
|
|
|
<xs:attribute name="min-version" type="version" use="optional"/> |
|
|
|
<xs:attribute name="max-version" type="version" use="optional"/> |
|
|
|
</xs:extension> |
|
|
|
</xs:simpleContent> |
|
|
|
</xs:complexType> |
|
|
|
|
|
|
|
<xs:complexType name="fulltextsearch"> |
|
|
|
<xs:sequence> |
|
|
|
<xs:element name="platform" type="php-class" minOccurs="0" |
|
|
|
maxOccurs="unbounded"/> |
|
|
|
<xs:element name="provider" type="php-class" minOccurs="0" |
|
|
|
<xs:element name="provider" type="fulltextsearch-provider" minOccurs="0" |
|
|
|
maxOccurs="unbounded"/> |
|
|
|
</xs:sequence> |
|
|
|
</xs:complexType> |
|
|
|