-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rewire dav files endpoint to home (better approach) #1125
Merged
ishank011
merged 2 commits into
cs3org:master
from
PVince81:alt-rewire-dav-files-to-home
Aug 26, 2020
+38
−18
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,8 @@ | ||
Enhancement: Rewire dav files to the home storage | ||
|
||
If the user specified in the dav files URL matches the current one, | ||
rewire it to use the webDavHandler which is wired to the home storage. | ||
|
||
This fixes path mapping issues. | ||
|
||
https://github.com/cs3org/reva/pull/1125 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -476,20 +476,16 @@ apiTrashbin/trashbinDelete.feature:37 | |
apiTrashbin/trashbinDelete.feature:50 | ||
apiTrashbin/trashbinDelete.feature:67 | ||
# | ||
apiTrashbin/trashbinFilesFolders.feature:21 | ||
apiTrashbin/trashbinFilesFolders.feature:32 | ||
apiTrashbin/trashbinFilesFolders.feature:44 | ||
apiTrashbin/trashbinFilesFolders.feature:45 | ||
apiTrashbin/trashbinFilesFolders.feature:60 | ||
apiTrashbin/trashbinFilesFolders.feature:61 | ||
apiTrashbin/trashbinFilesFolders.feature:75 | ||
apiTrashbin/trashbinFilesFolders.feature:89 | ||
apiTrashbin/trashbinFilesFolders.feature:90 | ||
apiTrashbin/trashbinFilesFolders.feature:104 | ||
apiTrashbin/trashbinFilesFolders.feature:105 | ||
apiTrashbin/trashbinFilesFolders.feature:136 | ||
apiTrashbin/trashbinFilesFolders.feature:137 | ||
apiTrashbin/trashbinFilesFolders.feature:155 | ||
apiTrashbin/trashbinFilesFolders.feature:185 | ||
apiTrashbin/trashbinFilesFolders.feature:186 | ||
apiTrashbin/trashbinFilesFolders.feature:203 | ||
|
@@ -500,13 +496,6 @@ apiTrashbin/trashbinFilesFolders.feature:241 | |
apiTrashbin/trashbinFilesFolders.feature:242 | ||
apiTrashbin/trashbinFilesFolders.feature:255 | ||
apiTrashbin/trashbinFilesFolders.feature:256 | ||
apiTrashbin/trashbinFilesFolders.feature:273 | ||
apiTrashbin/trashbinFilesFolders.feature:274 | ||
apiTrashbin/trashbinFilesFolders.feature:275 | ||
apiTrashbin/trashbinFilesFolders.feature:276 | ||
apiTrashbin/trashbinFilesFolders.feature:277 | ||
apiTrashbin/trashbinFilesFolders.feature:278 | ||
apiTrashbin/trashbinFilesFolders.feature:289 | ||
# | ||
apiTrashbin/trashbinRestore.feature:31 | ||
apiTrashbin/trashbinRestore.feature:32 | ||
|
@@ -534,8 +523,6 @@ apiTrashbin/trashbinRestore.feature:206 | |
apiTrashbin/trashbinRestore.feature:207 | ||
apiTrashbin/trashbinRestore.feature:279 | ||
apiTrashbin/trashbinRestore.feature:280 | ||
apiTrashbin/trashbinRestore.feature:295 | ||
apiTrashbin/trashbinRestore.feature:310 | ||
Comment on lines
-537
to
-538
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are both Examples for "new" dav-path. The example for "old" dav-path at 294 and 309 were already passing. |
||
apiTrashbin/trashbinRestore.feature:323 | ||
apiTrashbin/trashbinRestore.feature:324 | ||
apiTrashbin/trashbinRestore.feature:325 | ||
|
@@ -999,4 +986,4 @@ apiWebdavUpload2/uploadFileUsingOldChunking.feature:97 | |
apiWebdavUpload2/uploadFileUsingOldChunking.feature:98 | ||
apiWebdavUpload2/uploadFileUsingOldChunking.feature:99 | ||
apiWebdavUpload2/uploadFileUsingOldChunking.feature:100 | ||
apiWebdavUpload2/uploadFileUsingOldChunking.feature:101 | ||
apiWebdavUpload2/uploadFileUsingOldChunking.feature:101 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are Scenario Outline Examples for the "new" dav-path. The Examples for the "old" dav-path were already passing. So the "rewiring" in this PR has fixed some issue with the "new" dav-path. That is "a good thing" (tm)