You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When asking webdav for file information with PROPFIND is it possible to include information about existing lock in XML response?
My goal is to be able to display lock information in webdav clients (like WinSCP).
With some hacky changes in the code, I am somewhat able to add it there myself, but before going deeper into the code and changing things that I am not expert on. I want to ask if there is a reason why lock information is not included in PROPFIND response or if anybody was dealing with similar issue.
The text was updated successfully, but these errors were encountered:
Yes, it seems that the response to a PROPFIND request misses lockdiscovery field. I think that the part related to lockdiscovery shoul be copied from lock method to propfind in lib/dav4rack/controller.rb. But dav4rack is an external library copied from https://github.com/planio-gmbh/dav4rack an locally stored in this plugin. The right way would be to inherit Controller class in DMSF the same way as e.g. ResourceProxy class and write there a new implementation of propfind method. Try it and make a pull request here together with integration tests.
When asking webdav for file information with PROPFIND is it possible to include information about existing lock in XML response?
My goal is to be able to display lock information in webdav clients (like WinSCP).
With some hacky changes in the code, I am somewhat able to add it there myself, but before going deeper into the code and changing things that I am not expert on. I want to ask if there is a reason why lock information is not included in PROPFIND response or if anybody was dealing with similar issue.
The text was updated successfully, but these errors were encountered: