From owner-svn-ports-head@freebsd.org Mon Oct 15 13:17:26 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66CDB10DB77A; Mon, 15 Oct 2018 13:17:26 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 197997441C; Mon, 15 Oct 2018 13:17:26 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0FF0B5AFD; Mon, 15 Oct 2018 13:17:26 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9FDHQaG055241; Mon, 15 Oct 2018 13:17:26 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9FDHPhF055236; Mon, 15 Oct 2018 13:17:25 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201810151317.w9FDHPhF055236@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Mon, 15 Oct 2018 13:17:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482155 - in head/www/nextcloud: . files X-SVN-Group: ports-head X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: in head/www/nextcloud: . files X-SVN-Commit-Revision: 482155 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2018 13:17:26 -0000 Author: brnrd Date: Mon Oct 15 13:17:24 2018 New Revision: 482155 URL: https://svnweb.freebsd.org/changeset/ports/482155 Log: www/nextcloud: Update to 14.0.3 - Add more guidance for users - Add config for options to sample Modified: head/www/nextcloud/Makefile head/www/nextcloud/distinfo head/www/nextcloud/files/config.sample.php.in head/www/nextcloud/files/pkg-message.in head/www/nextcloud/pkg-plist Modified: head/www/nextcloud/Makefile ============================================================================== --- head/www/nextcloud/Makefile Mon Oct 15 12:15:13 2018 (r482154) +++ head/www/nextcloud/Makefile Mon Oct 15 13:17:24 2018 (r482155) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= nextcloud -DISTVERSION= 14.0.1 -PORTREVISION= 1 +DISTVERSION= 14.0.3 CATEGORIES= www MASTER_SITES= https://download.nextcloud.com/server/releases/ PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} @@ -33,6 +32,7 @@ OPTIONS_GROUP_CACHING= APCU MEMCACHED OPCACHE REDIS OPTIONS_MULTI= DB OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE OPTIONS_DEFAULT= APCU EXIF INTL LDAP MYSQL OPCACHE SSL +OPTIONS_SUB= yes APCU_DESC= Local data caching using APCu (recommended) CACHING_DESC= Caching Modified: head/www/nextcloud/distinfo ============================================================================== --- head/www/nextcloud/distinfo Mon Oct 15 12:15:13 2018 (r482154) +++ head/www/nextcloud/distinfo Mon Oct 15 13:17:24 2018 (r482155) @@ -1,3 +1,3 @@ -TIMESTAMP = 1537957022 -SHA256 (nextcloud-14.0.1.tar.bz2) = aafc81e81177a69b9971da4358d5d37cad9a103b103fc1bc2fe384949d61d593 -SIZE (nextcloud-14.0.1.tar.bz2) = 49761953 +TIMESTAMP = 1539537569 +SHA256 (nextcloud-14.0.3.tar.bz2) = d7d0271238396ef53ed3806b8f5a3746170d4ebcaa030ad39735e886e7aed3ef +SIZE (nextcloud-14.0.3.tar.bz2) = 49713609 Modified: head/www/nextcloud/files/config.sample.php.in ============================================================================== --- head/www/nextcloud/files/config.sample.php.in Mon Oct 15 12:15:13 2018 (r482154) +++ head/www/nextcloud/files/config.sample.php.in Mon Oct 15 13:17:24 2018 (r482155) @@ -26,7 +26,9 @@ $CONFIG = array ( ), ), -/** Log-files belong in the appropriate location - */ +// Log-files belong in the appropriate location 'logfile' => '/var/log/nextcloud/nextcloud.log', + +// Enable user caching when option is enabled +%%APCU%% 'memcache.local' => '\OC\Memcache\APCu', ); Modified: head/www/nextcloud/files/pkg-message.in ============================================================================== --- head/www/nextcloud/files/pkg-message.in Mon Oct 15 12:15:13 2018 (r482154) +++ head/www/nextcloud/files/pkg-message.in Mon Oct 15 13:17:24 2018 (r482155) @@ -1,3 +1,6 @@ +/!\ The FreeBSD package REQUIRES the apps_paths configuration as /!\ +/!\ seen in config/config.sample.php to function /!\ + *********************************************************************** * POST INSTALL CONFIGURATION * *********************************************************************** @@ -14,13 +17,19 @@ something like this: Require all granted -And restart Apache. +And restart Apache. Nextcloud will start the bundled installer on first +access. Once the bundled installer finishes, further configuration can +be done via 'Settings', 'Administration'. Additional configuration +options are available in -The caching options require additional Nextcloud configuration, see -https://docs.nextcloud.com/server/12/admin_manual/configuration_server/caching_configuration.html + %%WWWDIR%%/config/config.php -/!\ The FreeBSD package REQUIRES the apps_paths configuration as /!\ -/!\ seen in config/config.sample.php to function /!\ +You can find annotated configuration options in config.documented.php +in the same directory. Nextcloud's configuration documentation is at + + https://docs.nextcloud.com/server/14/admin_manual/configuration_server + +The caching options require additional Nextcloud configuration. *********************************************************************** * NEXTCLOUD VERSION UPGRADE * Modified: head/www/nextcloud/pkg-plist ============================================================================== --- head/www/nextcloud/pkg-plist Mon Oct 15 12:15:13 2018 (r482154) +++ head/www/nextcloud/pkg-plist Mon Oct 15 13:17:24 2018 (r482155) @@ -3749,10 +3749,7 @@ %%WWWDIR%%/3rdparty/symfony/translation/composer.json %%WWWDIR%%/3rdparty/symfony/translation/phpunit.xml.dist %%WWWDIR%%/AUTHORS -%%WWWDIR%%/apps-pkg/accessibility/.babelrc -%%WWWDIR%%/apps-pkg/accessibility/.editorconfig -%%WWWDIR%%/apps-pkg/accessibility/.eslintrc.js -%%WWWDIR%%/apps-pkg/accessibility/Makefile +%%WWWDIR%%/COPYING %%WWWDIR%%/apps-pkg/accessibility/appinfo/app.php %%WWWDIR%%/apps-pkg/accessibility/appinfo/info.xml %%WWWDIR%%/apps-pkg/accessibility/appinfo/routes.php @@ -3780,16 +3777,7 @@ %%WWWDIR%%/apps-pkg/accessibility/lib/Controller/ConfigController.php %%WWWDIR%%/apps-pkg/accessibility/lib/Settings/Personal.php %%WWWDIR%%/apps-pkg/accessibility/lib/Settings/PersonalSection.php -%%WWWDIR%%/apps-pkg/accessibility/package-lock.json -%%WWWDIR%%/apps-pkg/accessibility/package.json -%%WWWDIR%%/apps-pkg/accessibility/src/App.vue -%%WWWDIR%%/apps-pkg/accessibility/src/components/itemPreview.vue -%%WWWDIR%%/apps-pkg/accessibility/src/main.js %%WWWDIR%%/apps-pkg/accessibility/templates/settings-personal.php -%%WWWDIR%%/apps-pkg/accessibility/webpack.common.js -%%WWWDIR%%/apps-pkg/accessibility/webpack.dev.js -%%WWWDIR%%/apps-pkg/accessibility/webpack.prod.js -%%WWWDIR%%/apps-pkg/activity/.tx/config %%WWWDIR%%/apps-pkg/activity/appinfo/app.php %%WWWDIR%%/apps-pkg/activity/appinfo/info.xml %%WWWDIR%%/apps-pkg/activity/appinfo/routes.php @@ -5974,9 +5962,6 @@ %%WWWDIR%%/apps-pkg/files_external/list.php %%WWWDIR%%/apps-pkg/files_external/templates/list.php %%WWWDIR%%/apps-pkg/files_external/templates/settings.php -%%WWWDIR%%/apps-pkg/files_pdfviewer/.github/contributing.md -%%WWWDIR%%/apps-pkg/files_pdfviewer/.github/issue_template.md -%%WWWDIR%%/apps-pkg/files_pdfviewer/Makefile %%WWWDIR%%/apps-pkg/files_pdfviewer/appinfo/app.php %%WWWDIR%%/apps-pkg/files_pdfviewer/appinfo/info.xml %%WWWDIR%%/apps-pkg/files_pdfviewer/appinfo/routes.php @@ -6401,6 +6386,8 @@ %%WWWDIR%%/apps-pkg/files_sharing/l10n/ast.json %%WWWDIR%%/apps-pkg/files_sharing/l10n/az.js %%WWWDIR%%/apps-pkg/files_sharing/l10n/az.json +%%WWWDIR%%/apps-pkg/files_sharing/l10n/bg.js +%%WWWDIR%%/apps-pkg/files_sharing/l10n/bg.json %%WWWDIR%%/apps-pkg/files_sharing/l10n/bg_BG.js %%WWWDIR%%/apps-pkg/files_sharing/l10n/bg_BG.json %%WWWDIR%%/apps-pkg/files_sharing/l10n/bn_BD.js @@ -6654,9 +6641,6 @@ %%WWWDIR%%/apps-pkg/files_sharing/templates/list.php %%WWWDIR%%/apps-pkg/files_sharing/templates/part.404.php %%WWWDIR%%/apps-pkg/files_sharing/templates/public.php -%%WWWDIR%%/apps-pkg/files_texteditor/.github/contributing.md -%%WWWDIR%%/apps-pkg/files_texteditor/.github/issue_template.md -%%WWWDIR%%/apps-pkg/files_texteditor/.tx/config %%WWWDIR%%/apps-pkg/files_texteditor/appinfo/app.php %%WWWDIR%%/apps-pkg/files_texteditor/appinfo/info.xml %%WWWDIR%%/apps-pkg/files_texteditor/appinfo/routes.php @@ -7633,9 +7617,6 @@ %%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/lang/zh-TW.js %%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/video-js.css %%WWWDIR%%/apps-pkg/files_videoplayer/videojs/src/video.js -%%WWWDIR%%/apps-pkg/firstrunwizard/.github/contributing.md -%%WWWDIR%%/apps-pkg/firstrunwizard/.github/issue_template.md -%%WWWDIR%%/apps-pkg/firstrunwizard/.tx/config %%WWWDIR%%/apps-pkg/firstrunwizard/appinfo/app.php %%WWWDIR%%/apps-pkg/firstrunwizard/appinfo/info.xml %%WWWDIR%%/apps-pkg/firstrunwizard/appinfo/routes.php @@ -7654,6 +7635,8 @@ %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/.gitkeep %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ast.js %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ast.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bg.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bg.json %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/bn_IN.php %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ca.js %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/ca.json @@ -7751,6 +7734,8 @@ %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/si_LK.php %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sk.js %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sk.json +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sl.js +%%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sl.json %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sq.js %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sq.json %%WWWDIR%%/apps-pkg/firstrunwizard/l10n/sr.js @@ -7779,10 +7764,7 @@ %%WWWDIR%%/apps-pkg/firstrunwizard/templates/page.values.php %%WWWDIR%%/apps-pkg/firstrunwizard/templates/personal-settings.php %%WWWDIR%%/apps-pkg/firstrunwizard/templates/wizard.php -%%WWWDIR%%/apps-pkg/gallery/.github/issue_template.md -%%WWWDIR%%/apps-pkg/gallery/.github/pull_request_template.md %%WWWDIR%%/apps-pkg/gallery/.gitmodules -%%WWWDIR%%/apps-pkg/gallery/.tx/config %%WWWDIR%%/apps-pkg/gallery/AUTHORS.md %%WWWDIR%%/apps-pkg/gallery/CHANGELOG.md %%WWWDIR%%/apps-pkg/gallery/COPYING @@ -8121,11 +8103,6 @@ %%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/Yaml.php %%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/composer.json %%WWWDIR%%/apps-pkg/gallery/vendor/symfony/yaml/phpunit.xml.dist -%%WWWDIR%%/apps-pkg/logreader/.babelrc -%%WWWDIR%%/apps-pkg/logreader/.github/contributing.md -%%WWWDIR%%/apps-pkg/logreader/.github/issue_template.md -%%WWWDIR%%/apps-pkg/logreader/.tx/config -%%WWWDIR%%/apps-pkg/logreader/Makefile %%WWWDIR%%/apps-pkg/logreader/appinfo/app.php %%WWWDIR%%/apps-pkg/logreader/appinfo/info.xml %%WWWDIR%%/apps-pkg/logreader/appinfo/routes.php @@ -8249,6 +8226,8 @@ %%WWWDIR%%/apps-pkg/logreader/l10n/ru.json %%WWWDIR%%/apps-pkg/logreader/l10n/sk.js %%WWWDIR%%/apps-pkg/logreader/l10n/sk.json +%%WWWDIR%%/apps-pkg/logreader/l10n/sl.js +%%WWWDIR%%/apps-pkg/logreader/l10n/sl.json %%WWWDIR%%/apps-pkg/logreader/l10n/sq.js %%WWWDIR%%/apps-pkg/logreader/l10n/sq.json %%WWWDIR%%/apps-pkg/logreader/l10n/sr.js @@ -8267,8 +8246,6 @@ %%WWWDIR%%/apps-pkg/logreader/lib/Log/SearchFilter.php %%WWWDIR%%/apps-pkg/logreader/lib/Settings/Admin.php %%WWWDIR%%/apps-pkg/logreader/lib/Settings/Section.php -%%WWWDIR%%/apps-pkg/logreader/package-lock.json -%%WWWDIR%%/apps-pkg/logreader/package.json %%WWWDIR%%/apps-pkg/logreader/postcss.config.js %%WWWDIR%%/apps-pkg/logreader/screenshots/reader.png %%WWWDIR%%/apps-pkg/logreader/templates/index.php @@ -8291,9 +8268,6 @@ %%WWWDIR%%/apps-pkg/lookup_server_connector/lib/BackgroundJobs/RetryJob.php %%WWWDIR%%/apps-pkg/lookup_server_connector/lib/UpdateLookupServer.php %%WWWDIR%%/apps-pkg/nextcloud_announcements/.gitattributes -%%WWWDIR%%/apps-pkg/nextcloud_announcements/.github/contributing.md -%%WWWDIR%%/apps-pkg/nextcloud_announcements/.github/issue_template.md -%%WWWDIR%%/apps-pkg/nextcloud_announcements/.tx/config %%WWWDIR%%/apps-pkg/nextcloud_announcements/COPYING %%WWWDIR%%/apps-pkg/nextcloud_announcements/appinfo/app.php %%WWWDIR%%/apps-pkg/nextcloud_announcements/appinfo/certificate.crt @@ -8431,11 +8405,7 @@ %%WWWDIR%%/apps-pkg/nextcloud_announcements/lib/Settings/Admin.php %%WWWDIR%%/apps-pkg/nextcloud_announcements/templates/admin.php %%WWWDIR%%/apps-pkg/notifications/.babelrc.js -%%WWWDIR%%/apps-pkg/notifications/.github/contributing.md -%%WWWDIR%%/apps-pkg/notifications/.github/issue_template.md -%%WWWDIR%%/apps-pkg/notifications/.tx/config %%WWWDIR%%/apps-pkg/notifications/COPYING -%%WWWDIR%%/apps-pkg/notifications/Makefile %%WWWDIR%%/apps-pkg/notifications/appinfo/app.php %%WWWDIR%%/apps-pkg/notifications/appinfo/database.xml %%WWWDIR%%/apps-pkg/notifications/appinfo/info.xml @@ -8460,10 +8430,14 @@ %%WWWDIR%%/apps-pkg/notifications/l10n/.gitkeep %%WWWDIR%%/apps-pkg/notifications/l10n/af.js %%WWWDIR%%/apps-pkg/notifications/l10n/af.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ar.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ar.json %%WWWDIR%%/apps-pkg/notifications/l10n/ast.js %%WWWDIR%%/apps-pkg/notifications/l10n/ast.json %%WWWDIR%%/apps-pkg/notifications/l10n/bg.js %%WWWDIR%%/apps-pkg/notifications/l10n/bg.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ca.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ca.json %%WWWDIR%%/apps-pkg/notifications/l10n/cs.js %%WWWDIR%%/apps-pkg/notifications/l10n/cs.json %%WWWDIR%%/apps-pkg/notifications/l10n/da.js @@ -8480,6 +8454,10 @@ %%WWWDIR%%/apps-pkg/notifications/l10n/eo.json %%WWWDIR%%/apps-pkg/notifications/l10n/es.js %%WWWDIR%%/apps-pkg/notifications/l10n/es.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_419.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_419.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_AR.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_AR.json %%WWWDIR%%/apps-pkg/notifications/l10n/es_CL.js %%WWWDIR%%/apps-pkg/notifications/l10n/es_CL.json %%WWWDIR%%/apps-pkg/notifications/l10n/es_CO.js @@ -8492,18 +8470,42 @@ %%WWWDIR%%/apps-pkg/notifications/l10n/es_EC.json %%WWWDIR%%/apps-pkg/notifications/l10n/es_GT.js %%WWWDIR%%/apps-pkg/notifications/l10n/es_GT.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_HN.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_HN.json %%WWWDIR%%/apps-pkg/notifications/l10n/es_MX.js %%WWWDIR%%/apps-pkg/notifications/l10n/es_MX.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_NI.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_NI.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PA.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PA.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PE.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PE.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PR.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PR.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PY.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_PY.json %%WWWDIR%%/apps-pkg/notifications/l10n/es_SV.js %%WWWDIR%%/apps-pkg/notifications/l10n/es_SV.json +%%WWWDIR%%/apps-pkg/notifications/l10n/es_UY.js +%%WWWDIR%%/apps-pkg/notifications/l10n/es_UY.json +%%WWWDIR%%/apps-pkg/notifications/l10n/et_EE.js +%%WWWDIR%%/apps-pkg/notifications/l10n/et_EE.json +%%WWWDIR%%/apps-pkg/notifications/l10n/eu.js +%%WWWDIR%%/apps-pkg/notifications/l10n/eu.json %%WWWDIR%%/apps-pkg/notifications/l10n/fi.js %%WWWDIR%%/apps-pkg/notifications/l10n/fi.json %%WWWDIR%%/apps-pkg/notifications/l10n/fr.js %%WWWDIR%%/apps-pkg/notifications/l10n/fr.json +%%WWWDIR%%/apps-pkg/notifications/l10n/gl.js +%%WWWDIR%%/apps-pkg/notifications/l10n/gl.json %%WWWDIR%%/apps-pkg/notifications/l10n/he.js %%WWWDIR%%/apps-pkg/notifications/l10n/he.json %%WWWDIR%%/apps-pkg/notifications/l10n/hu.js %%WWWDIR%%/apps-pkg/notifications/l10n/hu.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ia.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ia.json +%%WWWDIR%%/apps-pkg/notifications/l10n/id.js +%%WWWDIR%%/apps-pkg/notifications/l10n/id.json %%WWWDIR%%/apps-pkg/notifications/l10n/is.js %%WWWDIR%%/apps-pkg/notifications/l10n/is.json %%WWWDIR%%/apps-pkg/notifications/l10n/it.js @@ -8512,10 +8514,14 @@ %%WWWDIR%%/apps-pkg/notifications/l10n/ja.json %%WWWDIR%%/apps-pkg/notifications/l10n/ka_GE.js %%WWWDIR%%/apps-pkg/notifications/l10n/ka_GE.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ko.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ko.json %%WWWDIR%%/apps-pkg/notifications/l10n/lt_LT.js %%WWWDIR%%/apps-pkg/notifications/l10n/lt_LT.json %%WWWDIR%%/apps-pkg/notifications/l10n/lv.js %%WWWDIR%%/apps-pkg/notifications/l10n/lv.json +%%WWWDIR%%/apps-pkg/notifications/l10n/mn.js +%%WWWDIR%%/apps-pkg/notifications/l10n/mn.json %%WWWDIR%%/apps-pkg/notifications/l10n/nb.js %%WWWDIR%%/apps-pkg/notifications/l10n/nb.json %%WWWDIR%%/apps-pkg/notifications/l10n/nl.js @@ -8526,16 +8532,26 @@ %%WWWDIR%%/apps-pkg/notifications/l10n/pt_BR.json %%WWWDIR%%/apps-pkg/notifications/l10n/pt_PT.js %%WWWDIR%%/apps-pkg/notifications/l10n/pt_PT.json +%%WWWDIR%%/apps-pkg/notifications/l10n/ro.js +%%WWWDIR%%/apps-pkg/notifications/l10n/ro.json %%WWWDIR%%/apps-pkg/notifications/l10n/ru.js %%WWWDIR%%/apps-pkg/notifications/l10n/ru.json %%WWWDIR%%/apps-pkg/notifications/l10n/sk.js %%WWWDIR%%/apps-pkg/notifications/l10n/sk.json +%%WWWDIR%%/apps-pkg/notifications/l10n/sl.js +%%WWWDIR%%/apps-pkg/notifications/l10n/sl.json +%%WWWDIR%%/apps-pkg/notifications/l10n/sq.js +%%WWWDIR%%/apps-pkg/notifications/l10n/sq.json %%WWWDIR%%/apps-pkg/notifications/l10n/sr.js %%WWWDIR%%/apps-pkg/notifications/l10n/sr.json %%WWWDIR%%/apps-pkg/notifications/l10n/sv.js %%WWWDIR%%/apps-pkg/notifications/l10n/sv.json %%WWWDIR%%/apps-pkg/notifications/l10n/tr.js %%WWWDIR%%/apps-pkg/notifications/l10n/tr.json +%%WWWDIR%%/apps-pkg/notifications/l10n/uk.js +%%WWWDIR%%/apps-pkg/notifications/l10n/uk.json +%%WWWDIR%%/apps-pkg/notifications/l10n/vi.js +%%WWWDIR%%/apps-pkg/notifications/l10n/vi.json %%WWWDIR%%/apps-pkg/notifications/l10n/zh_CN.js %%WWWDIR%%/apps-pkg/notifications/l10n/zh_CN.json %%WWWDIR%%/apps-pkg/notifications/l10n/zh_TW.js @@ -8551,17 +8567,6 @@ %%WWWDIR%%/apps-pkg/notifications/lib/Handler.php %%WWWDIR%%/apps-pkg/notifications/lib/Notifier/AdminNotifications.php %%WWWDIR%%/apps-pkg/notifications/lib/Push.php -%%WWWDIR%%/apps-pkg/notifications/package-lock.json -%%WWWDIR%%/apps-pkg/notifications/package.json -%%WWWDIR%%/apps-pkg/notifications/src/App.vue -%%WWWDIR%%/apps-pkg/notifications/src/components/action.vue -%%WWWDIR%%/apps-pkg/notifications/src/components/notification.vue -%%WWWDIR%%/apps-pkg/notifications/src/init.js -%%WWWDIR%%/apps-pkg/notifications/src/richObjectStringParser.js -%%WWWDIR%%/apps-pkg/notifications/src/webpack.common.js -%%WWWDIR%%/apps-pkg/notifications/src/webpack.dev.js -%%WWWDIR%%/apps-pkg/notifications/src/webpack.prod.js -%%WWWDIR%%/apps-pkg/oauth2/Makefile %%WWWDIR%%/apps-pkg/oauth2/appinfo/database.xml %%WWWDIR%%/apps-pkg/oauth2/appinfo/info.xml %%WWWDIR%%/apps-pkg/oauth2/appinfo/routes.php @@ -8704,18 +8709,7 @@ %%WWWDIR%%/apps-pkg/oauth2/lib/Exceptions/ClientNotFoundException.php %%WWWDIR%%/apps-pkg/oauth2/lib/Migration/SetTokenExpiration.php %%WWWDIR%%/apps-pkg/oauth2/lib/Settings/Admin.php -%%WWWDIR%%/apps-pkg/oauth2/package-lock.json -%%WWWDIR%%/apps-pkg/oauth2/package.json -%%WWWDIR%%/apps-pkg/oauth2/src/App.vue -%%WWWDIR%%/apps-pkg/oauth2/src/components/OAuthItem.vue -%%WWWDIR%%/apps-pkg/oauth2/src/main.js %%WWWDIR%%/apps-pkg/oauth2/templates/admin.php -%%WWWDIR%%/apps-pkg/oauth2/webpack.common.js -%%WWWDIR%%/apps-pkg/oauth2/webpack.dev.js -%%WWWDIR%%/apps-pkg/oauth2/webpack.prod.js -%%WWWDIR%%/apps-pkg/password_policy/.github/contributing.md -%%WWWDIR%%/apps-pkg/password_policy/.github/issue_template.md -%%WWWDIR%%/apps-pkg/password_policy/.tx/config %%WWWDIR%%/apps-pkg/password_policy/LICENSE %%WWWDIR%%/apps-pkg/password_policy/appinfo/app.php %%WWWDIR%%/apps-pkg/password_policy/appinfo/info.xml @@ -8909,9 +8903,6 @@ %%WWWDIR%%/apps-pkg/provisioning_api/lib/FederatedFileSharingFactory.php %%WWWDIR%%/apps-pkg/provisioning_api/lib/Middleware/Exceptions/NotSubAdminException.php %%WWWDIR%%/apps-pkg/provisioning_api/lib/Middleware/ProvisioningApiMiddleware.php -%%WWWDIR%%/apps-pkg/serverinfo/.github/contributing.md -%%WWWDIR%%/apps-pkg/serverinfo/.github/issue_template.md -%%WWWDIR%%/apps-pkg/serverinfo/.tx/config %%WWWDIR%%/apps-pkg/serverinfo/AUTHORS.md %%WWWDIR%%/apps-pkg/serverinfo/CHANGELOG.md %%WWWDIR%%/apps-pkg/serverinfo/COPYING @@ -9195,7 +9186,6 @@ %%WWWDIR%%/apps-pkg/sharebymail/lib/Settings/SettingsManager.php %%WWWDIR%%/apps-pkg/sharebymail/lib/ShareByMailProvider.php %%WWWDIR%%/apps-pkg/sharebymail/templates/settings-admin.php -%%WWWDIR%%/apps-pkg/support/.tx/config %%WWWDIR%%/apps-pkg/support/appinfo/app.php %%WWWDIR%%/apps-pkg/support/appinfo/info.xml %%WWWDIR%%/apps-pkg/support/appinfo/routes.php @@ -9213,6 +9203,12 @@ %%WWWDIR%%/apps-pkg/support/img/system-info.svg %%WWWDIR%%/apps-pkg/support/js/admin.js %%WWWDIR%%/apps-pkg/support/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/support/l10n/af.js +%%WWWDIR%%/apps-pkg/support/l10n/af.json +%%WWWDIR%%/apps-pkg/support/l10n/ca.js +%%WWWDIR%%/apps-pkg/support/l10n/ca.json +%%WWWDIR%%/apps-pkg/support/l10n/cs.js +%%WWWDIR%%/apps-pkg/support/l10n/cs.json %%WWWDIR%%/apps-pkg/support/l10n/de.js %%WWWDIR%%/apps-pkg/support/l10n/de.json %%WWWDIR%%/apps-pkg/support/l10n/de_DE.js @@ -9223,6 +9219,10 @@ %%WWWDIR%%/apps-pkg/support/l10n/fi.json %%WWWDIR%%/apps-pkg/support/l10n/fr.js %%WWWDIR%%/apps-pkg/support/l10n/fr.json +%%WWWDIR%%/apps-pkg/support/l10n/he.js +%%WWWDIR%%/apps-pkg/support/l10n/he.json +%%WWWDIR%%/apps-pkg/support/l10n/hu.js +%%WWWDIR%%/apps-pkg/support/l10n/hu.json %%WWWDIR%%/apps-pkg/support/l10n/is.js %%WWWDIR%%/apps-pkg/support/l10n/is.json %%WWWDIR%%/apps-pkg/support/l10n/it.js @@ -9233,10 +9233,18 @@ %%WWWDIR%%/apps-pkg/support/l10n/nl.json %%WWWDIR%%/apps-pkg/support/l10n/nn_NO.js %%WWWDIR%%/apps-pkg/support/l10n/nn_NO.json +%%WWWDIR%%/apps-pkg/support/l10n/pl.js +%%WWWDIR%%/apps-pkg/support/l10n/pl.json %%WWWDIR%%/apps-pkg/support/l10n/pt_BR.js %%WWWDIR%%/apps-pkg/support/l10n/pt_BR.json %%WWWDIR%%/apps-pkg/support/l10n/ru.js %%WWWDIR%%/apps-pkg/support/l10n/ru.json +%%WWWDIR%%/apps-pkg/support/l10n/sr.js +%%WWWDIR%%/apps-pkg/support/l10n/sr.json +%%WWWDIR%%/apps-pkg/support/l10n/tr.js +%%WWWDIR%%/apps-pkg/support/l10n/tr.json +%%WWWDIR%%/apps-pkg/support/l10n/zh_CN.js +%%WWWDIR%%/apps-pkg/support/l10n/zh_CN.json %%WWWDIR%%/apps-pkg/support/lib/AppInfo/Application.php %%WWWDIR%%/apps-pkg/support/lib/BackgroundJobs/CheckSubscription.php %%WWWDIR%%/apps-pkg/support/lib/Controller/ApiController.php @@ -9252,7 +9260,6 @@ %%WWWDIR%%/apps-pkg/support/lib/Settings/Section.php %%WWWDIR%%/apps-pkg/support/resources/Why the Nextcloud Subscription?.pdf %%WWWDIR%%/apps-pkg/support/templates/admin.php -%%WWWDIR%%/apps-pkg/survey_client/.tx/config %%WWWDIR%%/apps-pkg/survey_client/COPYING %%WWWDIR%%/apps-pkg/survey_client/ISSUE_TEMPLATE.md %%WWWDIR%%/apps-pkg/survey_client/appinfo/app.php @@ -9266,6 +9273,8 @@ %%WWWDIR%%/apps-pkg/survey_client/img/app.svg %%WWWDIR%%/apps-pkg/survey_client/js/admin.js %%WWWDIR%%/apps-pkg/survey_client/l10n/.gitkeep +%%WWWDIR%%/apps-pkg/survey_client/l10n/bg.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/bg.json %%WWWDIR%%/apps-pkg/survey_client/l10n/ca.js %%WWWDIR%%/apps-pkg/survey_client/l10n/ca.json %%WWWDIR%%/apps-pkg/survey_client/l10n/cs.js @@ -9352,6 +9361,8 @@ %%WWWDIR%%/apps-pkg/survey_client/l10n/pt_PT.json %%WWWDIR%%/apps-pkg/survey_client/l10n/ru.js %%WWWDIR%%/apps-pkg/survey_client/l10n/ru.json +%%WWWDIR%%/apps-pkg/survey_client/l10n/sl.js +%%WWWDIR%%/apps-pkg/survey_client/l10n/sl.json %%WWWDIR%%/apps-pkg/survey_client/l10n/sq.js %%WWWDIR%%/apps-pkg/survey_client/l10n/sq.json %%WWWDIR%%/apps-pkg/survey_client/l10n/sr.js @@ -9887,7 +9898,6 @@ %%WWWDIR%%/apps-pkg/twofactor_backupcodes/lib/Settings/Personal.php %%WWWDIR%%/apps-pkg/twofactor_backupcodes/templates/challenge.php %%WWWDIR%%/apps-pkg/twofactor_backupcodes/templates/personal.php -%%WWWDIR%%/apps-pkg/updatenotification/Makefile %%WWWDIR%%/apps-pkg/updatenotification/appinfo/app.php %%WWWDIR%%/apps-pkg/updatenotification/appinfo/info.xml %%WWWDIR%%/apps-pkg/updatenotification/appinfo/routes.php @@ -10072,16 +10082,7 @@ %%WWWDIR%%/apps-pkg/updatenotification/lib/ResetTokenBackgroundJob.php %%WWWDIR%%/apps-pkg/updatenotification/lib/Settings/Admin.php %%WWWDIR%%/apps-pkg/updatenotification/lib/UpdateChecker.php -%%WWWDIR%%/apps-pkg/updatenotification/package-lock.json -%%WWWDIR%%/apps-pkg/updatenotification/package.json -%%WWWDIR%%/apps-pkg/updatenotification/src/components/popoverMenu.vue -%%WWWDIR%%/apps-pkg/updatenotification/src/components/popoverMenu/popoverItem.vue -%%WWWDIR%%/apps-pkg/updatenotification/src/components/root.vue -%%WWWDIR%%/apps-pkg/updatenotification/src/init.js %%WWWDIR%%/apps-pkg/updatenotification/templates/admin.php -%%WWWDIR%%/apps-pkg/updatenotification/webpack.common.js -%%WWWDIR%%/apps-pkg/updatenotification/webpack.dev.js -%%WWWDIR%%/apps-pkg/updatenotification/webpack.prod.js %%WWWDIR%%/apps-pkg/user_external/appinfo/app.php %%WWWDIR%%/apps-pkg/user_external/appinfo/database.xml %%WWWDIR%%/apps-pkg/user_external/appinfo/info.xml @@ -10603,6 +10604,8 @@ %%WWWDIR%%/apps-pkg/workflowengine/l10n/sk.json %%WWWDIR%%/apps-pkg/workflowengine/l10n/sk_SK.js %%WWWDIR%%/apps-pkg/workflowengine/l10n/sk_SK.json +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sl.js +%%WWWDIR%%/apps-pkg/workflowengine/l10n/sl.json %%WWWDIR%%/apps-pkg/workflowengine/l10n/sq.js %%WWWDIR%%/apps-pkg/workflowengine/l10n/sq.json %%WWWDIR%%/apps-pkg/workflowengine/l10n/sr.js @@ -10631,8 +10634,8 @@ %%WWWDIR%%/apps-pkg/workflowengine/lib/Settings/Section.php %%WWWDIR%%/apps-pkg/workflowengine/templates/admin.php @(,%%NEXTCLOUD_GROUPNAME%%,644) %%WWWDIR%%/config/.htaccess -@sample(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,640) %%WWWDIR%%/config/config.sample.php %%WWWDIR%%/config/config.php %%WWWDIR%%/config/config.documented.php +@sample(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,640) %%WWWDIR%%/config/config.sample.php %%WWWDIR%%/config/config.php %%WWWDIR%%/console.php %%WWWDIR%%/core/Application.php %%WWWDIR%%/core/BackgroundJobs/BackgroundCleanupUpdaterBackupsJob.php @@ -11255,6 +11258,7 @@ %%WWWDIR%%/core/doc/user/_sources/pim/sync_kde.txt %%WWWDIR%%/core/doc/user/_sources/pim/sync_osx.txt %%WWWDIR%%/core/doc/user/_sources/pim/sync_thunderbird.txt +%%WWWDIR%%/core/doc/user/_sources/pim/sync_windows10.txt %%WWWDIR%%/core/doc/user/_sources/pim/troubleshooting.txt %%WWWDIR%%/core/doc/user/_sources/session_management.txt %%WWWDIR%%/core/doc/user/_sources/user_2fa.txt @@ -11373,6 +11377,7 @@ %%WWWDIR%%/core/doc/user/pim/sync_kde.html %%WWWDIR%%/core/doc/user/pim/sync_osx.html %%WWWDIR%%/core/doc/user/pim/sync_thunderbird.html +%%WWWDIR%%/core/doc/user/pim/sync_windows10.html %%WWWDIR%%/core/doc/user/pim/troubleshooting.html %%WWWDIR%%/core/doc/user/search.html %%WWWDIR%%/core/doc/user/searchindex.js @@ -11649,8 +11654,6 @@ %%WWWDIR%%/core/js/visitortimezone.js %%WWWDIR%%/core/l10n/af.js %%WWWDIR%%/core/l10n/af.json -%%WWWDIR%%/core/l10n/ar.js -%%WWWDIR%%/core/l10n/ar.json %%WWWDIR%%/core/l10n/ast.js %%WWWDIR%%/core/l10n/ast.json %%WWWDIR%%/core/l10n/bg.js @@ -13015,9 +13018,7 @@ %%WWWDIR%%/resources/config/mimetypemapping.dist.json %%WWWDIR%%/resources/locales.json %%WWWDIR%%/robots.txt -%%WWWDIR%%/settings/.babelrc -%%WWWDIR%%/settings/.editorconfig -%%WWWDIR%%/settings/.gitignore +%%WWWDIR%%/settings/.babelrc.js %%WWWDIR%%/settings/Activity/Provider.php %%WWWDIR%%/settings/Activity/SecurityFilter.php %%WWWDIR%%/settings/Activity/SecurityProvider.php @@ -13038,9 +13039,7 @@ %%WWWDIR%%/settings/Controller/UsersController.php %%WWWDIR%%/settings/Hooks.php %%WWWDIR%%/settings/Mailer/NewUserMailHelper.php -%%WWWDIR%%/settings/Makefile %%WWWDIR%%/settings/Middleware/SubadminMiddleware.php -%%WWWDIR%%/settings/README.md %%WWWDIR%%/settings/css/settings.scss %%WWWDIR%%/settings/help.php %%WWWDIR%%/settings/img/admin.svg @@ -13233,34 +13232,7 @@ %%WWWDIR%%/settings/l10n/zh_HK.json %%WWWDIR%%/settings/l10n/zh_TW.js %%WWWDIR%%/settings/l10n/zh_TW.json -%%WWWDIR%%/settings/package-lock.json -%%WWWDIR%%/settings/package.json %%WWWDIR%%/settings/routes.php -%%WWWDIR%%/settings/src/.jshintrc -%%WWWDIR%%/settings/src/App.vue -%%WWWDIR%%/settings/src/components/appDetails.vue -%%WWWDIR%%/settings/src/components/appList.vue -%%WWWDIR%%/settings/src/components/appList/appItem.vue -%%WWWDIR%%/settings/src/components/appList/appScore.vue -%%WWWDIR%%/settings/src/components/appManagement.vue -%%WWWDIR%%/settings/src/components/appNavigation.vue -%%WWWDIR%%/settings/src/components/appNavigation/navigationItem.vue -%%WWWDIR%%/settings/src/components/popoverMenu.vue -%%WWWDIR%%/settings/src/components/popoverMenu/popoverItem.vue -%%WWWDIR%%/settings/src/components/prefixMixin.vue -%%WWWDIR%%/settings/src/components/svgFilterMixin.vue -%%WWWDIR%%/settings/src/components/userList.vue -%%WWWDIR%%/settings/src/components/userList/userRow.vue -%%WWWDIR%%/settings/src/main.js -%%WWWDIR%%/settings/src/router.js -%%WWWDIR%%/settings/src/store/api.js -%%WWWDIR%%/settings/src/store/apps.js -%%WWWDIR%%/settings/src/store/index.js -%%WWWDIR%%/settings/src/store/oc.js -%%WWWDIR%%/settings/src/store/settings.js -%%WWWDIR%%/settings/src/store/users.js -%%WWWDIR%%/settings/src/views/Apps.vue -%%WWWDIR%%/settings/src/views/Users.vue %%WWWDIR%%/settings/templates/certificates.php %%WWWDIR%%/settings/templates/help.php %%WWWDIR%%/settings/templates/settings-vue.php @@ -13275,9 +13247,6 @@ %%WWWDIR%%/settings/templates/settings/personal/development.notice.php %%WWWDIR%%/settings/templates/settings/personal/personal.info.php %%WWWDIR%%/settings/templates/settings/personal/security.php -%%WWWDIR%%/settings/webpack.common.js -%%WWWDIR%%/settings/webpack.dev.js -%%WWWDIR%%/settings/webpack.prod.js %%WWWDIR%%/status.php %%WWWDIR%%/themes/README %%WWWDIR%%/themes/example/core/css/server.css