Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #21628 from owncloud/deprecated_secure_random_funcions | Thomas Müller | 2016-01-12 | 5 | -23/+6 |
|\ | | | | | Replace deprecated function calls to SecureRandom | ||||
| * | Fix unit tests | Roeland Jago Douma | 2016-01-11 | 2 | -18/+1 |
| | | |||||
| * | getMediumStrengthGenerator is deprecated and does not do anything anymore | Roeland Jago Douma | 2016-01-11 | 2 | -3/+3 |
| | | |||||
| * | getLowStrengthGenerator does not do anything anymore | Roeland Jago Douma | 2016-01-11 | 2 | -2/+2 |
| | | |||||
* | | Remove unused deprecated function | Roeland Jago Douma | 2016-01-11 | 1 | -5/+0 |
|/ | |||||
* | Remove generateRandomBytes from OC_Util | Roeland Jago Douma | 2016-01-10 | 1 | -5/+0 |
| | |||||
* | Verify the path is a file on avatar update | Roeland Jago Douma | 2016-01-08 | 1 | -0/+17 |
| | | | | | | | | Fixes #21533 Before we just assumed that the passed path was a file. This does not have to be the case. Thus check if it actually is a file before doing any more tests. | ||||
* | Merge pull request #21527 from owncloud/remove_all_avatars | Thomas Müller | 2016-01-08 | 1 | -7/+23 |
|\ | | | | | Remove all cache avatars on avatar deletion | ||||
| * | Remove all cache avatars on avatar deletion | Roeland Jago Douma | 2016-01-07 | 1 | -7/+23 |
| | | | | | | | | | | | | | | Fixes #21513 Since we cache the generated avatars. We should also delete the generated sizes when we remove the avatar. | ||||
* | | Merge pull request #21498 from owncloud/cleanup-OC_DB | Thomas Müller | 2016-01-07 | 13 | -19/+19 |
|\ \ | | | | | | | Cleanup OC_DB methods | ||||
| * | | Remove OC_DB::getConnection | Morris Jobke | 2016-01-07 | 10 | -14/+14 |
| | | | |||||
| * | | Remove OC_DB::insertid | Morris Jobke | 2016-01-07 | 2 | -3/+3 |
| | | | |||||
| * | | Remove OC_DB::dropTable | Morris Jobke | 2016-01-07 | 2 | -2/+2 |
| | | | |||||
* | | | Merge pull request #21502 from owncloud/di_mimetypedetector | Thomas Müller | 2016-01-07 | 1 | -0/+2 |
|\ \ \ | |_|/ |/| | | Add 'OCP\Files\IMimeTypeDetector' to DI container | ||||
| * | | Add 'OCP\Files\IMimeTypeDetector' to DI container | Roeland Jago Douma | 2016-01-07 | 1 | -0/+2 |
| | | | | | | | | | | | | * Added test to server container as well | ||||
* | | | Merge pull request #21505 from owncloud/allow-downgrades-for-brave-developers | Thomas Müller | 2016-01-07 | 1 | -13/+25 |
|\ \ \ | | | | | | | | | Allow downgrades for our brave developers, that switch between branches | ||||
| * | | | Allow downgrades for our brave developers, that switch between branches | Joas Schilling | 2016-01-07 | 1 | -13/+25 |
| |/ / | |||||
* | | | Merge pull request #20773 from owncloud/share2.0_create | Thomas Müller | 2016-01-07 | 2 | -12/+1380 |
|\ \ \ | |_|/ |/| | | [Sharing 2.0] create share | ||||
| * | | [Sharing 2.0] Some error cases report 404 instead of 403 | Roeland Jago Douma | 2016-01-06 | 1 | -6/+11 |
| | | | |||||
| * | | [Sharing 2.0] Add L10N instance to manager for translated errors | Roeland Jago Douma | 2016-01-06 | 1 | -16/+38 |
| | | | |||||
| * | | [Share 2.0] Make the share manager ready for share creation | Roeland Jago Douma | 2016-01-06 | 1 | -12/+1165 |
| | | | |||||
| * | | [Share 2.0] Make share provider ready for create shares | Roeland Jago Douma | 2016-01-06 | 1 | -0/+188 |
| | | | |||||
* | | | Move lib/repair to lib/private/repair | Morris Jobke | 2016-01-07 | 1 | -1/+1 |
| |/ |/| | |||||
* | | Assign DB group for unit tests | Lukas Reschke | 2016-01-04 | 1 | -0/+4 |
| | | |||||
* | | Move regeneration of session ID into session classes | Lukas Reschke | 2016-01-04 | 1 | -1/+15 |
|/ | | | | There were code paths that nowadays call ISession::login directly thus bypassing the desired regeneration of the session ID. This moves the session regeneration deeper into the session handling and thus ensures that it is always called. Furthermore, I also added the session regeneration to the remember me cookie plus added some test case expectations for this. | ||||
* | Merge pull request #21216 from owncloud/fopen-statcache | Thomas Müller | 2015-12-28 | 1 | -0/+13 |
|\ | | | | | Clear SMB statcache after fopen | ||||
| * | test for statcache after fopen | Robin Appelman | 2015-12-15 | 1 | -0/+13 |
| | | |||||
* | | Fix unit test | Roeland Jago Douma | 2015-12-24 | 1 | -2/+6 |
| | | |||||
* | | prefer scalar type hints over phpdoc annotation | Bernhard Posselt | 2015-12-24 | 1 | -0/+19 |
| | | | | | | | | | | | | use method exists lookup to be safe and not break on old hhvm versions add test that checks if type hint is preferred over annotation | ||||
* | | Restore DB connection after failure | Vincent Petry | 2015-12-21 | 1 | -2/+12 |
| | | | | | | | | | | | | | | | | | | In case of failure, PHPUnit seems to skip `tearDown`, so any useful assertion messages cannot be shown because `tearDownAfterClass` is throwing an error because of database usage. This commit makes sure we also restore the database in `tearDownAfterClass` to prevent the data root restoration to fail | ||||
* | | Merge pull request #21289 from ↵ | Thomas Müller | 2015-12-21 | 1 | -2/+9 |
|\ \ | | | | | | | | | | | | | owncloud/issue-20399-keep-periodic-background-jobs Do not delete background jobs, in case an exception occured | ||||
| * | | Fix the test to expect the new behaviour | Joas Schilling | 2015-12-18 | 1 | -2/+9 |
| | | | |||||
* | | | Merge pull request #21290 from owncloud/public-api-usage-getversion | Thomas Müller | 2015-12-18 | 3 | -6/+6 |
|\ \ \ | | | | | | | | | Use OCP\Util::getVersion instead of the internal private implementation | ||||
| * | | | Use OCP\Util::getVersion instead of the internal private implementation | Morris Jobke | 2015-12-18 | 3 | -6/+6 |
| | | | | |||||
* | | | | Merge pull request #21288 from owncloud/deprecated_helper_mimetypes | Thomas Müller | 2015-12-18 | 1 | -22/+0 |
|\ \ \ \ | |/ / / |/| | | | Remove deprecated OC_Helper mimetype functions | ||||
| * | | | Removed deprecated unsused function OC_Helper::getStringMimeType | Roeland Jago Douma | 2015-12-18 | 1 | -10/+0 |
| | | | | |||||
| * | | | Removed deprecated OC_Helper::getSecureMimeType | Roeland Jago Douma | 2015-12-18 | 1 | -12/+0 |
| | | | | |||||
* | | | | Merge pull request #21283 from owncloud/cleanup_config | Thomas Müller | 2015-12-18 | 2 | -5/+14 |
|\ \ \ \ | | | | | | | | | | | Cleanup OC_Config mess | ||||
| * | | | | Inject Config into SystemConfig | Roeland Jago Douma | 2015-12-18 | 2 | -5/+14 |
| | | | | | |||||
* | | | | | Merge pull request #21280 from owncloud/drop-unused-methods | Thomas Müller | 2015-12-18 | 1 | -120/+0 |
|\ \ \ \ \ | |_|_|/ / |/| | | | | OC_Helper::makeURLAbsolute is not used anymore | ||||
| * | | | | Move OC_Helper code to OCP\Util for linkToRemote | Morris Jobke | 2015-12-18 | 1 | -32/+0 |
| | | | | | |||||
| * | | | | properly use OCP\Util instead of OC_Helper | Morris Jobke | 2015-12-18 | 1 | -46/+0 |
| | | | | | |||||
| * | | | | OC_Helper::makeURLAbsolute is not used anymore | Morris Jobke | 2015-12-18 | 1 | -42/+0 |
| |/ / / | |||||
* | | | | Merge pull request #21277 from owncloud/querybuild-joblist | Thomas Müller | 2015-12-18 | 1 | -9/+4 |
|\ \ \ \ | |_|/ / |/| | | | Use the query builder for the joblist queries | ||||
| * | | | Use the query builder for the joblist queries | Joas Schilling | 2015-12-18 | 1 | -9/+4 |
| | | | | |||||
* | | | | Use TempManager instead of tmpFile | Morris Jobke | 2015-12-18 | 3 | -6/+6 |
| | | | | |||||
* | | | | Use TempManager instead of tmpFolder | Morris Jobke | 2015-12-18 | 12 | -13/+13 |
| |/ / |/| | | |||||
* | | | Merge pull request #21268 from owncloud/cleanup-OC_Helper-getFileNameMimeType | Thomas Müller | 2015-12-18 | 1 | -9/+0 |
|\ \ \ | | | | | | | | | Use proper public API for OC_Helper::getFileNameMimeType | ||||
| * | | | Use proper public API for OC_Helper::getFileNameMimeType | Morris Jobke | 2015-12-17 | 1 | -9/+0 |
| | | | | |||||
* | | | | Merge pull request #21264 from owncloud/deprecated_oc_user_methods | Thomas Müller | 2015-12-18 | 12 | -70/+67 |
|\ \ \ \ | |_|/ / |/| | | | Cleanup OC_User deprecated methods |