summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Improve share select listJulius Härtl2018-10-303-1/+13
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Merge pull request #12085 from nextcloud/add-gss-to-excluded-backendsMorris Jobke2018-10-302-2/+7
|\ | | | | add global site selector as user back-end which doesn't support password confirmation
| * add global site selector as user back-end which doesn't support password ↵Bjoern Schiessle2018-10-272-2/+7
| | | | | | | | | | | | confirmation Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* | Merge pull request #12070 from nextcloud/fix/noid/announce-chosen-uidMorris Jobke2018-10-301-3/+3
|\ \ | | | | | | announce the chosen uid (fixes wrong variable usage)
| * | fixes wrong variable usageArthur Schiwon2018-10-261-3/+3
| | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | Merge pull request #12000 from ↵Roeland Jago Douma2018-10-302-1116/+93
|\ \ \ | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/build/karma-3.1.1 Bump karma from 2.0.4 to 3.1.1 in /build
| * | | Bump karma from 2.0.4 to 3.1.1 in /builddependabot[bot]2018-10-252-1116/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [karma](https://github.com/karma-runner/karma) from 2.0.4 to 3.1.1. - [Release notes](https://github.com/karma-runner/karma/releases) - [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md) - [Commits](https://github.com/karma-runner/karma/compare/v2.0.4...v3.1.1) Signed-off-by: dependabot[bot] <support@dependabot.com>
* | | | [tx-robot] updated from transifexNextcloud bot2018-10-3014-12/+136
| | | |
* | | | Merge pull request #11627 from nextcloud/feature/noid/cli-remove-appMorris Jobke2018-10-304-0/+152
|\ \ \ \ | | | | | | | | | | Add occ app:remove CLI command
| * | | | Use error styling for exception messagePatrik Kernstock2018-10-101-2/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Patrik Kernstock <info@pkern.at>
| * | | | Using Throwable instead of ExceptionPatrik Kernstock2018-10-101-2/+3
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Patrik Kernstock <info@pkern.at>
| * | | | Log exception using ILoggerPatrik Kernstock2018-10-052-2/+15
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Patrik Kernstock <info@pkern.at>
| * | | | Inject AppManager and Installer, check for shipped app prior removingPatrik Kernstock2018-10-052-7/+30
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Patrik Kernstock <info@pkern.at>
| * | | | Run uninstall tasks by default, added '--keep-data' parameterPatrik Kernstock2018-10-051-0/+19
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Patrik Kernstock <info@pkern.at>
| * | | | Fixed indentsPatrik Kernstock2018-10-052-2/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Patrik Kernstock <info@pkern.at>
| * | | | Add occ app:remove CLI commandPatrik Kernstock2018-10-054-0/+96
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Patrik Kernstock <info@pkern.at>
* | | | | Merge pull request #12052 from ↵Morris Jobke2018-10-293-30/+37
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/bugfix/11594/fix-setup-check-trusted-proxies Fix setup check trusted proxies
| * | | | | Update logic for forwardedForHeadersWorkingDaniel Kesselberg2018-10-252-28/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As discussed in https://github.com/nextcloud/server/issues/11594 when discovering if x-forwarded-for is working properly its not possible to use getRemoteAddr because the "client ip" is returned. For this check the ip of the last hop would be required. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
| * | | | | Add REMOTE_ADDR to getHeaderDaniel Kesselberg2018-10-251-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | | | | | Merge pull request #12127 from nextcloud/fix/proper_folder_mimetypeMorris Jobke2018-10-291-0/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | A folder should get a folder mimetype
| * | | | | | A folder should get a folder mimetypeRoeland Jago Douma2018-10-291-0/+5
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If doing achunked upload the mimetype of the folder would otherwise be guessed from the path. Which always returned application/octet-stream. If an access control rule to block that is in place this means that all chunked uploads fail hard in directories as the isCreatable on the directory always fails. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | | | Merge pull request #12113 from nextcloud/fileinfo-getextensionMorris Jobke2018-10-297-0/+36
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add getExtension() to FileInfo
| * | | | | | Add getExtension() to FileInfoRobin Appelman2018-10-297-0/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this is a fairly common operation so it makes sense to prevent having to repeatedly implement it. Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | | | Merge pull request #12107 from ↵Morris Jobke2018-10-292-1/+13
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/fix/12086/no-unintentional-empty-attributes remove unneeded empty LDAP search attribute values
| * | | | | | | remove unneeded empty search attribute values, fixes #12086Arthur Schiwon2018-10-292-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | | | | | | Merge pull request #12041 from nextcloud/gridfixesRoeland Jago Douma2018-10-291-1/+2
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Properly hide files when searching
| * | | | | | | | Properly hide files when searchingJohn Molakvoæ (skjnldsv)2018-10-291-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | | | | | | | Merge pull request #12019 from nextcloud/icons-svg-api-fixesJohn Molakvoæ2018-10-295-23/+25
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | Move svg api endpoint
| * | | | | | | | Fix testsJulius Härtl2018-10-292-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | | | Adjust accessibility app color replacementJulius Härtl2018-10-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | | | Fix icon cacher url matchingJulius Härtl2018-10-291-14/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
| * | | | | | | | Move svg api endpointJohn Molakvoæ (skjnldsv)2018-10-292-5/+5
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | | | | | | Merge pull request #12106 from nextcloud/bugfix/noid/federated-settings-logoRoeland Jago Douma2018-10-291-6/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix logo path in personal federated sharing settings
| * | | | | | | | Fix logo path in personal federated sharing settingsJulius Härtl2018-10-291-6/+1
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | | | | | | Merge pull request #12100 from ↵Roeland Jago Douma2018-10-292-110/+105
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/settings/webpack-4.23.1 Bump webpack from 4.22.0 to 4.23.1 in /settings
| * | | | | | | Bump webpack from 4.22.0 to 4.23.1 in /settingsdependabot[bot]2018-10-292-110/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [webpack](https://github.com/webpack/webpack) from 4.22.0 to 4.23.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.22.0...v4.23.1) Signed-off-by: dependabot[bot] <support@dependabot.com>
* | | | | | | | Merge pull request #12097 from ↵Roeland Jago Douma2018-10-292-4/+4
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/settings/vue-infinite-loading-2.4.0 Bump vue-infinite-loading from 2.3.5 to 2.4.0 in /settings
| * | | | | | | | Bump vue-infinite-loading from 2.3.5 to 2.4.0 in /settingsdependabot[bot]2018-10-292-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [vue-infinite-loading](https://github.com/PeachScript/vue-infinite-loading) from 2.3.5 to 2.4.0. - [Release notes](https://github.com/PeachScript/vue-infinite-loading/releases) - [Commits](https://github.com/PeachScript/vue-infinite-loading/compare/v2.3.5...v2.4.0) Signed-off-by: dependabot[bot] <support@dependabot.com>
* | | | | | | | | Merge pull request #12104 from ↵Roeland Jago Douma2018-10-297-92/+132
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/move-acceptance-tests-that-crash-the-php-built-in-server-to-apache Move acceptance tests that crash the PHP built-in server to Apache
| * | | | | | | | | Move acceptance tests that crash the PHP built-in server to ApacheDaniel Calviño Sánchez2018-10-293-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The PHP built-in server can crash when certain actions are performed in Nextcloud (but although the crash is triggered by Nextcloud it does not seem to be a Nextcloud bug), which can lead to failures in the acceptance tests that would have otherwise passed. A crash of the PHP built-in server during an acceptance test can be identified by the message "sh: 1: kill: No such process" in the acceptance tests output; as the PHP built-in server crashed its process does no longer exist when it is tried to be killed when the scenario ends. Although the crash has been observed in other tests too it is more prevalent in the tests for tags and the theming app. In order to reduce the false positives those tests are now run on Apache instead of on the PHP built-in sever. However, the rest of tests are still run on the PHP built-in server due to its lower resource consumption. In order to run a feature or just a scenario using Apache it has to be tagged with "@apache"; features or scenarios without that tag (the default) will run on the PHP built-in server instead. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | | | | | | Link the default Apache directory to the Nextcloud server in all runnersDaniel Calviño Sánchez2018-10-292-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In order to run the acceptance tests in Apache "/var/www/html" has to be linked to the root directory of the Nextcloud server. Before this was automatically done when launching the acceptance tests through "./run.sh", but an explicit command was needed when run in Drone. Now the linking was moved from "run.sh" to "run-local.sh", so it is automatically done when run through "./run.sh" and in Drone, including when running the tests for an app instead of for the server. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * | | | | | | | | Extract acceptance tests for tags to their own feature fileDaniel Calviño Sánchez2018-10-293-88/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | | | | | | | | Merge pull request #11993 from nextcloud/headings-standardsJohn Molakvoæ2018-10-293-17/+11
|\ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / |/| | | | | | | | | Headings standard
| * | | | | | | | | fixup! CleanupJohn Molakvoæ (skjnldsv)2018-10-281-11/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | | | | | | CleanupJohn Molakvoæ (skjnldsv)2018-10-232-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | | | | | | Reverted standardsJohn Molakvoæ (skjnldsv)2018-10-231-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
| * | | | | | | | | Headings standardJohn Molakvoæ (skjnldsv)2018-10-231-6/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* | | | | | | | | | Merge pull request #12099 from ↵Roeland Jago Douma2018-10-292-101/+101
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | nextcloud/dependabot/npm_and_yarn/apps/oauth2/webpack-4.23.1 Bump webpack from 4.22.0 to 4.23.1 in /apps/oauth2
| * | | | | | | | | Bump webpack from 4.22.0 to 4.23.1 in /apps/oauth2dependabot[bot]2018-10-292-101/+101
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [webpack](https://github.com/webpack/webpack) from 4.22.0 to 4.23.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v4.22.0...v4.23.1) Signed-off-by: dependabot[bot] <support@dependabot.com>
* | | | | | | | | Merge pull request #12076 from trendzetter/patch-3John Molakvoæ2018-10-291-1/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Add missing tag