[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2023-11-21 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=365356

Bug Janitor Service  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|REPORTED|ASSIGNED

--- Comment #9 from Bug Janitor Service  ---
A possibly relevant merge request was started @
https://invent.kde.org/frameworks/kwidgetsaddons/-/merge_requests/225

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2023-03-26 Thread Sergey Ponomarev
https://bugs.kde.org/show_bug.cgi?id=365356

--- Comment #8 from Sergey Ponomarev  ---
Looks like the Dolphin file managers doesn't declare any protocol handlers at
all so I created a ticket https://bugs.kde.org/show_bug.cgi?id=467809

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2023-03-26 Thread Sergey Ponomarev
https://bugs.kde.org/show_bug.cgi?id=365356

--- Comment #7 from Sergey Ponomarev  ---
Also into a *.desktop file on a file manager must be added the line:

MimeType=x-scheme-handler/dav;x-scheme-handler/davs;

This will allow to find the program when clicking on the dav://example.com/ url

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2023-03-26 Thread Sergey Ponomarev
https://bugs.kde.org/show_bug.cgi?id=365356

Sergey Ponomarev  changed:

   What|Removed |Added

 CC||stok...@gmail.com

--- Comment #6 from Sergey Ponomarev  ---
Nautilus issues (GVFS) https://gitlab.gnome.org/GNOME/gvfs/-/issues/669

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2022-03-14 Thread alex
https://bugs.kde.org/show_bug.cgi?id=365356

alex  changed:

   What|Removed |Added

 CC||a...@ableph.net

--- Comment #5 from alex  ---
https://invent.kde.org/frameworks/kio/-/merge_requests/12

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2020-05-22 Thread Ben Gruber
https://bugs.kde.org/show_bug.cgi?id=365356

Ben Gruber  changed:

   What|Removed |Added

   Assignee|fa...@kde.org   |bengruber...@gmail.com
 CC||bengruber...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2020-04-15 Thread 林博仁
https://bugs.kde.org/show_bug.cgi?id=365356

林博仁(Buo-ren, Lin)  changed:

   What|Removed |Added

 CC||buo.ren@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2018-08-24 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=365356

Nate Graham  changed:

   What|Removed |Added

  Component|general |WebDAV

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2018-08-22 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=365356

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org
   Keywords||junior-jobs

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2017-08-11 Thread KDE Neon user
https://bugs.kde.org/show_bug.cgi?id=365356

--- Comment #4 from KDE Neon user  ---
>From the Github issue
(https://github.com/cryptomator/cryptomator/issues/307#issuecomment-321766545):

"On your KDE bug report, you could add a note, that one can test WebDAV clients
against http://webdavserver.com/. That site creates temporary dav resources to
demo their server library. (Cause David Faure wrote, he doesn't have a WebDAV
account anywhere)"

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2016-07-14 Thread anewuser via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365356

--- Comment #3 from anewuser  ---
I installed Nautilus and verified that it doesn't support the KIO syntax
either. Here's the report: https://bugzilla.gnome.org/show_bug.cgi?id=768814

Cryptomator doesn't require you to register an account. It's an offline tool
that creates encrypted directories/vaults and uses webDAV locally as a bridge
to let you explore those vaults as normal folders.

-- 
You are receiving this mail because:
You are watching all bug changes.


[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2016-07-14 Thread David Faure via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365356

--- Comment #2 from David Faure  ---
Did you also report a Nautilus bug saying that they should handle webdav://,
KIO syntax? :-)

In any case Elvis is right, if we are to support dav:/ then it's not just
dolphin that should support it, e.g. kioclient should support it too, this has
to happen one layer below, in kio. Not sure how though.

1) Supporting dav and webdav equally (without redirect) is feasible, but with
some mess in kio_http's code
 (e.g. there are quite some if (m_protocol == "webdav" || m_protocol ==
"webdavs") around, although this could certainly be factorized)

2) The problem is we don't really have the concept of "aliases" for protocols,
apart from the KProtocolManager::slaveProtocol mechanism, not sure it still
works (FTP handled by HTTP proxies is a rather old concept afaik, so this has
probably been untested for a while).

3) One could write a kio_dav ioslave that redirects stat(), listDir(), get()
and put() to webdav (there's probably more?).
Ah, either with actual redirection, or using ForwardingSlaveBase (i.e. internal
delegation).

In any case I don't have enough motivation (nor even a webdav account) to do
this myself, but I'll be happy to review a patch;-)

-- 
You are receiving this mail because:
You are watching all bug changes.


[frameworks-kio] [Bug 365356] KIO supports WebDAV, but doesn't accept the dav:// URL scheme (Nautilus syntax)

2016-07-12 Thread Elvis Angelaccio via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365356

Elvis Angelaccio  changed:

   What|Removed |Added

Summary|Dolphin supports WebDAV,|KIO supports WebDAV, but
   |but doesn't accept the  |doesn't accept the dav://
   |dav:// URL scheme (Nautilus |URL scheme (Nautilus
   |syntax) |syntax)

-- 
You are receiving this mail because:
You are watching all bug changes.