summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/connector/sabre
Commit message (Collapse)AuthorAgeFilesLines
* Update author informationLukas Reschke2016-03-014-1/+4
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Save some calls to refreshInfo during uploadVincent Petry2016-03-011-4/+5
|
* Fix unit testsRoeland Jago Douma2016-03-011-5/+7
|
* Checksums on chunked filesRoeland Jago Douma2016-03-011-0/+8
| | | | | We should also store checksums on chunked files. We do not checksum individual chunks but only the final file.
* Remove checksum on upload of non checksumed fileRoeland Jago Douma2016-03-012-1/+8
| | | | | | | When we overwrite a checksumed file with a file without a checksum we should remove the checksum from the server. This is done by setting the column to empty.
* Merge pull request #22731 from owncloud/hide-nodes-from-listeningThomas Müller2016-03-011-0/+72
|\ | | | | Hides nodes from listing that the user has no access to
| * Hides nodes from listing that the user has no access toLukas Reschke2016-02-291-0/+72
| |
* | Return -3 for unlimited quotaVincent Petry2016-02-291-1/+6
|/ | | | | Returns -3 for unlimited quota in Webdav response. Also adjusted personal page to show unlimited quota when set.
* Make non-public-method protectedJoas Schilling2016-02-221-1/+1
|
* Solution for Proposal #19974Pierre Jochem2016-02-221-0/+3
| | | | Show username when writing into owncloud.log
* Only add checksum headers for filesRoeland Jago Douma2016-02-191-5/+7
| | | | | We can only add the checksum header for real ownCloud files (so we have a fileinfo object etc).
* Merge pull request #22424 from owncloud/add-generic-csrf-protection-to-webdavThomas Müller2016-02-191-20/+17
|\ | | | | Require CSRF token for non WebDAV authenticated requests
| * Require CSRF token for non WebDAV authenticated requestsLukas Reschke2016-02-181-20/+17
| |
* | Check the quota on the actual file's storage in dav quota pluginVincent Petry2016-02-171-5/+12
|/ | | | | | | | | Fix quota plugin to use the correct file name when chunking When chunking, the file name is the compound name, so need to convert it to the correct final file name before doing the free space check. This ensures that in the case of shared files, the correct storage is used for the quota check.
* fix getNodeForPath for non existing part filesRobin Appelman2016-02-111-1/+1
|
* Merge pull request #22290 from owncloud/dav-upload-scan-in-lockThomas Müller2016-02-111-5/+5
|\ | | | | scan the file in the write lock when uploading over dav
| * also fix lock order for chunked dav uploadsRobin Appelman2016-02-101-2/+2
| |
| * scan the file in the write lock when uploading over davRobin Appelman2016-02-101-3/+3
| |
* | Merge pull request #22263 from owncloud/fix-group-principalsThomas Müller2016-02-101-6/+12
|\ \ | |/ |/| Fix group principal
| * Fix group principalThomas Müller2016-02-101-6/+12
| |
* | Merge pull request #20928 from owncloud/publicdav-check-permissionsC. Montero Luque2016-02-091-1/+1
|\ \ | |/ |/| Check that the owner of a link share still has share permissions on access
| * Check that the owner of a link share still has share permissions on accessRobin Appelman2016-02-091-1/+1
| |
* | Stop when a mid result is emptyJoas Schilling2016-02-091-2/+8
| |
* | Fix system tag filter AND conditionVincent Petry2016-02-091-0/+5
|/ | | | | If one of the results is empty, no need to do array_intersect and return an empty result directly.
* Merge pull request #22199 from owncloud/multiple_checksumsThomas Müller2016-02-092-8/+75
|\ | | | | Make checksum propfind future proof
| * For possible future usage allow multiple checksumsRoeland Jago Douma2016-02-082-8/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of returning <oc:checksum>TYPE:CHECKSUM</oc:checksum> Return <oc:checksums> <oc:checksum>TYPE:CHECKSUM</oc:checksum> </oc:checksums> This will allow us to expand in the future to multiple checksums. Without doing just string concatenation. And even for a single checksum it is now correct.
* | Add REPORT on files endpoint for filteringVincent Petry2016-02-082-1/+331
| | | | | | | | For now only supports filtering by system tags
* | Remove calendar-proxy support - did this ever work?Thomas Müller2016-02-081-2/+0
| |
* | Adding pre oc 9.0 CardDAV endpoint for migration of old clientsThomas Müller2016-02-082-21/+30
|/
* Add store/retrieve checksumsRoeland Jago Douma2016-02-032-2/+37
| | | | | | | * Add extra db column to filecache * Bump version * Update filecache code to actually handle checksum * Webdav code to store/retrieve checksums
* url encode idArthur Schiwon2016-01-291-1/+1
|
* Comments WebDAV adjustementsArthur Schiwon2016-01-292-0/+131
|
* Add fake locking support for OneNote 2013Lukas Reschke2016-01-261-3/+6
| | | | Fixes https://github.com/owncloud/core/issues/21925
* Merge pull request #21853 from owncloud/tags-fixpropertymaThomas Müller2016-01-262-4/+2
|\ | | | | Fix oc:tags tag list serializer
| * Fix TagList serializerVincent Petry2016-01-221-3/+1
| |
| * Fix oc:tags tag list serializerVincent Petry2016-01-221-1/+1
| | | | | | | | Fixes propfind/proppatch of oc:tags
* | Merge pull request #21401 from owncloud/dav-cache-getchildrenThomas Müller2016-01-253-7/+32
|\ \ | |/ |/| Put nodes from Directory->getChildren in the ObjectTree cache
| * Put nodes from Directory->getChildren in the ObjectTree cacheRobin Appelman2016-01-173-7/+32
| |
* | Fix unit test - optimize codeThomas Müller2016-01-181-3/+3
| |
* | Show group shared addressbooksThomas Müller2016-01-181-13/+18
|/
* Merge pull request #20927 from owncloud/handle-return-code-on-webdav-putThomas Müller2016-01-151-1/+9
|\ | | | | Handle return code of streamCopy in WebDAV put
| * Handle return code of streamCopy in WebDAV putMorris Jobke2016-01-111-1/+9
| | | | | | | | * throw a different exception if streamCopy failed
* | add scanner interfaceRobin Appelman2016-01-141-2/+1
| |
* | Remove the listener pluginJoas Schilling2016-01-132-77/+0
| |
* | Happy new year!Thomas Müller2016-01-1227-34/+51
|/
* Merge pull request #21491 from owncloud/webdav_auth_no_basic_authThomas Müller2016-01-081-1/+4
|\ | | | | Also allow 'only cookie' auth to webdav
| * Allow only cookie auth to webdavRoeland Jago Douma2016-01-071-1/+4
| |
* | Adding group principals to new dav endpointThomas Müller2016-01-081-13/+11
|/
* Removed deprecated OC_Helper::getSecureMimeTypeRoeland Jago Douma2015-12-181-1/+1
|
* Use name of ICollection for exception messageMorris Jobke2015-12-161-1/+1
| | | | * fixes #21230