Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #1007 from nextcloud/shared-storage-non-recursive | Lukas Reschke | 2016-08-23 | 3 | -104/+106 |
|\ | | | | | Fix shared storage recursive setup | ||||
| * | prevent infinite recursion while getting storage from mount | Robin Appelman | 2016-08-23 | 1 | -8/+10 |
| | | |||||
| * | Allow jail wrappers to lazily initialize the source storage | Robin Appelman | 2016-08-22 | 1 | -41/+41 |
| | | |||||
| * | Allow storage wrappers to lazily initialize the source storage | Robin Appelman | 2016-08-22 | 1 | -55/+55 |
| | | |||||
* | | Merge pull request #995 from nextcloud/workflow-section | Lukas Reschke | 2016-08-23 | 2 | -6/+11 |
|\ \ | | | | | | | Workflow section + hidden empty sections | ||||
| * | | Save the container with the app's namespace so we can resolve it | Joas Schilling | 2016-08-22 | 1 | -1/+2 |
| | | | |||||
| * | | fix wrong var name | Arthur Schiwon | 2016-08-22 | 1 | -1/+1 |
| | | | |||||
| * | | enlist only registered sections that also have settings registered to | Arthur Schiwon | 2016-08-22 | 1 | -4/+8 |
| |/ | |||||
* | | Cache registered autoloaders | Lukas Reschke | 2016-08-22 | 1 | -0/+6 |
| | | | | | | | | | | | | This saves more than 20ms (!) on every request, the previous problem was that `\OC_App::registerAutoloading` calls `\OC\AppFramework\App::buildAppNamespace` which parses the appinfo.xml. Since that was also called multiple times (e.g. on cloud.nextcloud.com over 200 times) that had a significant performance impact. Also on simple PROPFIND requests. https://blackfire.io/profiles/compare/65a53e6e-7f35-4974-b559-4c81abd01c3b/graph shows the difference nicely. | ||||
* | | hide parameters of tryLogin when logging | Arthur Schiwon | 2016-08-22 | 1 | -0/+3 |
|/ | |||||
* | Remove reading PATH_INFO from server variable | Lukas Reschke | 2016-08-19 | 1 | -4/+0 |
| | | | | | | Having two code paths for this is unreliable and can lead to bugs. Also, in some cases Apache isn't setting the PATH_INFO variable when mod_rewrite is used. Fixes https://github.com/nextcloud/server/issues/983 | ||||
* | Fix loading of ThemingDefaults | Julius Haertl | 2016-08-19 | 1 | -1/+1 |
| | |||||
* | Merge pull request #865 from nextcloud/ocs_config | Morris Jobke | 2016-08-19 | 2 | -67/+0 |
|\ | | | | | Move OCS route /config to proper controller | ||||
| * | Remove unused private classes | Roeland Jago Douma | 2016-08-18 | 2 | -67/+0 |
| | | |||||
* | | Merge pull request #934 from nextcloud/add-cachebusters | blizzz | 2016-08-18 | 1 | -0/+1 |
|\ \ | | | | | | | Add cachebusters | ||||
| * | | Add cache buster to left menu bar | Lukas Reschke | 2016-08-18 | 1 | -0/+1 |
| |/ | |||||
* | | Merge pull request #931 from nextcloud/replace-hardcoded-classname | blizzz | 2016-08-18 | 1 | -4/+4 |
|\ \ | | | | | | | let the containers resolving capabilities find and instantiate the ri… | ||||
| * | | let the containers resolving capabilities find and instantiate the right service | Arthur Schiwon | 2016-08-18 | 1 | -4/+4 |
| |/ | |||||
* / | Fix "Undefined index" when the values do not exist | Joas Schilling | 2016-08-18 | 1 | -2/+2 |
|/ | |||||
* | Merge pull request #848 from nextcloud/public-link-quota | Lukas Reschke | 2016-08-17 | 1 | -1/+13 |
|\ | | | | | fix getting quota for public links with quota_include_external_storage | ||||
| * | fix getting quota for public links with quota_include_external_storage | Robin Appelman | 2016-08-12 | 1 | -1/+13 |
| | | |||||
* | | Merge pull request #867 from nextcloud/notification-primary-action-always-first | Roeland Jago Douma | 2016-08-17 | 1 | -1/+5 |
|\ \ | | | | | | | Make sure the primary action is always the first one | ||||
| * | | Make sure the primary action is always the first one | Joas Schilling | 2016-08-15 | 1 | -1/+5 |
| |/ | |||||
* | | Merge pull request #899 from nextcloud/nfd-default | Robin Appelman | 2016-08-17 | 1 | -1/+1 |
|\ \ | | | | | | | [us] Disable NFD encoding wrapper by default | ||||
| * | | Disable NFD encoding wrapper by default | Vincent Petry | 2016-08-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | Seems I forgot to set it back to false after testing. Will give a performance boost for all storages. | ||||
* | | | Merge pull request #892 from nextcloud/fix_phpdoc | Roeland Jago Douma | 2016-08-17 | 2 | -4/+4 |
|\ \ \ | | | | | | | | | Some scrutinizer phpdoc fixes | ||||
| * | | | Fix phpdoc in Comments | Roeland Jago Douma | 2016-08-16 | 1 | -3/+3 |
| | | | | |||||
| * | | | Fix phpdoc | Roeland Jago Douma | 2016-08-16 | 1 | -1/+1 |
| | | | | |||||
* | | | | Merge pull request #846 from nextcloud/provisioning_api_ocs | Joas Schilling | 2016-08-17 | 2 | -3/+61 |
|\ \ \ \ | | | | | | | | | | | Move Provisioning API to the AppFramework | ||||
| * | | | | Extend OCSMiddleware | Roeland Jago Douma | 2016-08-14 | 1 | -2/+60 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Always set 401 (v1.php and v2.php) * Set proper error codes for v2.php * Proper OCS output on unhandled exceptions | ||||
| * | | | | Move OCS Middleware before security middleware | Roeland Jago Douma | 2016-08-14 | 1 | -1/+1 |
| | |_|/ | |/| | | | | | | | | | | | | | | This is required to be able to catch the NotLoggedIn exceptions etc in the OCSMiddleware and convert them to proper OCS Responses. | ||||
* | | | | Merge pull request #893 from nextcloud/ie8_be_gone | Marius Blüm | 2016-08-17 | 1 | -1/+0 |
|\ \ \ \ | | | | | | | | | | | IE8 be gone! | ||||
| * | | | | Remove IE_8 user agent string | Roeland Jago Douma | 2016-08-16 | 1 | -1/+0 |
| | |/ / | |/| | | |||||
* | | | | Merge branch 'master' into implement_712 | Arthur Schiwon | 2016-08-16 | 3 | -10/+27 |
|\| | | | |||||
| * | | | Merge pull request #864 from nextcloud/us_25652 | Joas Schilling | 2016-08-16 | 1 | -5/+9 |
| |\ \ \ | | |_|/ | |/| | | [us] Ensure the user exists before calling a method on it | ||||
| | * | | use $userId instead of $user | Jörn Friedrich Dreyer | 2016-08-14 | 1 | -3/+3 |
| | | | | |||||
| | * | | Ensure the user exists before calling a method on it - fixes #24751 | Thomas Müller | 2016-08-14 | 1 | -3/+7 |
| | |/ | |||||
| * | | Merge pull request #886 from nextcloud/capabilities_error_proof | Björn Schießle | 2016-08-16 | 2 | -5/+18 |
| |\ \ | | | | | | | | | Make the capabilities manager more error proof | ||||
| | * | | Make the capabilities manager more error proof | Roeland Jago Douma | 2016-08-15 | 2 | -5/+18 |
| | |/ | | | | | | | | | | | | | | | | | | | If an app registers an invalid capabilty we should not crash hard. Instead we should catch the exception. Log it (error) and carry on. * Added tests | ||||
* | | | add missing encryption modules to settings | Arthur Schiwon | 2016-08-16 | 1 | -0/+13 |
| | | | |||||
* | | | fix missing parameters in sharing settings page | Arthur Schiwon | 2016-08-16 | 1 | -6/+17 |
| | | | |||||
* | | | check registered sections and settings after an app got updated to garbage ↵ | Arthur Schiwon | 2016-08-16 | 3 | -0/+127 |
| | | | | | | | | | | | | collect orphaned classes | ||||
* | | | attempt to remove section and settings entries when an app got disabled | Arthur Schiwon | 2016-08-16 | 1 | -0/+33 |
| | | | |||||
* | | | Merge branch 'master' into implement_712 | Lukas Reschke | 2016-08-15 | 5 | -26/+34 |
|\| | | |||||
| * | | Add PHPdoc | Roeland Jago Douma | 2016-08-15 | 1 | -3/+5 |
| | | | |||||
| * | | missing PHPDoc | Jörn Friedrich Dreyer | 2016-08-14 | 1 | -0/+1 |
| | | | |||||
| * | | Type compatability | Jörn Friedrich Dreyer | 2016-08-14 | 1 | -1/+1 |
| | | | |||||
| * | | Method is deprecated | Jörn Friedrich Dreyer | 2016-08-14 | 1 | -3/+3 |
| | | | |||||
| * | | Unreachable statement | Jörn Friedrich Dreyer | 2016-08-14 | 1 | -4/+1 |
| | | | |||||
| * | | Unnecessary fully qualified names | Jörn Friedrich Dreyer | 2016-08-14 | 4 | -17/+25 |
| |/ |