diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-27 11:26:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-27 11:26:18 +0200 |
commit | d3de490437df4c9093f32e97fc185066d64c0f46 (patch) | |
tree | 4007a7f4490ec76a8ced555e85cc9938ada79f4c /unotools | |
parent | 9c3f5324bf155b11dad2036a3556c8afafdb89a9 (diff) |
Add vnd.sun.star.webdavs URL scheme
...as https-equivalent to complement vnd.sun.star.webdav scheme. See the mail
thread starting at
<http://lists.freedesktop.org/archives/libreoffice/2015-August/069929.html>
"What autogen.sh for an alternative ContentProvider for dav:// scheme?" for why
it is considered beneficial to have the WebDAV UCP support---in addition to the
standard pair of http[s] schemes---a non-standard pair of
vnd.sun.star.webdav[s] schemes different from the "accidentally supported"
non-standard pair of dav[s].
Change-Id: I7032aa1ed599f735969cf0163cd9dc121a1fdcb3
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/ucbhelper/ucblockbytes.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unotools/source/ucbhelper/ucblockbytes.cxx b/unotools/source/ucbhelper/ucblockbytes.cxx index 09043b4fbf47..4b64723e02b2 100644 --- a/unotools/source/ucbhelper/ucblockbytes.cxx +++ b/unotools/source/ucbhelper/ucblockbytes.cxx @@ -744,6 +744,7 @@ static bool UCBOpenContentSync( if( ! aScheme.equalsIgnoreAsciiCase("http") && ! aScheme.equalsIgnoreAsciiCase("https") && ! aScheme.equalsIgnoreAsciiCase("vnd.sun.star.webdav") && + ! aScheme.equalsIgnoreAsciiCase("vnd.sun.star.webdavs") && ! aScheme.equalsIgnoreAsciiCase("ftp")) return _UCBOpenContentSync( xLockBytes,xContent,rArg,xSink,xInteract); |