Vincent Petry
89cbd7b1c1
Fix doc link in sharing settings
...
The doc link "i" icon was on the wrong line.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2021-11-19 14:58:44 +01:00
Vincent Petry
49e35ff2cc
Fix mainfileinfodetailsview appending
...
Since the jquery update to 3.5.0, it seems Handlebars doesn't correctly
render self-closed elements. This fixes mainfileinfodetailsview template
to not use self-closed elements and fixes the JS unit tests.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-11-19 13:42:40 +00:00
Joas Schilling
615a8e60ba
App summary is optional
...
Fixing:
Error: Undefined index: summary at /var/www/html/apps/theming/lib/Controller/ThemingController.php#392
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-11-19 14:02:03 +01:00
Nextcloud bot
c35ad0c20d
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-11-19 02:38:13 +00:00
Vincent Petry
ba8b55f4d6
Fix action share icon markup
...
Expanded the empty span tag to resolve issue with wrong appending done
by either handlebars or jquery.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2021-11-18 15:41:26 +01:00
dependabot[bot]
a2bd8ca820
Bump jquery from 3.3.1 to 3.6.0
...
Bumps [jquery](https://github.com/jquery/jquery ) from 3.3.1 to 3.6.0.
- [Release notes](https://github.com/jquery/jquery/releases )
- [Commits](https://github.com/jquery/jquery/compare/3.3.1...3.6.0 )
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-11-18 15:41:26 +01:00
acsfer
152e2bfdaa
Check for disk_free_space
...
Check for `disk_free_space` before calling it.
Fix https://github.com/nextcloud/server/issues/29748
2021-11-18 11:46:13 +01:00
Joas Schilling
2df7ea7dae
Merge pull request #29752 from nextcloud/fix/allow-some-pages-without-two-factor
...
Explicitly allow access on some (public) routes also without 2FA
2021-11-18 10:43:28 +01:00
Christoph Wurst
781ec814e6
Do not print verbose info about app updates if there are none
...
This is cosmetical but if you have a large number of apps installed then
you'll see a wall of text during the server and app upgrade when it
tries to update each app via the app store. In may cases nothing will be
updated. For those boring cases we can hide the verbose info, but show
when occ is run with -v. Any actual update will still print a few lines.
Those are the important ones for the admin.
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-11-18 09:11:22 +01:00
Nextcloud bot
69ab7b4a27
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-11-18 02:25:38 +00:00
Christoph Wurst
c8caba265f
Explicitly allow some routes without 2FA
...
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2021-11-17 18:42:21 +01:00
Joas Schilling
e272ac258a
Merge pull request #29747 from nextcloud/allow-to-serve-static-webassembly-and-tensorflow-lite-files
...
Allow to serve static WebAssembly and TensorFlow Lite files
2021-11-17 15:09:21 +01:00
Daniel Calviño Sánchez
24bc96ad09
Allow to serve static WebAssembly and TensorFlow Lite files
...
Since Talk 13 (and thus Nextcloud 23) WebAssembly (.wasm) and TensorFlow
Lite (.tflite) files need to be loaded from the web server to provide
certain features (like the background blur in the WebUI).
Those files can be treated in a similar way to other static resources,
and there should not be any problem caching or compressing them.
However, as compressed TensorFlow Lite files are only ~12% smaller,
the compression directive depends on the MIME type and there is no
standard MIME type for TensorFlow Lite files it is not worth to compress
them.
Moreover, no directives to compress WebAssembly files were added either,
as it seems that they would override any other compression directives
set in the default server configuration; for reference it could be done
with something like:
<IfModule mod_deflate.c>
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE application/wasm
</IfModule>
</IfModule>
Depending on the setup "application/wasm" may not be associated with
".wasm" files, so the directive was added just in case, as otherwise
browsers log a warning.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2021-11-17 13:00:39 +01:00
Vincent Petry
c833a4bfec
Merge pull request #29734 from nextcloud/rakekniven-patch-2
...
Fixed grammar
2021-11-17 12:02:51 +01:00
Vincent Petry
c92a0e4152
Normalize directory entries in Encoding wrapper
...
Directory entry file names are now normalized in getMetaData(),
getDirectoryContents() and opendir().
This makes the scanner work properly as it assumes pre-normalized names.
In case the names were not normalized, the scanner will now skip the
entries and display a warning when applicable.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2021-11-17 09:43:25 +01:00
Vincent Petry
67ebe75d0e
Move storage encoding compatibility warning logic
...
The encoding check for file names is now happening the Scanner, and an
event will be emitted only if the storage doesn't contain the encoding
compatibility wrapper.
The event is listened to by the occ scan command to be able to display a
warning in case of file name mismatches when they have NFD encoding.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2021-11-17 09:24:13 +01:00
Vincent Petry
39fe43b914
Normalize file name before existence check in scanner
...
The scanner would not find a NFD-encoded file name in an
existing file list that is normalized.
This normalizes the file name before scanning.
Fixes issues where scanning repeatedly would make NFD files flicker in
and out of existence in the file cache.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2021-11-17 09:24:13 +01:00
Nextcloud bot
0a82d2ea3a
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-11-17 02:45:31 +00:00
MichaIng
ab293aaba9
Merge pull request #29570 from nextcloud/dependabot/npm_and_yarn/build/puppeteer-11.0.0
...
Bump puppeteer from 10.4.0 to 11.0.0 in /build
2021-11-17 03:05:22 +01:00
dependabot[bot]
abe48d75df
Merge pull request #29577 from nextcloud/dependabot/composer/build/integration/behat/behat-approx-3.10.0
2021-11-17 01:52:50 +00:00
dependabot[bot]
f11d0fe00c
Bump puppeteer from 10.4.0 to 11.0.0 in /build
...
Bumps [puppeteer](https://github.com/puppeteer/puppeteer ) from 10.4.0 to 11.0.0.
- [Release notes](https://github.com/puppeteer/puppeteer/releases )
- [Changelog](https://github.com/puppeteer/puppeteer/blob/main/CHANGELOG.md )
- [Commits](https://github.com/puppeteer/puppeteer/compare/v10.4.0...v11.0.0 )
---
updated-dependencies:
- dependency-name: puppeteer
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-11-17 01:18:54 +00:00
dependabot[bot]
c1cf89e430
Update behat/behat requirement in /build/integration
...
Updates the requirements on [behat/behat](https://github.com/Behat/Behat ) to permit the latest version.
- [Release notes](https://github.com/Behat/Behat/releases )
- [Changelog](https://github.com/Behat/Behat/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Behat/Behat/compare/v3.9.0...v3.10.0 )
---
updated-dependencies:
- dependency-name: behat/behat
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-11-17 01:17:11 +00:00
Vincent Petry
67ff36bd0c
Merge pull request #29695 from YoitoFes/fix_missing_setlocale
...
Fix missing setlocale with php 8
2021-11-16 18:49:37 +01:00
rakekniven
80e0e339a3
Fixed grammar
...
Reported at Transifex.
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
2021-11-16 18:13:05 +01:00
Naoto Kobayashi
6fc8694324
OC_Util::isNonUTF8Locale: fix lint error
...
Signed-off-by: Naoto Kobayashi <naoto.kobayashi4c@gmail.com>
2021-11-16 21:05:43 +09:00
Carl Schwan
6ea81dd2cb
Merge pull request #29683 from nextcloud/bugfix/29676/fix-theming-dependencies
...
Fix core depending on theming app
2021-11-16 11:33:08 +01:00
Nextcloud bot
287e048d40
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-11-16 02:24:16 +00:00
John Molakvoæ
7c4e76b9a8
Merge pull request #29714 from nextcloud/bump-doctrine-dbal
2021-11-15 19:55:14 +01:00
Joas Schilling
18f3d836a5
Bump doctrine/dbal to 3.1.4
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-11-15 18:54:06 +01:00
Joas Schilling
5bb49feef8
Allow NULL as well for limit, not integer only
...
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-11-15 18:51:28 +01:00
MichaIng
9189bc21fb
Correct comment about OC_Defaults being used
...
Signed-off-by: MichaIng <micha@dietpi.com>
2021-11-15 18:44:02 +01:00
Naoto Kobayashi
c42c972ab0
OC_Util::isSetLocaleWorking: fix typo
...
Signed-off-by: Naoto Kobayashi <naoto.kobayashi4c@gmail.com>
2021-11-16 00:46:21 +09:00
Naoto Kobayashi
e9b414fbe3
OC_Util: Add fallbacks to check if current locale is UTF8
...
Using escapeshellcmd to get current locale causes error
if the function is disabled.
Add fallbacks to prevent the error.
Signed-off-by: Naoto Kobayashi <naoto.kobayashi4c@gmail.com>
2021-11-16 00:40:52 +09:00
szaimen
d706c7e062
Merge pull request #29679 from nextcloud/enh/18685/dont-flash
...
don't flash external storage mountpoints during the status check
2021-11-15 13:09:49 +01:00
Louis
582234322a
Merge pull request #29688 from nextcloud/dependabot/npm_and_yarn/marked-4.0.2
...
Bump marked from 3.0.7 to 4.0.2
2021-11-15 11:30:02 +01:00
Louis
2ff24c0cfd
Merge pull request #29689 from nextcloud/dependabot/npm_and_yarn/nextcloud/stylelint-config-2.0.1
...
Bump @nextcloud/stylelint-config from 1.0.0-beta.0 to 2.0.1
2021-11-15 11:29:00 +01:00
Naoto Kobayashi
25f15f86a9
Add check whether escapeshellcmd behaves the same as basename
...
Signed-off-by: Naoto Kobayashi <naoto.kobayashi4c@gmail.com>
2021-11-15 18:33:50 +09:00
Christoph Wurst
98b963e8a2
Merge pull request #29661 from nextcloud/enhancement/calendar-search-properties-api
...
Document and type allowed property names for calendar property searches
2021-11-15 10:02:47 +01:00
Nextcloud bot
788a1fcca4
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-11-15 02:24:28 +00:00
Nextcloud bot
72787cdcfd
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-11-14 02:25:33 +00:00
Naoto Kobayashi
d2eb5aaa6d
Check whether setlocale works only after setlocale
...
Signed-off-by: Naoto Kobayashi <naoto.kobayashi4c@gmail.com>
2021-11-14 09:18:59 +09:00
Naoto Kobayashi
455bff5c17
Fix missing setlocale with php 8
...
When php version = 8, basename('§') does not bug even if LC_ALL is non-UTF-8 locale.
This cause OC_Util::isSetLocaleWorking() to skip setlocale("C.UTF-8").
Fix it by using escapeshellcmd instead of basename.
Signed-off-by: Naoto Kobayashi <naoto.kobayashi4c@gmail.com>
2021-11-14 09:18:59 +09:00
dependabot[bot]
835b4bb2cd
Merge pull request #29657 from nextcloud/dependabot/npm_and_yarn/moment-timezone-0.5.34
2021-11-14 00:01:09 +00:00
dependabot[bot]
38ca1c2052
Bump moment-timezone from 0.5.33 to 0.5.34
...
Bumps [moment-timezone](https://github.com/moment/moment-timezone ) from 0.5.33 to 0.5.34.
- [Release notes](https://github.com/moment/moment-timezone/releases )
- [Changelog](https://github.com/moment/moment-timezone/blob/develop/changelog.md )
- [Commits](https://github.com/moment/moment-timezone/compare/0.5.33...0.5.34 )
---
updated-dependencies:
- dependency-name: moment-timezone
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-11-14 00:17:25 +01:00
dependabot[bot]
b55e173128
Bump marked from 3.0.7 to 4.0.2
...
Bumps [marked](https://github.com/markedjs/marked ) from 3.0.7 to 4.0.2.
- [Release notes](https://github.com/markedjs/marked/releases )
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json )
- [Commits](https://github.com/markedjs/marked/compare/v3.0.7...v4.0.2 )
---
updated-dependencies:
- dependency-name: marked
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2021-11-13 15:53:31 +00:00
dependabot[bot]
bbf01e137e
Merge pull request #29690 from nextcloud/dependabot/npm_and_yarn/jsdom-18.1.0
2021-11-13 04:57:51 +00:00
Nextcloud bot
7071d056a2
[tx-robot] updated from transifex
...
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-11-13 02:25:42 +00:00
dependabot[bot]
ea04dc02b1
Bump jsdom from 18.0.1 to 18.1.0
...
Bumps [jsdom](https://github.com/jsdom/jsdom ) from 18.0.1 to 18.1.0.
- [Release notes](https://github.com/jsdom/jsdom/releases )
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md )
- [Commits](https://github.com/jsdom/jsdom/compare/18.0.1...18.1.0 )
---
updated-dependencies:
- dependency-name: jsdom
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-11-13 02:05:28 +00:00
dependabot[bot]
cadfd3ef6b
Bump @nextcloud/stylelint-config from 1.0.0-beta.0 to 2.0.1
...
Bumps [@nextcloud/stylelint-config](https://github.com/nextcloud/stylelint-config ) from 1.0.0-beta.0 to 2.0.1.
- [Release notes](https://github.com/nextcloud/stylelint-config/releases )
- [Changelog](https://github.com/nextcloud/stylelint-config/blob/master/CHANGELOG.md )
- [Commits](https://github.com/nextcloud/stylelint-config/commits/v2.0.1 )
---
updated-dependencies:
- dependency-name: "@nextcloud/stylelint-config"
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-11-13 02:04:17 +00:00
Joas Schilling
f9f02ef45c
Merge pull request #29682 from nextcloud/bugfix/29678/fix-missing-token-update
...
Fix missing token update
2021-11-12 15:46:59 +01:00