summaryrefslogtreecommitdiffstats
path: root/lib/private
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1499 from nextcloud/updaterLukas Reschke2016-09-262-0/+82
|\ | | | | Add repair step and revert "Open updater" button
| * Add repair step to remove .step file after updateMorris Jobke2016-09-232-0/+82
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Merge pull request #1426 from nextcloud/sanitze_optLukas Reschke2016-09-261-1/+4
|\ \ | | | | | | Optimize sanitizeName
| * | Optimize sanitizeNameRoeland Jago Douma2016-09-161-1/+4
| | |
* | | Change the minimum log level to fatalJuan Pablo Villafáñez2016-09-261-1/+1
| | | | | | | | | | | | | | | | | | Downstreaming of https://github.com/owncloud/core/pull/26213 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | | Graceful error handling and loggingLukas Reschke2016-09-251-1/+16
| |/ |/| | | | | | | | | | | | | Right now a failed "copyr" will result in the error log being spammed with not really helpful error messages. Also situations such as `$dir` returning `false` are not really caught. This adds more error handling and logging to make debugging such situations easier. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | Use default value instead of throwing when the service could not be foundJoas Schilling2016-09-201-1/+10
| |
* | Add trict CSP to OCS responsesRoeland Jago Douma2016-09-152-1/+7
|/ | | | | If a repsonse now explicitly has the Empty CSP set then the middleware won't touch it.
* Merge pull request #1375 from ↵Lukas Reschke2016-09-141-2/+4
|\ | | | | | | | | nextcloud/display-that-updating-failed-for-htaccess Display an error when updating .htaccess failed
| * Update docsJoas Schilling2016-09-131-1/+2
| |
| * Display an error when updating .htaccess failedJoas Schilling2016-09-131-1/+2
| |
* | Merge pull request #1395 from nextcloud/issue-369-htaccess-max-sizesMorris Jobke2016-09-131-1/+1
|\ \ | | | | | | Make sure memory limit is > post size and upload filesize
| * | Make sure memory limit is > post size and upload filesizeJoas Schilling2016-09-131-1/+1
| |/
* | Merge pull request #1348 from karakayasemi/patch-1Roeland Jago Douma2016-09-131-1/+1
|\ \ | | | | | | Bug fix CachedMountInfo for user home storage
| * | Update CachedMountInfo for user home storageSemih Serhat Karakaya2016-09-091-1/+1
| | | | | | | | | | | | | | | | | | In getMountPointNode function rootId is not inside of the userFolder for home storage. We was searching '/user' folder in '/user/files' folder. So, it was return NULL. I moved searching part to parent folder. It solves everything. Also, obviously other storage types not affect then this change. Related owncloud commit : https://github.com/owncloud/core/pull/26017
* | | Merge pull request #1338 from nextcloud/fix-trashbin-errorsRoeland Jago Douma2016-09-132-0/+33
|\ \ \ | |_|/ |/| | Opening the trashbin causes errors in log for files without preview
| * | Opening the trashbin causes errors in log for files without previewMorris Jobke2016-09-092-0/+33
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * put a file without a generated preview in the trashbin (e.g. a *.docx file) * open the trashbin * following errors will show up in the nextcloud.log: - filesize(): stat failed for ... - fopen(...): failed to open stream: No such file or directory at ... - fread() expects parameter 1 to be resource, boolean given at ... - fclose() expects parameter 1 to be resource, boolean given at ... - imagecreatefromstring(): Empty string or invalid image at ... This is because the preview code tries to load an SVG image, which is obviously only text. The fix simply handles this before the loading happens and the web UI keeps showing the default mimetype icon.
* | Fix failing preview unit tests (#26039)Thomas Müller2016-09-121-1/+1
| |
* | Cache the build ControllerNameRoeland Jago Douma2016-09-111-1/+15
|/ | | | | | | | | Often a route.php file will have many N routes but only M controllers. Where N >= M. Which means that in most cases the ControllerName will be converted multiple times. This is of course far from ideal. Note that this is per app so the cache will contain at most N entries. Which is not to bad.
* Merge pull request #1317 from nextcloud/add-sharing-disclaimerMorris Jobke2016-09-081-0/+1
|\ | | | | Adding a optional disclaimer to the anonymous upload page
| * Adding a optional disclaimer to the anonymous upload pageMorris Jobke2016-09-081-0/+1
| |
* | Merge pull request #1247 from nextcloud/storage-id-global-cacheMorris Jobke2016-09-083-4/+94
|\ \ | | | | | | more efficient querying of numeric storage ids
| * | more efficient querying of numeric storage idsRobin Appelman2016-09-073-4/+94
| | |
* | | Change updater URLJoas Schilling2016-09-081-1/+1
| | |
* | | Merge pull request #836 from nextcloud/php7.1Lukas Reschke2016-09-082-2/+6
|\ \ \ | | | | | | | | Add PHP 7.1 drone tests
| * | | Fix intergrity checkerRoeland Jago Douma2016-09-071-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | * Set salt length to 0 See https://tools.ietf.org/html/rfc3447#page-38 * Fix tests for new phpunit
| * | | Initialize array elements properlyThomas Müller2016-09-071-1/+1
| | |/ | |/|
* | | Merge pull request #1243 from nextcloud/fix-detection-of-file-types-a-bitJoas Schilling2016-09-081-2/+3
|\ \ \ | |/ / |/| | Fix detection of file types a bit
| * | Correctly remove the charset from finfo mimetypeJoas Schilling2016-09-051-2/+3
| | |
* | | Fix updater URLMorris Jobke2016-09-071-1/+1
| |/ |/|
* | Merge pull request #1287 from nextcloud/correctly-remove-admin-stuffRoeland Jago Douma2016-09-071-3/+3
|\ \ | | | | | | Correctly remove admin sections and settings
| * | Correctly remove admin sections and settingsJoas Schilling2016-09-061-3/+3
| | |
* | | Set proper content type on OCS responsesRoeland Jago Douma2016-09-071-0/+10
| | |
* | | Deprecate getEditionString()Joas Schilling2016-09-064-20/+5
| | |
* | | Merge pull request #1275 from nextcloud/OCS_forward_headers_cleanupMorris Jobke2016-09-064-38/+286
|\ \ \ | |/ / |/| | Internal OCS Controller cleanup
| * | Split OCS version handlingRoeland Jago Douma2016-09-064-38/+286
| | | | | | | | | | | | | | | | | | This cleans up a bit the OCSController/Middleware. Since the 2 versions of OCS differ a bit. Moved a lot of stuff internal since it is of no concern to the outside.
* | | Merge pull request #1235 from ↵Morris Jobke2016-09-061-1/+9
|\ \ \ | |/ / |/| | | | | | | | nextcloud/issue-1192-move-navigation-entries-without-order-to-the-end Move navigation entries without order to the end
| * | Move navigation entries without order to the endJoas Schilling2016-09-021-1/+9
| | |
* | | Merge pull request #1158 from nextcloud/cache_avatarsLukas Reschke2016-09-054-4/+25
|\ \ \ | | | | | | | | Cache avatars
| * | | Cache avatars properlyRoeland Jago Douma2016-08-304-4/+25
| | | | | | | | | | | | | | | | | | | | * Set proper caching headers for avatars (15 minutes) * For our own avatar use some extra logic to invalidate when we update
* | | | Merge pull request #1271 from nextcloud/fix-docs-for-notificationsJoas Schilling2016-09-051-3/+0
|\ \ \ \ | | | | | | | | | | Null !== void, those methods are void
| * | | | Null !== void, those methods are voidJoas Schilling2016-09-051-3/+0
| | |_|/ | |/| |
* | | | Merge pull request #1259 from nextcloud/language_orderJoas Schilling2016-09-052-20/+63
|\ \ \ \ | | | | | | | | | | ACCEPT_LANGUAGE goes before default_langauge
| * | | | ACCEPT_LANGUAGE goes before default_langaugeRoeland Jago Douma2016-09-042-20/+63
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://github.com/nextcloud/server/issues/970 Before we had 1. Users settings in personal settings 2. Admins default language settings 3. Accept-Language settings of the browser However this is not in line with https://www.w3.org/International/questions/qa-lang-priorities So this changes the order to 1. Users settings in personal settings 3. Accept-Language settings of the browser 2. Admins default language settings
* | | | Merge pull request #1171 from nextcloud/2fa-backup-codesMarius Blüm2016-09-051-2/+18
|\ \ \ \ | | | | | | | | | | add 2fa backup codes app
| * | | | add 2fa backup codes appChristoph Wurst2016-09-051-2/+18
| |/ / / | | | | | | | | | | | | | | | | * add backup codes app unit tests * add integration tests for the backup codes app
* / / / Use proper ALTER ROLE syntaxRoeland Jago Douma2016-09-051-1/+1
|/ / / | | | | | | | | | | | | | | | Fixes #1260 See https://www.postgresql.org/docs/9.0/static/sql-alterrole.html
* | | Merge pull request #1225 from nextcloud/allow-to-validate-password-policyRoeland Jago Douma2016-09-021-3/+9
|\ \ \ | | | | | | | | Allow to validate the password_policy app
| * | | Allow to validate the password_policy appJoas Schilling2016-09-011-3/+9
| | |/ | |/|
* | | Cache parsing of info.xmlRoeland Jago Douma2016-09-021-2/+11
| | |