-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3370 from AndBible/nextcloud
Nextcloud implementation for Device Sync
- Loading branch information
Showing
20 changed files
with
718 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
### Nextcloud WebDAV SEARCH request (for debugging Nextcloud sync) | ||
SEARCH http://127.0.0.1:8081/remote.php/dav/ | ||
Authorization: Basic admin admin | ||
Content-Type: text/xml | ||
|
||
<d:searchrequest xmlns:d="DAV:" xmlns:oc="http://owncloud.org/ns"> | ||
<d:basicsearch> | ||
<d:select> | ||
<d:prop> | ||
<oc:fileid/> | ||
<d:displayname/> | ||
<oc:size/> | ||
<d:getcontenttype/> | ||
<d:getlastmodified/> | ||
</d:prop> | ||
</d:select> | ||
<d:from> | ||
<d:scope> | ||
<d:href>/files/admin/Photos</d:href> | ||
<d:depth>infinity</d:depth> | ||
</d:scope> | ||
</d:from> | ||
<d:where> | ||
<d:gt> | ||
<d:prop> | ||
<d:getlastmodified/> | ||
</d:prop> | ||
<d:literal>2025-01-10T17:00:00Z</d:literal> | ||
</d:gt> | ||
</d:where> | ||
<d:orderby> | ||
<d:order> | ||
<d:prop> | ||
<d:getlastmodified/> | ||
</d:prop> | ||
<d:ascending/> | ||
</d:order> | ||
</d:orderby> | ||
</d:basicsearch> | ||
</d:searchrequest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.