summaryrefslogtreecommitdiffstats
path: root/apps/dav
Commit message (Collapse)AuthorAgeFilesLines
* Introduce \OCP\IUser::getEMailAddress()Thomas Müller2015-11-252-39/+21
|
* Users are available under it's own principal resource named ↵Thomas Müller2015-11-258-65/+82
| | | | 'principals/users' this will allow us to introduce e.g. groups as principals (one day) and system specific principals (needed for federation)
* CardDavBackEnd requires principalBackend on ctorThomas Müller2015-11-252-11/+24
|
* Output owncloud.log to the consoleThomas Müller2015-11-251-0/+4
|
* Adding sync support - including dav testsThomas Müller2015-11-254-2/+1608
|
* Adjust sabre changes in coreThomas Müller2015-11-2410-155/+192
|
* Do not authenticate over ajaxVincent Petry2015-11-232-2/+41
| | | | | | | This makes sure that whenever a Webdav call is done through Ajax, if the session has expired, it will not send back a challenge but a simple 401 response. Without this fix, the default code would send back a challenge and trigger the browser's basic auth dialog.
* Merge pull request #16902 from owncloud/jsocclientThomas Müller2015-11-231-0/+27
|\ | | | | Web UI uses Webdav instead of ajax/* calls
| * Send download token as cookie to tell the UI that it startedVincent Petry2015-11-221-0/+27
| | | | | | | | | | | | This used to be done in the ajax download code. Now that single file downloads are going through Webdav, the token handling needs to be done here too.
* | Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-11-2011-20/+30
|/ | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* Adding an existing sharee is idempotentThomas Müller2015-11-192-10/+30
|
* Implement CSRF protectionThomas Müller2015-11-193-1/+26
|
* Addressbook sharing added based on a simplified approach which is based on ↵Thomas Müller2015-11-1910-5/+605
| | | | calendar sharing standard
* Merge pull request #20537 from ↵Thomas Müller2015-11-193-15/+10
|\ | | | | | | | | owncloud/add-internal-locking-to-new-webdav-endpoint Add internal locking plugin
| * Add internal locking plugin - fixes #20502Thomas Müller2015-11-163-15/+10
| |
* | Merge pull request #20371 from owncloud/add-caldav-2Thomas Müller2015-11-188-7/+1988
|\ \ | | | | | | Introducing CalDAV into core
| * | Use uri as displaynameThomas Müller2015-11-162-20/+13
| | |
| * | components was not written to the databaseThomas Müller2015-11-162-0/+5
| | |
| * | Add occ command to create a new calendarThomas Müller2015-11-162-0/+54
| | |
| * | Add scheduling backendThomas Müller2015-11-162-4/+68
| | |
| * | Fix OracleThomas Müller2015-11-161-1/+1
| | |
| * | Introducing CalDAV into coreThomas Müller2015-11-166-7/+1872
| | |
* | | Add internal fileid to webdav responseVincent Petry2015-11-183-3/+22
| | | | | | | | | | | | | | | | | | | | | | | | Introduce a new property "oc:fileid" to return the internal file id. This is because the original "oc:id" property is a compound and it is not possible to extract the real id without knowing the instance id. The instance id is not available to external clients.
* | | Merge pull request #20494 from owncloud/storage-forbidden-exceptionThomas Müller2015-11-188-5/+206
|\ \ \ | | | | | | | | Allow storage wrappers to through a forbidden exception with retry information for clients
| * | | Allow storage wrappers to through a forbidden exception with retry informationJoas Schilling2015-11-178-5/+206
| | |/ | |/|
* | | Merge pull request #20188 from owncloud/webdav-exposeshareownerThomas Müller2015-11-173-0/+68
|\ \ \ | |/ / |/| | Expose share owner id and display name via files webdav
| * | Add "owner-id" and "owner-display-name" Webdav propertiesVincent Petry2015-11-163-0/+68
| |/
* / Add fake locker plugin for WebDAVFSLukas Reschke2015-11-137-5/+386
|/ | | | WebDAVFS as used by Finder requires a Class 2 compatible WebDAV server. This change introduces a fake locking provider which will simply advertise Locking support when a request originates from WebDAVFS. It will also return successful LOCK and UNLOCK responses.
* Merge pull request #20195 from owncloud/add-caldavtesterThomas Müller2015-11-104-0/+1075
|\ | | | | Add CalDAVTester to travis
| * Add CalDAVTester to travisThomas Müller2015-11-104-0/+1075
| |
* | Merge pull request #20431 from owncloud/carddav-enforce-displaynameThomas Müller2015-11-102-1/+8
|\ \ | | | | | | When creating addressbooks, make sure the displayname is set
| * | When creating addressbooks, make sure the displayname is setArthur Schiwon2015-11-102-1/+8
| | |
* | | Merge pull request #20422 from owncloud/fix-20421-masterThomas Müller2015-11-101-0/+3
|\ \ \ | |/ / |/| | Ensure the user folder exists
| * | Ensure the user folder existsThomas Müller2015-11-101-0/+3
| |/
* / Adding CardDAV plugin to provide addressbook-home-set propertyThomas Müller2015-11-101-0/+2
|/
* Register DAVACL plugin to provide current-user-principalThomas Müller2015-11-091-0/+2
|
* adding individual phpunit.xml and bootstrap.phpThomas Müller2015-11-062-0/+38
|
* Adding occ command to create an addressbookThomas Müller2015-11-062-0/+60
|
* Introducing CardDAV into coreThomas Müller2015-11-0622-23/+958
|
* Fix TagList namespace in property mapVincent Petry2015-11-021-1/+1
|
* Merge pull request #20089 from owncloud/litmus-test-webdavThomas Müller2015-10-282-0/+46
|\ | | | | Enable DAV app testing on travis
| * run litmus scripts only if code in the dav app did change changedThomas Müller2015-10-282-2/+0
| |
| * Enable DAV app testing on travisThomas Müller2015-10-272-0/+48
| |
* | Merge pull request #17104 from owncloud/chunked-upload-lockingRobin Appelman2015-10-274-13/+104
|\ \ | |/ |/| locking for chunked dav upload
| * adjust tests for new dav classesRobin Appelman2015-10-201-6/+6
| |
| * remove locking for chunksRobin Appelman2015-10-201-4/+0
| |
| * fix locking in testsRobin Appelman2015-10-201-2/+8
| |
| * Adjust for wide lockingRobin Appelman2015-10-202-6/+12
| |
| * Add tests for uploading to locked filesRobin Appelman2015-10-201-1/+81
| |
| * locking for chunked dav uploadRobin Appelman2015-10-201-4/+7
| |