Commit Graph

40559 Commits

Author SHA1 Message Date
Morris Jobke e328ced179
Merge pull request #8184 from robert-scheck/pki-validation-stable12
[stable12] Handle SSL certificate verifications for others than Let's Encrypt
2018-02-08 11:02:56 +01:00
Joas Schilling 3cfde4969f
Merge pull request #8254 from nextcloud/12-8252
[stable12] Remove invalid link to documentation
2018-02-08 10:20:56 +01:00
Morris Jobke 2be70b1a65
Merge pull request #8216 from nextcloud/6830_12
Nextcloud 12 is not compatible with newer than php 7.1
2018-02-08 09:17:56 +01:00
Roeland Jago Douma 80bb01c26f
Merge pull request #8251 from nextcloud/8233_12
[stable12] actually return stream from swift
2018-02-08 09:10:59 +01:00
Morris Jobke 342142cecb
Remove invalid link to documentation
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-02-08 08:48:30 +01:00
Robin Appelman ce4f74bec2
actually return stream from swift
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-02-08 08:12:51 +01:00
Nextcloud bot d36b9c7479
[tx-robot] updated from transifex 2018-02-08 01:10:51 +00:00
Joas Schilling c1165f6037
Merge pull request #8229 from nextcloud/dav-dir-exception-previous-12
[12] keep previous exception when transforming to dav exception
2018-02-07 17:07:47 +01:00
Robin Appelman dbc99e47ef
keep previous exception when transforming to dav exception
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-02-07 14:44:32 +01:00
Roeland Jago Douma 88e4da2a83
Nextcloud 12 is not compatible with newer than php 7.1
Just to avoid users from trying this with a to new (untested) php version

* Moved the check logic to 1 place
* All directly callable scripts just require this on top
* exit hard (-1) so we know scripts won't continue
* Return status 500 so no sync clients will try fancy stuff

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-02-07 13:38:37 +01:00
Nextcloud bot e2fddd29d1
[tx-robot] updated from transifex 2018-02-07 11:32:21 +00:00
Nextcloud bot 1a6f21d6d3
[tx-robot] updated from transifex 2018-02-07 01:10:47 +00:00
Morris Jobke 7e72a26dc7
Merge pull request #8196 from nextcloud/8160_12
[stable 12] Do not try to get the jailed path if we can't find the id
2018-02-06 14:21:11 +01:00
Roeland Jago Douma 10efe528ed
Do not try to get the jailed path if we can't find the id
Fixes #8047

If we can't find the file by id there we should just return null instead
of trying to get the jailed path of null.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-02-06 12:21:27 +01:00
Nextcloud bot 3df8021406
[tx-robot] updated from transifex 2018-02-06 01:10:45 +00:00
Robert Scheck 38c12ca764 Handle SSL certificate verifications for others than Let's Encrypt
Do no longer (wrongly) rewrite URLs like

  * http://example.net/.well-known/pki-validation/file.txt (Comodo)
  * http://example.net/.well-known/pki-validation/fileauth.txt (DigiCert, Thawte, GeoTrust)
  * http://example.net/.well-known/pki-validation/gsdv.txt (GlobalSign)
  * http://example.net/.well-known/pki-validation/starfield.htm (Starfield, GoDaddy)
  * http://example.net/.well-known/pki-validation/swisssign-check.txt (SwissSign)

for automated SSL certificate verifications. All (common commercial)
certificate authorities (CA) except Let's Encrypt (via ACME) seem to
use "pki-validation" rather "acme-challenge" for their domain control
validation (DCV).

Signed-off-by: Robert Scheck <robert@fedoraproject.org>
2018-02-05 15:39:13 +01:00
Nextcloud bot 6b4ddfd8b4
[tx-robot] updated from transifex 2018-02-05 01:10:41 +00:00
Nextcloud bot 2a7e629ca5
[tx-robot] updated from transifex 2018-02-04 01:10:51 +00:00
Nextcloud bot b63c93367f
[tx-robot] updated from transifex 2018-02-03 01:10:55 +00:00
Morris Jobke 02fba904f4
Merge pull request #8152 from nextcloud/12-8150
[stable12] Update CRL because user_sql cert was lost
2018-02-02 13:34:47 +01:00
Morris Jobke f2e83c2999
Update CRL because user_sql cert was lost
* see https://github.com/nextcloud/app-certificate-requests/pull/129

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-02-02 12:01:29 +01:00
Nextcloud bot 26beb5b7f3
[tx-robot] updated from transifex 2018-02-02 01:10:40 +00:00
Nextcloud bot 6fe9d1b57b
[tx-robot] updated from transifex 2018-02-01 18:28:32 +00:00
Nextcloud bot 4620eb8515
[tx-robot] updated from transifex 2018-02-01 17:20:21 +00:00
Nextcloud bot e6fef3b529
[tx-robot] updated from transifex 2018-02-01 01:11:19 +00:00
Daniel Calviño Sánchez 16b0b3f418 Fix own avatar not updated when display name is changed
The avatar endpoint returns the avatar image or, if the user has no
avatar, the display name. In that later case the avatar is generated on
the browser based on the display name. The avatar endpoint response is
cached, so when the display name changes and the avatar is got again the
browser could use the cached value, in which case it would use the same
display name as before and the avatar would not change.

When the avatar is an image the cache is invalidated with the use of
the "version" parameter, which is increased when the image changes. When
the avatar cache was first introduced only the image avatars were
cached, but it was later changed to cache all avatar responses to limit
the requests made to the server. Thus, now the cache of the display name
is invalidated too by increasing the version of the avatar if the
display name changes and there is no explicit avatar set.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-01-31 18:32:36 +01:00
Nextcloud bot 0809f2ad87
[tx-robot] updated from transifex 2018-01-31 01:11:16 +00:00
Nextcloud bot 2d04a1e1a9
[tx-robot] updated from transifex 2018-01-30 01:11:32 +00:00
Robin Appelman 8d5b86c159
Use S3Client::upload instead of splitting single/multipart upload ourselves
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-01-29 16:11:23 +01:00
Nextcloud bot 9eddb015c1
[tx-robot] updated from transifex 2018-01-29 01:11:18 +00:00
Morris Jobke bae874c9b6
Merge pull request #8074 from nextcloud/stable12-8069
[stable12] do not catch and ignore ServerNotAvailable in the wrong spot
2018-01-27 13:46:17 +01:00
Nextcloud bot 15551aafd1
[tx-robot] updated from transifex 2018-01-27 01:11:17 +00:00
Arthur Schiwon 23ffae497e
do not catch ServerNotAvailable
might cause the user to be unavailable (race condition).

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-01-26 15:38:48 +01:00
Nextcloud bot 355bc845ee
[tx-robot] updated from transifex 2018-01-26 01:11:18 +00:00
Nextcloud bot c3aa2fcacc
[tx-robot] updated from transifex 2018-01-25 01:11:30 +00:00
Morris Jobke 59a8cd3efc
Merge pull request #8022 from nextcloud/fix-jquery-ui-theming
[stable12] Fix jquery-ui theming
2018-01-24 15:41:17 +01:00
Morris Jobke b42d8ca77d
Merge pull request #7797 from nextcloud/stable12-7709-fix-password-displayed-as-username-in-password-manager
[stable12] Fix password displayed as username in Firefox password manager dialog
2018-01-24 15:33:04 +01:00
Morris Jobke f8da92d8fa
Merge pull request #8006 from nextcloud/stable12-7292
[stable12] Fix #4789: Group admins cannot see disabled users
2018-01-24 14:19:33 +01:00
Julius Härtl add38859eb
Fix jquery-ui theming
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-01-24 14:03:59 +01:00
Morris Jobke 42633b4d02
Merge pull request #8015 from nextcloud/final-12.0.5
Final 12.0.5
2018-01-24 10:35:25 +01:00
Morris Jobke 4e4f27b9a9
Final 12.0.5
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-01-24 09:59:05 +01:00
Nextcloud bot ef41c07543
[tx-robot] updated from transifex 2018-01-24 01:11:16 +00:00
Neraste 308891f9bd
Fix #4789: Group admins cannot see disabled users
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2018-01-23 16:07:23 +01:00
Robin Appelman 0e30a0dd01
increase the time we wait for smb notifications in the test
Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-01-23 09:55:02 +01:00
Nextcloud bot dd03cc577c
[tx-robot] updated from transifex 2018-01-23 01:11:16 +00:00
Morris Jobke 74ee895cc7
Merge pull request #7981 from nextcloud/12.0.5-rc3-prep
12.0.5 RC3
2018-01-22 13:48:41 +01:00
Morris Jobke d095de5710
12.0.5 RC3
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-01-22 11:27:33 +01:00
Nextcloud bot c0806e5445
[tx-robot] updated from transifex 2018-01-22 01:11:06 +00:00
Nextcloud bot ae0641fccc
[tx-robot] updated from transifex 2018-01-21 01:11:18 +00:00
Nextcloud bot ac4b9b745d
[tx-robot] updated from transifex 2018-01-20 01:11:22 +00:00