Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-12-09 | 34 | -38/+250 | |
| | | | ||||||
* | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-12-08 | 18 | -96/+190 | |
| | | | ||||||
* | | | [stable 17] Fix removing groups that have a slash in the name (#18257) | John Molakvoæ | 2019-12-07 | 3 | -27/+27 | |
|\ \ \ | | | | | | | | | [stable 17] Fix removing groups that have a slash in the name | |||||
| * | | | Fix removing groups that have a slash in the name | Gary Kim | 2019-12-07 | 3 | -27/+27 | |
| | | | | | | | | | | | | | | | | Signed-off-by: Gary Kim <gary@garykim.dev> | |||||
* | | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-12-07 | 50 | -122/+276 | |
| | | | | ||||||
* | | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-12-06 | 88 | -6/+288 | |
| | | | | ||||||
* | | | | Merge pull request #18252 from nextcloud/17/bugfix/noid/tooltip-hide-date | Roeland Jago Douma | 2019-12-05 | 1 | -0/+1 | |
|\ \ \ \ | |_|/ / |/| | | | Hide the tooltip if the list row is rerendered | |||||
| * | | | Hide the tooltip if the list row is rerendered | Julius Härtl | 2019-12-05 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | |||||
* | | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-12-05 | 46 | -42/+318 | |
| | | | | ||||||
* | | | | Merge pull request #18205 from nextcloud/stable17-backport/18120 | Roeland Jago Douma | 2019-12-04 | 10 | -12/+125 | |
|\ \ \ \ | | | | | | | | | | | [stable17] Backport #18120 | |||||
| * | | | | respect shareapi_allow_share_dialog_user_enumeration in Principal backend ↵ | Georg Ehrke | 2019-12-03 | 10 | -12/+125 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for Sabre/DAV Signed-off-by: Georg Ehrke <developer@georgehrke.com> | |||||
* | | | | | Merge pull request #18221 from nextcloud/backport/17850/stable17 | Roeland Jago Douma | 2019-12-04 | 1 | -0/+6 | |
|\ \ \ \ \ | | | | | | | | | | | | | [stable17] Mark "Talk" active on /call/token URLs | |||||
| * | | | | | Mark "Talk" active on /call/token URLs | Joas Schilling | 2019-12-04 | 1 | -0/+6 | |
| | |_|/ / | |/| | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | |||||
* / | | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-12-04 | 44 | -14/+186 | |
|/ / / / | ||||||
* / / / | [tx-robot] updated from transifex | Nextcloud bot | 2019-12-04 | 60 | -314/+456 | |
|/ / / | ||||||
* | | | Merge pull request #18198 from nextcloud/backport/17443/stable17 | Christoph Wurst | 2019-12-03 | 4 | -0/+42 | |
|\ \ \ | | | | | | | | | [stable17] Throw an invalid token exception is token is marked outdated | |||||
| * | | | Throw an invalid token exception is token is marked outdated | Roeland Jago Douma | 2019-12-03 | 4 | -0/+42 | |
|/ / / | | | | | | | | | | | | | | | | | | | This avoids hitting the backend with multiple requests for the same token. And will help avoid quick LDAP lockouts. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | |||||
* | | | Merge pull request #18189 from nextcloud/backport/17939/stable17 | Roeland Jago Douma | 2019-12-03 | 2 | -20/+68 | |
|\ \ \ | | | | | | | | | [stable17] Handle token insert conflicts | |||||
| * | | | Handle token insert conflicts | Christoph Wurst | 2019-12-02 | 2 | -20/+68 | |
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Env-based SAML uses the "Apache auth" mechanism to log users in. In this code path, we first delete all existin auth tokens from the database, before a new one is inserted. This is problematic for concurrent requests as they might reach the same code at the same time, hence both trying to insert a new row wit the same token (the session ID). This also bubbles up and disables user_saml. As the token might still be OK (both request will insert the same data), we can actually just check if the UIDs of the conflict row is the same as the one we want to insert right now. In that case let's just use the existing entry and carry on. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | |||||
* / | | [tx-robot] updated from transifex | Nextcloud bot | 2019-12-03 | 116 | -448/+910 | |
|/ / | ||||||
* | | Merge pull request #18156 from nextcloud/backport/18135/stable17 | Roeland Jago Douma | 2019-12-02 | 1 | -1/+1 | |
|\ \ | | | | | | | [stable17] Trim the login name | |||||
| * | | Trim the login name | Christoph Wurst | 2019-11-29 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Otherwise we keep on using it with leading or trailing whitespaces for app tokens and other logic. The reason this doesn't throw an error immediately with local users is that (My)SQL compares strings regardless of their padding by default. So we look up 'uid ' and get the row for the user 'uid'. Other back-ends will lead to a hard error, though, and the user is unable to log out as all request fail. Ref https://stackoverflow.com/a/10495807/2239067 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | |||||
* | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-12-02 | 34 | -152/+696 | |
| | | | ||||||
* | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-12-01 | 8 | -36/+36 | |
| | | | ||||||
* | | | [stable17] Fix provisioning_api getUsers types (#18157) | John Molakvoæ | 2019-11-30 | 1 | -2/+2 | |
|\ \ \ | | | | | | | | | [stable17] Fix provisioning_api getUsers types | |||||
| * | | | Fix provisioning_api getUsers types | John Molakvoæ (skjnldsv) | 2019-11-29 | 1 | -2/+2 | |
| |/ / | | | | | | | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | |||||
* / / | [tx-robot] updated from transifex | Nextcloud bot | 2019-11-30 | 64 | -6/+470 | |
|/ / | ||||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2019-11-29 | 156 | -594/+784 | |
| | | ||||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2019-11-28 | 150 | -498/+502 | |
| | | ||||||
* | | Merge pull request #17919 from nextcloud/backport/17905/update-searchdav | Roeland Jago Douma | 2019-11-27 | 1 | -0/+0 | |
|\ \ | | | | | | | [stable17] Bump icewind/searchdav | |||||
| * | | [stable17] Bump icewind/searchdav | Daniel Kesselberg | 2019-11-13 | 1 | -0/+0 | |
| | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> | |||||
* | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-11-27 | 16 | -12/+112 | |
| | | | ||||||
* | | | Merge pull request #18100 from nextcloud/backport/18027/stable17 | Roeland Jago Douma | 2019-11-26 | 1 | -0/+3 | |
|\ \ \ | | | | | | | | | [stable17] Incorrect integer value: '' for column 'password_invalid' while migra… | |||||
| * | | | Incorrect integer value: '' for column 'password_invalid' while migrating ↵ | Łukasz Buśko | 2019-11-25 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | from pg to mysql #14920 Signed-off-by: Łukasz Buśko <busko.lukasz@pm.me> | |||||
* | | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-11-26 | 36 | -30/+168 | |
|/ / / | ||||||
* | | | Merge pull request #18054 from nextcloud/backport/18016/stable17 | Roeland Jago Douma | 2019-11-25 | 1 | -6/+9 | |
|\ \ \ | | | | | | | | | [stable17] make chunksize (used to check for gone LDAP users) configurable | |||||
| * | | | make chunksize (used to check for gone LDAP users) configurable | Arthur Schiwon | 2019-11-21 | 1 | -6/+9 | |
| | | | | | | | | | | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | |||||
* | | | | Merge pull request #18075 from nextcloud/backport/17696/stable17 | Roeland Jago Douma | 2019-11-25 | 1 | -2/+13 | |
|\ \ \ \ | | | | | | | | | | | [stable17] Remove objectstore credentials | |||||
| * | | | | Add information about credentials | Daniel Kesselberg | 2019-11-22 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> | |||||
| * | | | | Remove objectstore credentials | Daniel Kesselberg | 2019-11-22 | 1 | -1/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also remove the username for Swift v2 and add todo for unclear keys. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> | |||||
| * | | | | Remove objectstore credentials | Daniel Kesselberg | 2019-11-22 | 1 | -1/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | S3: key and secret Swift v3: user.name and user.password Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> | |||||
* | | | | | [stable17] Quickfix #17515 (#18094) | John Molakvoæ | 2019-11-25 | 1 | -0/+4 | |
|\ \ \ \ \ | | | | | | | | | | | | | [stable17] Quickfix #17515 | |||||
| * | | | | | Revert changes and add css-rule to correct file inside files-app | Robin Windey | 2019-11-24 | 1 | -0/+4 | |
| | | | | | | ||||||
* | | | | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-11-25 | 20 | -36/+72 | |
|/ / / / / | ||||||
* | | | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-11-24 | 4 | -4/+4 | |
| | | | | | ||||||
* | | | | | [tx-robot] updated from transifex | Nextcloud bot | 2019-11-23 | 20 | -52/+308 | |
|/ / / / | ||||||
* / / / | [tx-robot] updated from transifex | Nextcloud bot | 2019-11-22 | 38 | -124/+196 | |
|/ / / | ||||||
* | | | Merge pull request #18047 from nextcloud/backport/18030/stable17 | blizzz | 2019-11-21 | 1 | -8/+12 | |
|\ \ \ | | | | | | | | | [stable17] uid can be false when the user record does not exit | |||||
| * | | | uid can be false when the user record does not exit | Arthur Schiwon | 2019-11-21 | 1 | -8/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | fixes not loading files app for users who got a share by the gone LDAP user Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> | |||||
* | | | | Merge pull request #18040 from nextcloud/backport/18004/stable17 | Roeland Jago Douma | 2019-11-21 | 2 | -0/+8 | |
|\ \ \ \ | | | | | | | | | | | [stable17] Convert more columns to bigint |