Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move dav app to PSR-4 (#24527) | Joas Schilling | 2016-05-12 | 32 | -5412/+0 |
| | | | | | | * Move Application to correct namespace and PSR-4 it * Move dav app to PSR-4 | ||||
* | use the UID for creating the session token, not the login name | Christoph Wurst | 2016-05-11 | 1 | -4/+4 |
| | |||||
* | create session token for DAV clients (sync clients) | Christoph Wurst | 2016-05-11 | 1 | -0/+1 |
| | |||||
* | Merge pull request #24400 from owncloud/cache_shareManager | Vincent Petry | 2016-05-06 | 1 | -4/+5 |
|\ | | | | | Cache shareManager | ||||
| * | Cache shareManager | Roeland Jago Douma | 2016-05-02 | 1 | -4/+5 |
| | | | | | | | | | | There is no need to call \OC::$server->getShareManager for each Node. We have it available so better pass it around. | ||||
* | | Fixing local event delivery for calendar events based on the email address | Thomas Müller | 2016-05-02 | 1 | -0/+8 |
|/ | |||||
* | Merge pull request #23918 from owncloud/cruds-for-federated-shares | Björn Schießle | 2016-04-22 | 2 | -4/+33 |
|\ | | | | | bring back CRUDS permissions for federated shares | ||||
| * | return correct share permissions on propfind | Björn Schießle | 2016-04-18 | 2 | -4/+33 |
| | | |||||
* | | Merge pull request #23919 from owncloud/cyclyc-share-dep-example | Thomas Müller | 2016-04-20 | 1 | -1/+1 |
|\ \ | | | | | | | SharedStorage to new sharing code + cleanup | ||||
| * | | Fix related logic | Roeland Jago Douma | 2016-04-19 | 1 | -1/+1 |
| |/ | |||||
* / | Add data-fingerprint property to webdav | Roeland Jago Douma | 2016-04-18 | 2 | -2/+31 |
|/ | |||||
* | Move share-permissions property namespace | Roeland Jago Douma | 2016-04-15 | 1 | -1/+1 |
| | | | | Fixes https://github.com/owncloud/core/issues/23741 | ||||
* | Merge pull request #20118 from owncloud/chunked-upload-dav | Thomas Müller | 2016-04-13 | 2 | -2/+10 |
|\ | | | | | Initial implementation of the new chunked upload | ||||
| * | Fix unit test of file plugin | Thomas Müller | 2016-04-12 | 1 | -1/+1 |
| | | |||||
| * | Fix chunk file move | Thomas Müller | 2016-04-12 | 1 | -1/+9 |
| | | |||||
| * | Initial implementation of the new chunked upload - as specified in ↵ | Thomas Müller | 2016-04-12 | 1 | -1/+1 |
| | | | | | | | | https://dragotin.wordpress.com/2015/06/22/owncloud-chunking-ng/ | ||||
* | | always return the complete permissions the file was shared with | Björn Schießle | 2016-04-12 | 1 | -8/+0 |
|/ | |||||
* | Merge pull request #23557 from owncloud/sabre-plugin-browser-error-page | Thomas Müller | 2016-04-04 | 2 | -2/+9 |
|\ | | | | | In case of exception we return an html page in case the client is a b… | ||||
| * | In case of exception we return an html page in case the client is a browser | Thomas Müller | 2016-03-24 | 2 | -2/+9 |
| | | |||||
* | | Fix unit tests | Roeland Jago Douma | 2016-03-31 | 1 | -1/+9 |
| | | |||||
* | | Correct share permissions for external storages | Roeland Jago Douma | 2016-03-31 | 1 | -0/+9 |
| | | |||||
* | | Add sharePermissions webdav property | Roeland Jago Douma | 2016-03-31 | 2 | -0/+39 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This property can be queries by the clients so they know the max permissions they can use to share a file with. This will improve the UX. The oc:permissions proptery is not enough since mountpoints have different permissions (delete + move by default). By making it a new property the clients can just request it. On older servers it will just return a 404 for that property (and thus they know they have to fall back to their hacky work arounds). But if the property is returned the client can show proper info. * unit tests * intergration test | ||||
* | | apps/dav: Fix typos in comments (found and fixed by codespell) | Stefan Weil | 2016-03-30 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Stefan Weil <sw@weilnetz.de> | ||||
* | | Merge pull request #23549 from owncloud/dav-sharetypes-remote | Thomas Müller | 2016-03-24 | 1 | -1/+2 |
|\ \ | |/ |/| | Return remote shares in oc:share-types Webdav property | ||||
| * | Return remote shares in oc:share-types Webdav property | Vincent Petry | 2016-03-24 | 1 | -1/+2 |
| | | | | | | | | | | Fixes web UI to properly display the share status icon when an outgoing remote share exists | ||||
* | | Merge pull request #23342 from ↵ | Thomas Müller | 2016-03-24 | 1 | -2/+3 |
|\ \ | | | | | | | | | | | | | owncloud/fix-group-sharing-for-v1-caldav-and-carddav Fix group shares on v1 caldav and carddav | ||||
| * | | Fix acls for calendar objects and cards - fixes #23273 | Thomas Müller | 2016-03-24 | 1 | -0/+1 |
| | | | |||||
| * | | Fix group shares on v1 caldav and carddav - fixes #23328 | Thomas Müller | 2016-03-24 | 1 | -2/+2 |
| |/ | |||||
* / | Check if request is sent from official ownCloud client | Lukas Reschke | 2016-03-24 | 1 | -17/+65 |
|/ | | | | | | There are authentication backends such as Shibboleth that do send no Basic Auth credentials for DAV requests. This means that the ownCloud DAV backend would consider these requests coming from an untrusted source and require higher levels of security checks. (e.g. a CSRF check) While an elegant solution would rely on authenticating via token (so that one can properly ensure that the request came indeed from a trusted client) this is a okay'ish workaround for this problem until we have something more reliable in the authentication code. | ||||
* | Merge pull request #23431 from owncloud/use-dav-sabre-plugin-for-browser-2 | Thomas Müller | 2016-03-23 | 2 | -13/+27 |
|\ | | | | | Fix display of vcard and calendar object details page in browser plugin | ||||
| * | Fix display of vcard and calendar object details page in browser plugin | Thomas Müller | 2016-03-23 | 2 | -13/+27 |
| | | |||||
* | | Merge pull request #23404 from owncloud/fix-22988 | Thomas Müller | 2016-03-22 | 1 | -1/+7 |
|\ \ | | | | | | | adjust PrincipalUri as returned from Sabre to effective username | ||||
| * | | adjust PrincipilUri as returned from Sabre to effective username | Arthur Schiwon | 2016-03-18 | 1 | -1/+7 |
| | | | |||||
* | | | Do not fire pre/post hooks twice on chunk upload | Vincent Petry | 2016-03-21 | 1 | -2/+2 |
| | | | |||||
* | | | Merge pull request #22789 from owncloud/dav-sharesproperty | Thomas Müller | 2016-03-21 | 3 | -0/+269 |
|\ \ \ | |_|/ |/| | | Add webdav property for share info in PROPFIND response | ||||
| * | | Remove duplicated copyright | Roeland Jago Douma | 2016-03-17 | 1 | -21/+0 |
| | | | |||||
| * | | Add webdav property for share info in PROPFIND response | Vincent Petry | 2016-03-17 | 3 | -0/+290 |
| |/ | |||||
* / | Necessary code changes to make browser plugin properly work | Thomas Müller | 2016-03-17 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #23119 from owncloud/fix-getOwner-on-fileshome-master | Thomas Müller | 2016-03-10 | 1 | -10/+10 |
|\ | | | | | getOwner is not available on FileHome | ||||
| * | getOwner is not available on FileHome - fixes #23116 | Thomas Müller | 2016-03-10 | 1 | -10/+10 |
| | | |||||
* | | Fake LOCK statement for Windows 7, 8 and 10 network mounts | Morris Jobke | 2016-03-10 | 1 | -0/+1 |
|/ | | | | * fixes #22596 | ||||
* | Rename and move permissions are set when a file is updatable | Roeland Jago Douma | 2016-03-03 | 1 | -1/+1 |
| | | | | * Fix unit tests | ||||
* | Merge pull request #22757 from owncloud/apply-license | C. Montero Luque | 2016-03-01 | 8 | -6/+4 |
|\ | | | | | Update copyright information and author file | ||||
| * | Remove Scrutinizer Auto Fixer | Lukas Reschke | 2016-03-01 | 5 | -5/+0 |
| | | |||||
| * | Update author information | Lukas Reschke | 2016-03-01 | 4 | -1/+4 |
| | | | | | | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :) | ||||
* | | allow putting the part file in the view root | Robin Appelman | 2016-03-01 | 1 | -4/+13 |
|/ | |||||
* | Save some calls to refreshInfo during upload | Vincent Petry | 2016-03-01 | 1 | -4/+5 |
| | |||||
* | Fix unit tests | Roeland Jago Douma | 2016-03-01 | 1 | -5/+7 |
| | |||||
* | Checksums on chunked files | Roeland Jago Douma | 2016-03-01 | 1 | -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 file | Roeland Jago Douma | 2016-03-01 | 2 | -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. |