summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
Commit message (Collapse)AuthorAgeFilesLines
* Yo-ho-oh - Murder all band 'o piratesThomas Müller2016-05-112-12/+0
|
* Set proper public webdav permissions when public upload disabledRoeland Jago Douma2016-03-171-0/+5
| | | | | | | | | | | | | Fixes #23325 It can happen that a user shares a folder with public upload. And some time later the admin disables public upload on the server. To make sure this is handled correctly we need to check the config value and reduce the permissions. Fix is kept small to be easy backportable.
* Fixed JS unit tests for fed owner display nameVincent Petry2015-12-151-0/+4
|
* show display name but internally use the user nameBjörn Schießle2015-12-156-6/+11
|
* don't allow to create a federated share if source and target server are the sameBjörn Schießle2015-12-151-0/+8
|
* Make sure all sharing tests extend the testcaseJoas Schilling2015-10-131-1/+5
|
* Merge pull request #17340 from owncloud/stable8-backport-16911Robin McCorkell2015-07-151-2/+4
|\ | | | | [stable8] Determine the size we need before asking for a thumbnail
| * floats are not welcome when setting the size of a previewOlivier Paroz2015-07-021-4/+4
| |
| * Determine the size we need before asking for a thumbnailOlivier Paroz2015-07-021-0/+2
| | | | | | | | We need to set the size of the preview using the devicePixelRatio and use that as arguments when using the preview endpoint or that endpoint will use the default 36x36 and thumbnails will be blurry on high DPI devices
* | Merge pull request #17271 from owncloud/stable8-share-etag-update-targetMorris Jobke2015-07-082-10/+38
|\ \ | | | | | | Stable8 share etag update target
| * | Unit test for etag update on custom share folderVincent Petry2015-07-011-8/+36
| | |
| * | take share target into account when updating recipient etagsRobin Appelman2015-07-011-2/+2
| |/
* | remove duplicate ID in HTML template for public sharesMorris Jobke2015-07-062-2/+2
| |
* | Bump versionsLukas Reschke2015-07-021-1/+1
|/
* Added unit test to verify link password removealRoeland Jago Douma2015-06-251-1/+23
|
* [sharing] handle shares of users that aren't available anymoreMorris Jobke2015-06-231-1/+7
| | | | | * properly handle the case where an abandoned share is left and simply skip it
* Throw nicer error message instead 500Lukas Reschke2015-06-171-1/+3
|
* Verify if path existsLukas Reschke2015-06-171-0/+5
| | | | We need to verify if the specified path exists to gracefully prevent errors.
* Disable video preview if previews are disabledMorris Jobke2015-06-103-1/+3
|
* OCS Fixes to allow setting of password without removing additional settingsRoeland Jago Douma2015-06-031-34/+9
| | | | | | - Added setPassword to share.php - Fixed OCS API call - Added unit tests
* Merge pull request #16496 from owncloud/stable8-share-readonlyfile-permissionsBjörn Schießle2015-05-261-2/+1
|\ | | | | [stable8] Do not automatically add "update" permission to shared mounts
| * Do not automatically add "update" permission to shared mountsVincent Petry2015-05-211-2/+1
| | | | | | | | | | | | | | | | | | In the past it seems the update permission was needed to be able to rename shared mounts, but it doesn't seem to be the case any more. Removing the "update" permission that used to be added automatically fixes the read-only permission check when trying to overwrite a read-only file over WebDAV.
* | Add tests for the correct share id on the call aswellJoas Schilling2015-05-041-3/+15
| |
* | Correctly send Federate-Cloud Share Feedback against the remote share IDJoas Schilling2015-05-041-6/+6
| |
* | check the called URLJoas Schilling2015-05-041-3/+13
| |
* | Correctly generate the feedback URL for remote shareJoas Schilling2015-05-041-1/+1
| | | | | | | | | | The trailing slash was added in c78e3c4a7fa1d2f474ab58551e67a50e093f6ed8 to correctly generate the encryption keys
* | Merge the two tests into oneJoas Schilling2015-05-042-154/+67
| |
* | *cough*Joas Schilling2015-05-042-5/+14
| |
* | Add a unit test for the naming conflict on the mountpoint nameJoas Schilling2015-05-042-6/+155
| |
* | Use insertIfNotExists() instead of manual logicJoas Schilling2015-05-041-24/+31
| |
* | Correctly get the unique mountpoint name when mounting the shareJoas Schilling2015-05-043-9/+36
| | | | | | | | | | | | | | Previously the mount name was checked for uniqueness prior to inserting the share. This caused problems, when two shares with the same name where done or folder, mount point, local share with the same name was done, between sending and accepting of the remote share
* | Do not make setupMounts() public just because of testingJoas Schilling2015-05-042-12/+12
| |
* | Add unit tests for external share manangerRobin Appelman2015-05-042-2/+144
| |
* | Fix external shares without password on oracleRobin Appelman2015-05-041-1/+1
|/
* Merge pull request #15502 from ↵Morris Jobke2015-04-281-13/+35
|\ | | | | | | | | owncloud/backport-14293-public-download-activities Correctly create activities for public downloads
| * Correctly create activities for public downloadsJoas Schilling2015-04-091-13/+35
| |
* | Merge pull request #15533 from owncloud/stable8-davclient-catchmoreexceptionsMorris Jobke2015-04-281-1/+2
|\ \ | | | | | | [stable8] Catch more exceptions when connecting to remote DAV server
| * | Catch more exceptions when connecting to remote DAV serverVincent Petry2015-04-101-1/+2
| |/ | | | | | | | | | | | | Added InvalidArgumentException to catch HTML parsing errors when XML was expected. Made convertSabreException more generic to be able to handle more exception cases.
* | Merge pull request #15672 from ↵Morris Jobke2015-04-281-3/+9
|\ \ | | | | | | | | | | | | owncloud/revert-15666-revert-15572-stable8-shares-properlyformatmountpoint [stable8] Properly add trailing slash to mount point
| * | Revert "Revert "[stable8] Properly add trailing slash to mount point""Morris Jobke2015-04-161-3/+9
| | |
* | | fix subfolder reshares over webdavRobin Appelman2015-04-241-2/+2
| | |
* | | remove unneeded readonlycacheRobin Appelman2015-04-241-27/+0
| | |
* | | resolve reshares in public webdavRobin Appelman2015-04-241-3/+4
| | |
* | | use the permissions mask cache wrapper instead of the read only cacheRobin Appelman2015-04-241-1/+4
|/ /
* | Revert "[stable8] Properly add trailing slash to mount point"Thomas Müller2015-04-161-9/+3
| |
* | Properly add trailing slash to mount pointVincent Petry2015-04-131-3/+9
|/ | | | | Fixes resolving mount points when shared mount point's target name has the same prefix as the source name
* Merge pull request #15246 from owncloud/stable8-share-partfilepermissionsMorris Jobke2015-03-272-20/+192
|\ | | | | [stable8] Fix share permission checks
| * Fix share permission related unit testsVincent Petry2015-03-261-9/+13
| |
| * Rename must be possible with update-only permissionVincent Petry2015-03-261-17/+23
| | | | | | | | and this as long as the rename is done within the same folder.
| * Fix shared storage permission checksVincent Petry2015-03-262-4/+166
| |