diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-11-02 09:07:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-02 09:07:08 +0100 |
commit | d836b853ea5b66c0094f3cad7d8665c446cbeb29 (patch) | |
tree | eaa364850e8e0570ed9b31534f1d0a5dbb63932e | |
parent | cd729b696b866e123fcb4a60d74458f1c8d9b0f8 (diff) | |
parent | 1169d2b102aa0f70d7832514d18aa01599dab931 (diff) | |
download | nextcloud-server-d836b853ea5b66c0094f3cad7d8665c446cbeb29.tar.gz nextcloud-server-d836b853ea5b66c0094f3cad7d8665c446cbeb29.zip |
Merge pull request #12195 from nextcloud/fulltextsearch-info-xsd
add the tag fulltextsearch
-rw-r--r-- | resources/app-info-shipped.xsd | 11 | ||||
-rw-r--r-- | resources/app-info.xsd | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/resources/app-info-shipped.xsd b/resources/app-info-shipped.xsd index ae3aaee0996..f717ce0bc51 100644 --- a/resources/app-info-shipped.xsd +++ b/resources/app-info-shipped.xsd @@ -55,6 +55,8 @@ maxOccurs="1"/> <xs:element name="dashboard" type="dashboard" minOccurs="0" maxOccurs="1"/> + <xs:element name="fulltextsearch" type="fulltextsearch" + minOccurs="0" maxOccurs="1"/> <xs:element name="navigations" type="navigations" minOccurs="0" maxOccurs="1"/> <xs:element name="contactsmenu" type="contactsmenu" minOccurs="0" @@ -664,6 +666,15 @@ </xs:sequence> </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" + maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + <xs:simpleType name="php-class"> <xs:restriction base="xs:string"> <xs:pattern diff --git a/resources/app-info.xsd b/resources/app-info.xsd index 287ed6b9913..e149339efec 100644 --- a/resources/app-info.xsd +++ b/resources/app-info.xsd @@ -53,6 +53,8 @@ maxOccurs="1"/> <xs:element name="dashboard" type="dashboard" minOccurs="0" maxOccurs="1"/> + <xs:element name="fulltextsearch" type="fulltextsearch" + minOccurs="0" maxOccurs="1"/> <xs:element name="navigations" type="navigations" minOccurs="0" maxOccurs="1"/> <xs:element name="contactsmenu" type="contactsmenu" minOccurs="0" @@ -657,6 +659,15 @@ </xs:sequence> </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" + maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + <xs:complexType name="trash"> <xs:sequence> <xs:element name="backend" type="trash-backend" minOccurs="1" |