Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-03-05 | 124 | -154/+422 |
| | |||||
* | Merge pull request #22878 from owncloud/use-clob-for-timezone | C. Montero Luque | 2016-03-04 | 2 | -3/+3 |
|\ | | | | | Use CLOB for timezone | ||||
| * | Use CLOB for timezone | Lukas Reschke | 2016-03-04 | 2 | -3/+3 |
| | | | | | | | | | | | | | | | | TEXT defaults to a length of 255 which is going to fail in some cases as the timezone can be rather long. This changes it back to a CLOB as it has been before as well: https://github.com/owncloudarchive/calendar/commit/8d8bb68b010fc2c42a258dee43516404a95ab861. I'm not super convinced that CLOB is the best choice here but at least it seems to work. Fixes https://github.com/owncloud/core/issues/22876 | ||||
* | | Merge pull request #22870 from owncloud/autoenable-federation-app | C. Montero Luque | 2016-03-04 | 1 | -11/+12 |
|\ \ | | | | | | | Automatically enable "federation" app | ||||
| * \ | Merge branch 'master' into autoenable-federation-app | C. Montero Luque | 2016-03-04 | 1 | -1/+1 |
| |\ \ | |||||
| * | | | Automatically enable "federation" app | Lukas Reschke | 2016-03-04 | 1 | -11/+12 |
| | |/ | |/| | |||||
* | | | Merge branch 'master' into fix-db-locking-cleanup | C. Montero Luque | 2016-03-04 | 10 | -17/+229 |
|\ \ \ | | |/ | |/| | |||||
| * | | Merge pull request #22860 from owncloud/trashbin-checkpath | C. Montero Luque | 2016-03-04 | 1 | -1/+1 |
| |\ \ | | |/ | |/| | Properly check path validity before deleting to trash | ||||
| | * | Properly check path validity before deleting to trash | Vincent Petry | 2016-03-04 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | This prevents deleting the whole "files" folder of the user whenever $ownerPath is empty. This can happen in concurrency situations. | ||||
| * | | Merge pull request #22857 from owncloud/add-release-channel-selection | Thomas Müller | 2016-03-04 | 7 | -14/+219 |
| |\ \ | | | | | | | | | Add release channel selection back | ||||
| | * | | Add release channel selection back | Lukas Reschke | 2016-03-04 | 7 | -14/+219 |
| | | | | | | | | | | | | | | | | Allows to select the release channels again and also shows the last check date | ||||
| * | | | Merge pull request #22816 from owncloud/external-unavailable-recheck | Thomas Müller | 2016-03-04 | 2 | -2/+9 |
| |\ \ \ | | |/ / | |/| | | allow availability recheck for external storages | ||||
| | * | | Properly set exception in FailedStorage | Vincent Petry | 2016-03-03 | 2 | -1/+7 |
| | | | | |||||
| | * | | allow availability recheck for external storages | Robin Appelman | 2016-03-03 | 1 | -1/+2 |
| | | | | |||||
* | | | | Run cleanup of expired DB file locks to background job | Morris Jobke | 2016-03-04 | 4 | -1/+60 |
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fixes #22819 The old way fired a DELETE statement on each destruction of the DBLockingProvider. Which could cause a lot of queries. It's enough to run this every 5 minutes in a background job, which in the end could result in file locks that exists 5 minutes longer - in the worst case and for not properly released locks. This makes the DB based locking a lot more performant and could result in a similar performance to the Redis based locking provider. | ||||
* | | | Merge pull request #22830 from owncloud/fix_dav_permissions | Thomas Müller | 2016-03-04 | 2 | -3/+3 |
|\ \ \ | | | | | | | | | Rename and move permissions are set when a file is updatable | ||||
| * | | | Rename and move permissions are set when a file is updatable | Roeland Jago Douma | 2016-03-03 | 2 | -3/+3 |
| | | | | | | | | | | | | | | | | * Fix unit tests | ||||
* | | | | Fix download spinner to work with CSS styles | Vincent Petry | 2016-03-04 | 3 | -10/+42 |
| |_|/ |/| | | | | | | | | | | | | | | A recent change replaced img elements with CSS icons for file actions. This fix adjusts the logic to work properly with CSS icons instead of images. | ||||
* | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-03-04 | 40 | -28/+212 |
|/ / | |||||
* / | Keep "encryptedVersion" when calling `\OC\Files\View::copy` | Lukas Reschke | 2016-03-03 | 1 | -10/+12 |
|/ | | | | | | | | | | | | | | | | When calling `\OC\Files\View::copy` we should also keep the version to ensure that the file will always have the correct version attached and can be successfully decrypted. To test this the following steps are necessary (from https://github.com/owncloud/core/issues/22781#issuecomment-191328982): 1. setup a new ownCloud 9.0 beta2 2. enable encryption 2. upload a docx (5.7MB large) 3. upload the same file again and overwrite the existing file 4. I can download the original file and the first version 5. I restore the first version 6. restored version can no longer be downloaded with the error described above The manual cache operation in `\OCA\Files_Versions\Storage` is unfortunately necessary since `\OCA\Files_Versions\Storage::copyFileContents` is not using `\OCP\Files\Storage::moveFromStorage` in the case when an object storage is used. Due to the workaround added in https://github.com/owncloud/core/commit/54cea05271b887f1c8062c034741df869bc0f055 the stream is directly copied and thus bypassing the FS. | ||||
* | Merge pull request #22778 from owncloud/fix-22770 | Thomas Müller | 2016-03-03 | 1 | -3/+3 |
|\ | | | | | untangle different user manager instances, fixes #22770 | ||||
| * | untangle different user manager instances, fixes #22770 | Arthur Schiwon | 2016-03-02 | 1 | -3/+3 |
| | | |||||
* | | Merge pull request #22784 from owncloud/files-newmenu-removebrowsercomplete | Thomas Müller | 2016-03-03 | 1 | -1/+1 |
|\ \ | | | | | | | Remove browser autocomplete in new file menu | ||||
| * | | Remove browser autocomplete in new file menu | Vincent Petry | 2016-03-02 | 1 | -1/+1 |
| |/ | |||||
* | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-03-03 | 8 | -2/+22 |
| | | |||||
* | | Translate strings of federation admin section | Joas Schilling | 2016-03-02 | 1 | -4/+4 |
|/ | |||||
* | Increase all versions on master which is now 9.1 | Joas Schilling | 2016-03-02 | 14 | -28/+28 |
| | |||||
* | [tx-robot] updated from transifex | Jenkins for ownCloud | 2016-03-02 | 12 | -6/+152 |
| | |||||
* | Merge pull request #22757 from owncloud/apply-license | C. Montero Luque | 2016-03-01 | 169 | -96/+436 |
|\ | | | | | Update copyright information and author file | ||||
| * | Add new apps | Lukas Reschke | 2016-03-01 | 8 | -4/+28 |
| | | |||||
| * | Remove Scrutinizer Auto Fixer | Lukas Reschke | 2016-03-01 | 43 | -43/+0 |
| | | |||||
| * | Map Maci | Lukas Reschke | 2016-03-01 | 11 | -0/+11 |
| | | |||||
| * | Update author information | Lukas Reschke | 2016-03-01 | 130 | -50/+398 |
| | | | | | | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :) | ||||
* | | Merge branch 'master' into part-file-root | C. Montero Luque | 2016-03-01 | 4 | -2/+16 |
|\ \ | |||||
| * \ | Merge pull request #22742 from owncloud/ceph-keystone-readiness | C. Montero Luque | 2016-03-01 | 4 | -2/+16 |
| |\ \ | | |/ | |/| | Use readiness notification socket to be absolutely sure this works | ||||
| | * | Use readiness notification socket to be absolutely sure this works | Robin McCorkell | 2016-02-29 | 4 | -2/+16 |
| | | | |||||
* | | | allow putting the part file in the view root | Robin Appelman | 2016-03-01 | 2 | -4/+69 |
|/ / | |||||
* | | Merge pull request #22699 from owncloud/checksum_int_test | Thomas Müller | 2016-03-01 | 2 | -2/+20 |
|\ \ | | | | | | | Checksum intergration tests and fixes | ||||
| * | | 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. | ||||
* | | | Merge pull request #22686 from owncloud/cleanup_remote_address_books | Thomas Müller | 2016-03-01 | 18 | -39/+155 |
|\ \ \ | |/ / |/| | | remove remote address book if access was revoked | ||||
| * | | increase version number | Bjoern Schiessle | 2016-03-01 | 1 | -1/+1 |
| | | | |||||
| * | | Handle null case | Thomas Müller | 2016-03-01 | 1 | -2/+5 |
| | | | |||||
| * | | fix doc-block | Bjoern Schiessle | 2016-02-29 | 1 | -0/+1 |
| | | | |||||
| * | | remove synced remote address book if the remote server revoked access to his ↵ | Bjoern Schiessle | 2016-02-29 | 7 | -7/+39 |
| | | | | | | | | | | | | system address book | ||||
| * | | remove remote address book if the admin removes the server from the trusted ↵ | Bjoern Schiessle | 2016-02-29 | 9 | -18/+97 |
| | | | | | | | | | | | | servers list | ||||
| * | | reuse the url_hash instead of calculating a new hash for the address book | Bjoern Schiessle | 2016-02-26 | 5 | -13/+14 |
| | | | |||||
* | | | Merge pull request #22681 from owncloud/add-autodiscovery-for-ocs | Thomas Müller | 2016-03-01 | 12 | -24/+435 |
|\ \ \ | | | | | | | | | Add autodiscovery support to server-to-server sharing implementation |