b302ec8381
TEXT defaults to a length of 255 which is going to fail in some cases as the timezone can be rather long.
This changes it back to a CLOB as it has been before as well: 8d8bb68b01
. I'm not super convinced that CLOB is the best choice here but at least it seems to work.
Fixes https://github.com/owncloud/core/issues/22876
30 lines
838 B
XML
30 lines
838 B
XML
<?xml version="1.0"?>
|
|
<info>
|
|
<id>dav</id>
|
|
<name>WebDAV</name>
|
|
<description>ownCloud WebDAV endpoint</description>
|
|
<licence>AGPL</licence>
|
|
<author>owncloud.org</author>
|
|
<version>0.2.1</version>
|
|
<default_enable/>
|
|
<types>
|
|
<filesystem/>
|
|
</types>
|
|
<remote>
|
|
<files>appinfo/v1/webdav.php</files>
|
|
<webdav>appinfo/v1/webdav.php</webdav>
|
|
<dav>appinfo/v2/remote.php</dav>
|
|
<!-- carddav endpoints as used before ownCloud 9.0 -->
|
|
<contacts>appinfo/v1/carddav.php</contacts>
|
|
<carddav>appinfo/v1/carddav.php</carddav>
|
|
<!-- caldav endpoints as used before ownCloud 9.0 -->
|
|
<calendar>appinfo/v1/caldav.php</calendar>
|
|
<caldav>appinfo/v1/caldav.php</caldav>
|
|
</remote>
|
|
<public>
|
|
<webdav>appinfo/v1/publicwebdav.php</webdav>
|
|
</public>
|
|
<dependencies>
|
|
<owncloud min-version="9.1" max-version="9.1" />
|
|
</dependencies>
|
|
</info>
|