Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #19098 from owncloud/db-lock-no-transaction | Thomas Müller | 2015-09-18 | 1 | -1/+55 |
|\ | | | | | Remove the need for the transaction in the database locking backend | ||||
| * | expire old lock rows | Robin Appelman | 2015-09-17 | 1 | -1/+55 |
| | | |||||
* | | Merge pull request #18901 from owncloud/encryption-dav-tests | Thomas Müller | 2015-09-18 | 5 | -9/+143 |
|\ \ | | | | | | | Add tests for doing dav requests with encryption enabled | ||||
| * | | reuse the same datadir | Robin Appelman | 2015-09-18 | 1 | -1/+2 |
| | | | |||||
| * | | Add tests for doing dav requests with encryption enabled | Robin Appelman | 2015-09-18 | 1 | -0/+25 |
| | | | |||||
| * | | Add trait to enable encryption for a unit test | Robin Appelman | 2015-09-18 | 1 | -0/+104 |
| | | | |||||
| * | | create new mounts every time the mount provider is called | Robin Appelman | 2015-09-18 | 1 | -2/+4 |
| | | | | | | | | | | | | important for storage wrappers | ||||
| * | | clear up tests a bit | Robin Appelman | 2015-09-18 | 1 | -6/+8 |
| | | | |||||
* | | | Add repair step for outdated OCS IDs | Lukas Reschke | 2015-09-18 | 1 | -0/+80 |
| | | | | | | | | | | | | | | | | | | There is the case where OCs IDs might become outdated such as it has been with the calendar and contacts app which refer to the old dummy entry. This means that users with the old OCS id can't update updates as well will receive invalid state flags. (e.g. "experimental" instead of "approved") To allow instances to properly update the applications in the future we need to migrate the OCS IDs for now manually. | ||||
* | | | Merge pull request #19017 from owncloud/dav-download-tests | Thomas Müller | 2015-09-18 | 2 | -1/+61 |
|\ \ \ | |/ / |/| | | Add tests for downloading files over dav | ||||
| * | | fix tests with empty response body | Robin Appelman | 2015-09-16 | 1 | -1/+1 |
| | | | |||||
| * | | Add tests for downloading files over dav | Robin Appelman | 2015-09-16 | 2 | -1/+61 |
| | | | |||||
* | | | Add a Sabre plugin that emits an event for apps | Joas Schilling | 2015-09-17 | 1 | -1/+2 |
| |/ |/| | |||||
* | | Fix the singleuser config casing in new encryption code | Joas Schilling | 2015-09-17 | 2 | -6/+6 |
|/ | |||||
* | Update JS unit tests for share dialog (WIP) | Vincent Petry | 2015-09-16 | 1 | -1/+2 |
| | |||||
* | Merge pull request #18938 from owncloud/occ_decrypt_all2 | Thomas Müller | 2015-09-16 | 4 | -2/+538 |
|\ | | | | | occ script to disable encryption and to decrypt all files again | ||||
| * | occ script to disable encryption and to decrypt all files again | Bjoern Schiessle | 2015-09-15 | 4 | -2/+538 |
| | | |||||
* | | Merge pull request #19052 from owncloud/revert-14856-remote_avatars | Thomas Müller | 2015-09-16 | 1 | -17/+12 |
|\ \ | |/ |/| | Revert "Allow Remote avatars" | ||||
| * | Revert "Allow Remote avatars" | Thomas Müller | 2015-09-15 | 1 | -17/+12 |
| | | |||||
* | | Merge pull request #18915 from owncloud/node-getfoldercontents-use-view-logic | Robin Appelman | 2015-09-15 | 1 | -30/+7 |
|\ \ | | | | | | | Use the view logic for getFolderContent for the node api | ||||
| * | | Use the view logic for getFolderContent for the node api | Robin Appelman | 2015-09-08 | 1 | -30/+7 |
| | | | |||||
* | | | fix chunking tests | Robin Appelman | 2015-09-14 | 1 | -0/+2 |
| | | | |||||
* | | | also verify cache in dav upload tests | Robin Appelman | 2015-09-14 | 1 | -1/+21 |
| | | | |||||
* | | | adjust tests to handle before/after locking | Robin Appelman | 2015-09-14 | 1 | -5/+43 |
| |/ |/| | |||||
* | | Only check the "was updated/inserted" when not on Oracle... | Joas Schilling | 2015-09-14 | 1 | -2/+8 |
| | | |||||
* | | Merge pull request #18658 from owncloud/configurable-temp | Frank Karlitschek | 2015-09-12 | 1 | -4/+32 |
|\ \ | | | | | | | Configurable temporary directory | ||||
| * | | Unit test getting temp dir from config | Robin McCorkell | 2015-08-30 | 1 | -1/+19 |
| | | | |||||
| * | | Clean up TempManager to follow code guidelines | Robin McCorkell | 2015-08-30 | 1 | -3/+14 |
| | | | | | | | | | | | | tmpBaseDir can be overridden for unit testing purposes | ||||
| * | | moved code to /lib/private/tempmanager.php | root | 2015-08-29 | 1 | -3/+2 |
| | | | | | | | | | | | | | | | | | | fix for unit test some fixes | ||||
* | | | Add reset method to mimetype loader | Robin McCorkell | 2015-09-11 | 1 | -12/+3 |
| | | | | | | | | | | | | Used to solve concurrency issues | ||||
* | | | Merge pull request #18851 from owncloud/memcached-getallkeys-fallback | Robin McCorkell | 2015-09-10 | 1 | -0/+23 |
|\ \ \ | | | | | | | | | Fallback to complete Memcached flush if getAllKeys fails | ||||
| * | | | Fallback to complete Memcached flush if getAllKeys fails | Robin McCorkell | 2015-09-05 | 1 | -0/+23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | | | Merge pull request #18699 from owncloud/notification-manager | Lukas Reschke | 2015-09-10 | 4 | -0/+1184 |
|\ \ \ \ | | | | | | | | | | | Notification manager | ||||
| * | | | | Move interfaces to private until they are no longer experimental | Joas Schilling | 2015-09-08 | 4 | -59/+59 |
| | | | | | |||||
| * | | | | Add tests for the query() | Joas Schilling | 2015-09-08 | 1 | -0/+2 |
| | | | | | |||||
| * | | | | Add tests for the notification manager | Joas Schilling | 2015-09-08 | 1 | -0/+345 |
| | | | | | |||||
| * | | | | Add more action tests | Joas Schilling | 2015-09-08 | 2 | -9/+12 |
| | | | | | |||||
| * | | | | Add tests for notification | Joas Schilling | 2015-09-08 | 1 | -0/+602 |
| | | | | | |||||
| * | | | | Add tests for Action | Joas Schilling | 2015-09-08 | 1 | -0/+232 |
| | | | | | |||||
* | | | | | Merge pull request #18925 from owncloud/change-risky-test | Morris Jobke | 2015-09-09 | 1 | -2/+2 |
|\ \ \ \ \ | | | | | | | | | | | | | Rename data provider to avoid risky test warning | ||||
| * | | | | | Rename data provider to avoid risky test warning | Lukas Reschke | 2015-09-09 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ``` 06:49:56 There was 1 risky test: 06:49:56 06:49:56 1) OC\AppFramework\Http\JSONResponseTest::testRenderProvider 06:49:56 This test did not perform any assertions ``` | ||||
* | | | | | | Write to session in batch at the end of the request | Lukas Reschke | 2015-09-09 | 1 | -9/+0 |
| | | | | | | |||||
* | | | | | | Write session data to single key | Lukas Reschke | 2015-09-09 | 1 | -4/+4 |
|/ / / / / | | | | | | | | | | | | | | | | This prevents decrypting values multiple times. | ||||
* | | | | | Merge pull request #18684 from owncloud/explicit-upgrade-version | Morris Jobke | 2015-09-09 | 1 | -10/+64 |
|\ \ \ \ \ | |_|_|_|/ |/| | | | | Explicit upgrade version + prevent downgrades | ||||
| * | | | | Restrict upgrades to explicit allowed version | Vincent Petry | 2015-08-30 | 1 | -10/+64 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | version.php now contains the previous ownCloud version from which upgrades are allowed. Any other upgrades will show a message that the upgrade/downgrade is not supported. | ||||
* | | | | | Load all enabled apps in test bootstrap | Robin McCorkell | 2015-09-07 | 1 | -3/+2 |
| |/ / / |/| | | | |||||
* | | | | Merge pull request #18748 from owncloud/files-versions-tab | Morris Jobke | 2015-09-07 | 1 | -0/+10 |
|\ \ \ \ | | | | | | | | | | | Add versions tab to files sidebar | ||||
| * | | | | Add versions tab to files sidebar | Vincent Petry | 2015-09-03 | 1 | -0/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - move versions to a tab in the files sidebar - added mechanism to auto-update the row in the FileList whenever values are set to the FileInfoModel given to the sidebar - updated tags/favorite action to make use of that new mechanism | ||||
* | | | | | Merge pull request #18742 from owncloud/mimetype-updatedb | Roeland Douma | 2015-09-06 | 3 | -15/+291 |
|\ \ \ \ \ | |_|_|/ / |/| | | | | Introduce mimetype DB update occ command | ||||
| * | | | | Unit tests for mimetype loader | Robin McCorkell | 2015-09-04 | 2 | -0/+277 |
| | | | | |