Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #22634 from owncloud/stable8.1-backport-22565 | Vincent Petry | 2016-02-25 | 1 | -0/+4 |
|\ | | | | | [stable8.1] Avoids scanning the root storage | ||||
| * | Avoids scanning the root storage | Morris Jobke | 2016-02-24 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | This check will skip the background scan for the root storage because there is nothing in the root storage that isn't already in another (mostly user-) storage. Fixes #22501 | ||||
* | | recalculate unencrypted size if we assume that the size stored in the db is ↵ | Bjoern Schiessle | 2016-02-25 | 1 | -3/+129 |
|/ | | | | not correct | ||||
* | Fix BMP support | Morris Jobke | 2016-02-14 | 1 | -0/+1 |
| | | | | * fixes #16461 | ||||
* | When a user is removed we should remove the right shares | Roeland Jago Douma | 2016-02-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | * This means all the shares directly shared with them * Or all group shares having a special share with them This patch fixes the operator precedece (AND before OR). So before this patch: (share_with = <deleted user> AND share_type = 0) OR share_type=2 So it deleted all user specific shares Now: share_with = <deleted user> AND (share_type = 0 OR (share_type=2) | ||||
* | Handle return code of streamCopy in WebDAV put | Morris Jobke | 2016-01-15 | 1 | -1/+9 |
| | | | | * throw a different exception if streamCopy failed | ||||
* | Merge pull request #21665 from owncloud/smb-statcache-cap-81 | Vincent Petry | 2016-01-13 | 1 | -0/+87 |
|\ | | | | | [8.1] cap the number of entries we cache in smb's statcache | ||||
| * | cap the number of entries we cache in smb's statcache | Robin Appelman | 2016-01-12 | 1 | -0/+87 |
| | | |||||
* | | also log exception | Robin Appelman | 2016-01-07 | 1 | -0/+1 |
| | | |||||
* | | Skip unavailable storages in scanner | Robin Appelman | 2016-01-07 | 1 | -2/+16 |
| | | |||||
* | | Merge pull request #21296 from owncloud/stable8.1-prevent0bytedownloads | Morris Jobke | 2016-01-05 | 1 | -2/+5 |
|\ \ | | | | | | | [stable8.1] prevent 0 byte downloads when storage returns false | ||||
| * | | prevent 0 byte downloads when storage returns false | Jörn Friedrich Dreyer | 2015-12-18 | 1 | -2/+5 |
| |/ | |||||
* / | Use name of ICollection for exception message | Morris Jobke | 2015-12-16 | 1 | -1/+1 |
|/ | | | | * fixes #21230 | ||||
* | don't allow to create a federated share if source and target server are the same | Björn Schießle | 2015-12-15 | 2 | -2/+36 |
| | |||||
* | Merge pull request #21081 from ↵ | Morris Jobke | 2015-12-10 | 3 | -6/+8 |
|\ | | | | | | | | | owncloud/stable8.1-share-computesharepermissions-notstore [stable8.1] Fix (re)share permission checks in a few code paths | ||||
| * | Add explicit check for groups excluded from sharing | Vincent Petry | 2015-12-09 | 1 | -1/+1 |
| | | | | | | | | | | Since isSharable() doesn't do the check for groups excluded from sharing, adding an explicit check in the sharing code. | ||||
| * | Add reshare permission checks | Vincent Petry | 2015-12-09 | 1 | -1/+1 |
| | | | | | | | | | | | | | | Added in isSharable() in incoming remote share. Added in isSharable() in regular incoming share. Added in FileInfo to make sure the proper attributes are returned to the clients. | ||||
| * | Compute share permissions in the view | Vincent Petry | 2015-12-09 | 2 | -5/+7 |
| | | | | | | | | | | The share permissions are now computed in the View/FileInfo instead of storing them directly/permanently on the storage | ||||
* | | Don't load commands of apps when in maintenance mode - fixes #20939 | Thomas Müller | 2015-12-09 | 1 | -3/+5 |
|/ | |||||
* | Merge pull request #20999 from ↵ | Morris Jobke | 2015-12-07 | 1 | -1/+3 |
|\ | | | | | | | | | owncloud/backport-20981-multiple-emails-for-sharelink-8.1 [8.1] Allow sending a share email to multiple users | ||||
| * | Allow sending a share email to multiple users | Joas Schilling | 2015-12-07 | 1 | -1/+3 |
| | | |||||
* | | ILogger has no logException() - fixes #20797 | Thomas Müller | 2015-12-07 | 1 | -1/+1 |
|/ | |||||
* | Check the expiration date for null | Morris Jobke | 2015-12-04 | 1 | -1/+7 |
| | | | | | | * null is always less than any value -> expirationDate gets null which is "no date set" * ref https://github.com/owncloud/core/issues/20590#issuecomment-158393075 | ||||
* | Dont die when we're missing a route | Robin Appelman | 2015-11-30 | 3 | -6/+27 |
| | |||||
* | Make sure all variables are defined | Joas Schilling | 2015-11-24 | 1 | -0/+2 |
| | |||||
* | Make sure the share we found is for the same item | Joas Schilling | 2015-11-24 | 1 | -1/+1 |
| | |||||
* | escape like parameter in cache move | Robin Appelman | 2015-11-20 | 1 | -1/+2 |
| | |||||
* | define escape character for like statements on oracle | Robin Appelman | 2015-11-20 | 1 | -0/+1 |
| | |||||
* | define escape character for like statements on sqlite | Robin Appelman | 2015-11-20 | 1 | -0/+1 |
| | |||||
* | Merge pull request #20307 from ↵ | Morris Jobke | 2015-11-10 | 1 | -9/+9 |
|\ | | | | | | | | | owncloud/stable8.1-backport-use-actual-mimetype-detection-instad-of-oath-1 [stable8.1] Use actual mimetype detection instead of extension | ||||
| * | Use actual mimetype detection instead of extension | Lukas Reschke | 2015-11-10 | 1 | -9/+9 |
| | | | | | | | | We cannot rely on the extension as the file may also be a valid TAR or ZIP file without such content. Especially when getting resources from the ownCloud appstore. | ||||
* | | Prevent moving mount point into already shared folder (outgoing) | Vincent Petry | 2015-11-04 | 1 | -8/+29 |
|/ | | | | | | | | It is already not allowed to share a folder containing mount points / incoming shares. This fixes an issue that made it possible to bypass the check by moving the incoming share mount point into an existing outgoing share folder. | ||||
* | Merge pull request #19773 from owncloud/stable8.1-proppatch-lastmodified | Morris Jobke | 2015-11-02 | 1 | -3/+3 |
|\ | | | | | [stable8.1] Fix mtime PROPPATCH to be "lastmodified" instead of "getlastmodified" | ||||
| * | Fix mtime PROPPATCH to be "lastmodified" instead of "getlastmodified" | Vincent Petry | 2015-10-14 | 1 | -3/+3 |
| | | | | | | | | | | | | | | Fix regression that makes PROPPATCH of mtime work like it did in OC <= 8.0. The PROPPATCH must be done on the "lastmodified" property. The "getlastmodified" now return 403 again. | ||||
* | | Expose syslog tag in the configuration | Volker Fröhlich | 2015-10-23 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #19784 from owncloud/stable8.1_backport_19727 | Thomas Müller | 2015-10-15 | 1 | -2/+2 |
|\ \ | | | | | | | [Stable8.1] Return path instead of itemsource | ||||
| * | | Return path instead of itemsource | Roeland Jago Douma | 2015-10-14 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | Fixes #19678 Errors should contain paths and not internal ids | ||||
* | | | Setup sendmail transport | Lukas Reschke | 2015-10-14 | 1 | -1/+4 |
| |/ |/| | | | | | Replaces https://github.com/owncloud/core/pull/19047 and fixes https://github.com/owncloud/enterprise/issues/854 and https://github.com/owncloud/core/issues/19110 | ||||
* | | Do not update mime types for folders with extension | Vincent Petry | 2015-10-12 | 1 | -2/+10 |
| | | | | | | | | | | | | Some folders might have an extension like "test.conf". This fix prevents to overwrite the folder's mime type with another mime type while running the mimetype repair step. | ||||
* | | Merge pull request #19466 from owncloud/tarstreamer-stable8.1 | Thomas Müller | 2015-10-12 | 2 | -37/+158 |
|\ \ | | | | | | | [stable8.1] backport Tarstreamer | ||||
| * | | Only use zip64 when we have 64 bit php | Joas Schilling | 2015-10-08 | 1 | -1/+1 |
| | | | |||||
| * | | Adding TarStreamer and updating ZipStreamer | Thomas Müller | 2015-09-30 | 2 | -4/+1 |
| | | | |||||
| * | | Uniform behavour for tar and zip | Victor Dubiniuk | 2015-09-30 | 1 | -1/+6 |
| | | | |||||
| * | | More corrections | Victor Dubiniuk | 2015-09-30 | 2 | -11/+7 |
| | | | |||||
| * | | Add namespace. Fix broken zip | Victor Dubiniuk | 2015-09-30 | 2 | -5/+8 |
| | | | |||||
| * | | Add PHpdoc | Victor Dubiniuk | 2015-09-30 | 1 | -6/+40 |
| | | | |||||
| * | | Introduce streamer | Victor Dubiniuk | 2015-09-30 | 2 | -34/+120 |
| | | | |||||
* | | | Merge pull request #18855 from owncloud/memcached-fix-stable8.1 | Morris Jobke | 2015-10-09 | 1 | -0/+5 |
|\ \ \ | | | | | | | | | [stable8.1] Fallback to complete Memcached flush if getAllKeys fails | ||||
| * | | | Fallback to complete Memcached flush if getAllKeys fails | Robin McCorkell | 2015-09-06 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Newer Memcached's do not support the underlying protocol commands that getAllKeys() is implemented with. We should fallback to clearing everything in that case, as causing (temporary) performance problems for other applications on the server is better than having stale cached data. | ||||
* | | | | fix internal path when searching in storage root | Robin Appelman | 2015-10-09 | 1 | -2/+5 |
| | | | | | | | | | | | | | | | | (cherry picked from commit c2d76d2) |