From owner-svn-ports-all@freebsd.org Tue Feb 20 09:14:22 2018 Return-Path: Delivered-To: svn-ports-all@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 4D39CF13D04; Tue, 20 Feb 2018 09:14:22 +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 F27296BC25; Tue, 20 Feb 2018 09:14:21 +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 ED0052763A; Tue, 20 Feb 2018 09:14:21 +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 w1K9ELV2008117; Tue, 20 Feb 2018 09:14:21 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1K9EL0r008112; Tue, 20 Feb 2018 09:14:21 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201802200914.w1K9EL0r008112@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Tue, 20 Feb 2018 09:14:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462379 - in head: . www/nextcloud www/nextcloud/files X-SVN-Group: ports-head X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: in head: . www/nextcloud www/nextcloud/files X-SVN-Commit-Revision: 462379 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Feb 2018 09:14:22 -0000 Author: brnrd Date: Tue Feb 20 09:14:21 2018 New Revision: 462379 URL: https://svnweb.freebsd.org/changeset/ports/462379 Log: www/nextcloud: Update to 13.0.0 - Changes permissions as well PR: 223778 Approved by: Loic Blot maintainer) Deleted: head/www/nextcloud/files/extra-patch-PostgreSQL-10 Modified: head/UPDATING head/www/nextcloud/Makefile head/www/nextcloud/distinfo head/www/nextcloud/pkg-plist Modified: head/UPDATING ============================================================================== --- head/UPDATING Tue Feb 20 09:02:56 2018 (r462378) +++ head/UPDATING Tue Feb 20 09:14:21 2018 (r462379) @@ -5,7 +5,27 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. -20180214: +20180220: + AFFECTS: users of www/nextcloud + AUTHOR: brnrd@FreeBSD.org + + The file and directory permissions of Nextcloud have changed. Write + permissions have been removed from all directories except `data' and + `config'. For the updater to work, the app store of your installation + must be disabled. To disable the app-store prior to updating the + package: + + # cd /usr/local/www/nextcloud + # su -m www -c "php ./occ config:system:set appstoreenabled --value=false --type=boolean" + + If you've already updated your nextcloud package, you must manually edit + the configuration of nextcloud (config/config.php) and add + + 'appstoreenabled' => false, + + to the CONFIG array before the updater will run. + +20180214 AFFECTS: users of lang/ruby23 AUTHOR: swills@FreeBSD.org @@ -38,7 +58,6 @@ you update your ports collection, before attempting an # make -C /usr/ports/ports-mgmt/portupgrade install clean # pkg set -o lang/ruby23:lang/ruby24 # portupgrade -x ruby-2.4.\* -fr lang/ruby24 - 20180209: AFFECTS: users of japanese/lookup Modified: head/www/nextcloud/Makefile ============================================================================== --- head/www/nextcloud/Makefile Tue Feb 20 09:02:56 2018 (r462378) +++ head/www/nextcloud/Makefile Tue Feb 20 09:14:21 2018 (r462379) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= nextcloud -PORTVERSION= 12.0.5 +DISTVERSION= 13.0.0 CATEGORIES= www MASTER_SITES= https://download.nextcloud.com/server/prereleases/ @@ -30,6 +30,7 @@ OPTIONS_MULTI= DB OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE OPTIONS_DEFAULT= EXIF LDAP MYSQL SMB SSL +DB_DESC= Database backend(s) EXIF_DESC= Image rotation support EXIF_USE= PHP=exif @@ -42,12 +43,6 @@ SQLITE_USE= PHP=pdo_sqlite,sqlite3 SMB_RUN_DEPENDS= pecl-smbclient>=0.8.0:net/pecl-smbclient SSL_USE= PHP=openssl -.include - -.if !empty(PORT_OPTIONS:MPGSQL) && ${PGSQL_VER} >= 10 -EXTRA_PATCHES= ${FILESDIR}/extra-patch-PostgreSQL-10 -.endif - post-patch: @${REINPLACE_CMD} -e 's|/var/www/|${WWWDIR}|' ${WRKSRC}/config/config.sample.php @@ -57,4 +52,4 @@ do-install: @${RM} ${STAGEDIR}${WWWDIR}/updater/updater.phar @${MKDIR} ${STAGEDIR}${WWWDIR}/data -.include +.include Modified: head/www/nextcloud/distinfo ============================================================================== --- head/www/nextcloud/distinfo Tue Feb 20 09:02:56 2018 (r462378) +++ head/www/nextcloud/distinfo Tue Feb 20 09:14:21 2018 (r462379) @@ -1,3 +1,3 @@ -TIMESTAMP = 1516883682 -SHA256 (nextcloud-12.0.5.tar.bz2) = c8be29ace6821079e881818266fe49d28812b5aa0c7d2e76511173d48828ca43 -SIZE (nextcloud-12.0.5.tar.bz2) = 43704324 +TIMESTAMP = 1517914004 +SHA256 (nextcloud-13.0.0.tar.bz2) = 38e6064432a2d1a044f219028d3fd46cb7a943a47e11eef346810bd289705aec +SIZE (nextcloud-13.0.0.tar.bz2) = 43397247 Modified: head/www/nextcloud/pkg-plist ============================================================================== --- head/www/nextcloud/pkg-plist Tue Feb 20 09:02:56 2018 (r462378) +++ head/www/nextcloud/pkg-plist Tue Feb 20 09:14:21 2018 (r462379) @@ -250,8 +250,6 @@ %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/Middleware.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MigrationHub/Exception/MigrationHubException.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MigrationHub/MigrationHubClient.php -%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/Mobile/Exception/MobileException.php -%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/Mobile/MobileClient.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MockHandler.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MultiRegionClient.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/Multipart/AbstractUploadManager.php @@ -413,7 +411,6 @@ %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/waiters-1.json.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/waiters-2.json.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/api-2.json.php -%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/paginators-1.json.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/api-2.json.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/paginators-1.json.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/api-2.json.php @@ -562,8 +559,6 @@ %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14/api-2.json.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/mgh/2017-05-31/api-2.json.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/mgh/2017-05-31/paginators-1.json.php -%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/mobile/2017-07-01/api-2.json.php -%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/mobile/2017-07-01/paginators-1.json.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/monitoring/2010-08-01/api-2.json.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/monitoring/2010-08-01/paginators-1.json.php %%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/monitoring/2010-08-01/waiters-2.json.php @@ -841,6 +836,7 @@ %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlite/Driver.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Connection.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Driver.php +%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Statement.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PingableConnection.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/ResultStatement.php @@ -905,6 +901,7 @@ %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MySQL57Keywords.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MySQLKeywords.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/OracleKeywords.php +%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL100Keywords.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL91Keywords.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL92Keywords.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQLKeywords.php @@ -921,6 +918,7 @@ %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySQL57Platform.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/OraclePlatform.php +%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL100Platform.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL91Platform.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL92Platform.php %%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php @@ -1762,7 +1760,6 @@ %%WWWDIR%%/3rdparty/leafo/scssphp/src/Node.php %%WWWDIR%%/3rdparty/leafo/scssphp/src/Node/Number.php %%WWWDIR%%/3rdparty/leafo/scssphp/src/Parser.php -%%WWWDIR%%/3rdparty/leafo/scssphp/src/Server.php %%WWWDIR%%/3rdparty/leafo/scssphp/src/Type.php %%WWWDIR%%/3rdparty/leafo/scssphp/src/Util.php %%WWWDIR%%/3rdparty/leafo/scssphp/src/Version.php @@ -3760,11 +3757,15 @@ %%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swift_required.php %%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swift_required_pear.php %%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php +%%WWWDIR%%/3rdparty/symfony/console/.gitignore %%WWWDIR%%/3rdparty/symfony/console/Application.php +%%WWWDIR%%/3rdparty/symfony/console/CHANGELOG.md %%WWWDIR%%/3rdparty/symfony/console/Command/Command.php %%WWWDIR%%/3rdparty/symfony/console/Command/HelpCommand.php %%WWWDIR%%/3rdparty/symfony/console/Command/ListCommand.php +%%WWWDIR%%/3rdparty/symfony/console/Command/LockableTrait.php %%WWWDIR%%/3rdparty/symfony/console/ConsoleEvents.php +%%WWWDIR%%/3rdparty/symfony/console/DependencyInjection/AddConsoleCommandPass.php %%WWWDIR%%/3rdparty/symfony/console/Descriptor/ApplicationDescription.php %%WWWDIR%%/3rdparty/symfony/console/Descriptor/Descriptor.php %%WWWDIR%%/3rdparty/symfony/console/Descriptor/DescriptorInterface.php @@ -3773,9 +3774,11 @@ %%WWWDIR%%/3rdparty/symfony/console/Descriptor/TextDescriptor.php %%WWWDIR%%/3rdparty/symfony/console/Descriptor/XmlDescriptor.php %%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleCommandEvent.php +%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleErrorEvent.php %%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleEvent.php %%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleExceptionEvent.php %%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleTerminateEvent.php +%%WWWDIR%%/3rdparty/symfony/console/EventListener/ErrorListener.php %%WWWDIR%%/3rdparty/symfony/console/Exception/CommandNotFoundException.php %%WWWDIR%%/3rdparty/symfony/console/Exception/ExceptionInterface.php %%WWWDIR%%/3rdparty/symfony/console/Exception/InvalidArgumentException.php @@ -3811,6 +3814,7 @@ %%WWWDIR%%/3rdparty/symfony/console/Input/InputDefinition.php %%WWWDIR%%/3rdparty/symfony/console/Input/InputInterface.php %%WWWDIR%%/3rdparty/symfony/console/Input/InputOption.php +%%WWWDIR%%/3rdparty/symfony/console/Input/StreamableInputInterface.php %%WWWDIR%%/3rdparty/symfony/console/Input/StringInput.php %%WWWDIR%%/3rdparty/symfony/console/LICENSE %%WWWDIR%%/3rdparty/symfony/console/Logger/ConsoleLogger.php @@ -3824,12 +3828,50 @@ %%WWWDIR%%/3rdparty/symfony/console/Question/ChoiceQuestion.php %%WWWDIR%%/3rdparty/symfony/console/Question/ConfirmationQuestion.php %%WWWDIR%%/3rdparty/symfony/console/Question/Question.php +%%WWWDIR%%/3rdparty/symfony/console/README.md %%WWWDIR%%/3rdparty/symfony/console/Style/OutputStyle.php %%WWWDIR%%/3rdparty/symfony/console/Style/StyleInterface.php %%WWWDIR%%/3rdparty/symfony/console/Style/SymfonyStyle.php +%%WWWDIR%%/3rdparty/symfony/console/Terminal.php %%WWWDIR%%/3rdparty/symfony/console/Tester/ApplicationTester.php %%WWWDIR%%/3rdparty/symfony/console/Tester/CommandTester.php %%WWWDIR%%/3rdparty/symfony/console/composer.json +%%WWWDIR%%/3rdparty/symfony/console/phpunit.xml.dist +%%WWWDIR%%/3rdparty/symfony/debug/.gitignore +%%WWWDIR%%/3rdparty/symfony/debug/BufferingLogger.php +%%WWWDIR%%/3rdparty/symfony/debug/CHANGELOG.md +%%WWWDIR%%/3rdparty/symfony/debug/Debug.php +%%WWWDIR%%/3rdparty/symfony/debug/DebugClassLoader.php +%%WWWDIR%%/3rdparty/symfony/debug/ErrorHandler.php +%%WWWDIR%%/3rdparty/symfony/debug/Exception/ClassNotFoundException.php +%%WWWDIR%%/3rdparty/symfony/debug/Exception/ContextErrorException.php +%%WWWDIR%%/3rdparty/symfony/debug/Exception/FatalErrorException.php +%%WWWDIR%%/3rdparty/symfony/debug/Exception/FatalThrowableError.php +%%WWWDIR%%/3rdparty/symfony/debug/Exception/FlattenException.php +%%WWWDIR%%/3rdparty/symfony/debug/Exception/OutOfMemoryException.php +%%WWWDIR%%/3rdparty/symfony/debug/Exception/SilencedErrorContext.php +%%WWWDIR%%/3rdparty/symfony/debug/Exception/UndefinedFunctionException.php +%%WWWDIR%%/3rdparty/symfony/debug/Exception/UndefinedMethodException.php +%%WWWDIR%%/3rdparty/symfony/debug/ExceptionHandler.php +%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php +%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php +%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php +%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php +%%WWWDIR%%/3rdparty/symfony/debug/LICENSE +%%WWWDIR%%/3rdparty/symfony/debug/README.md +%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/README.md +%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/config.m4 +%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/config.w32 +%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/php_symfony_debug.h +%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/symfony_debug.c +%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/001.phpt +%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/002.phpt +%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/002_1.phpt +%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/003.phpt +%%WWWDIR%%/3rdparty/symfony/debug/composer.json +%%WWWDIR%%/3rdparty/symfony/debug/phpunit.xml.dist +%%WWWDIR%%/3rdparty/symfony/event-dispatcher/.gitignore +%%WWWDIR%%/3rdparty/symfony/event-dispatcher/CHANGELOG.md %%WWWDIR%%/3rdparty/symfony/event-dispatcher/ContainerAwareEventDispatcher.php %%WWWDIR%%/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php %%WWWDIR%%/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php @@ -3842,6 +3884,9 @@ %%WWWDIR%%/3rdparty/symfony/event-dispatcher/GenericEvent.php %%WWWDIR%%/3rdparty/symfony/event-dispatcher/ImmutableEventDispatcher.php %%WWWDIR%%/3rdparty/symfony/event-dispatcher/LICENSE +%%WWWDIR%%/3rdparty/symfony/event-dispatcher/README.md +%%WWWDIR%%/3rdparty/symfony/event-dispatcher/composer.json +%%WWWDIR%%/3rdparty/symfony/event-dispatcher/phpunit.xml.dist %%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/LICENSE %%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/Mbstring.php %%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php @@ -3859,6 +3904,8 @@ %%WWWDIR%%/3rdparty/symfony/polyfill-php70/Resources/stubs/TypeError.php %%WWWDIR%%/3rdparty/symfony/polyfill-php70/bootstrap.php %%WWWDIR%%/3rdparty/symfony/polyfill-php70/composer.json +%%WWWDIR%%/3rdparty/symfony/process/.gitignore +%%WWWDIR%%/3rdparty/symfony/process/CHANGELOG.md %%WWWDIR%%/3rdparty/symfony/process/Exception/ExceptionInterface.php %%WWWDIR%%/3rdparty/symfony/process/Exception/InvalidArgumentException.php %%WWWDIR%%/3rdparty/symfony/process/Exception/LogicException.php @@ -3877,9 +3924,13 @@ %%WWWDIR%%/3rdparty/symfony/process/Process.php %%WWWDIR%%/3rdparty/symfony/process/ProcessBuilder.php %%WWWDIR%%/3rdparty/symfony/process/ProcessUtils.php +%%WWWDIR%%/3rdparty/symfony/process/README.md +%%WWWDIR%%/3rdparty/symfony/process/composer.json +%%WWWDIR%%/3rdparty/symfony/process/phpunit.xml.dist %%WWWDIR%%/3rdparty/symfony/routing/Annotation/Route.php %%WWWDIR%%/3rdparty/symfony/routing/CHANGELOG.md %%WWWDIR%%/3rdparty/symfony/routing/CompiledRoute.php +%%WWWDIR%%/3rdparty/symfony/routing/DependencyInjection/RoutingResolverPass.php %%WWWDIR%%/3rdparty/symfony/routing/Exception/ExceptionInterface.php %%WWWDIR%%/3rdparty/symfony/routing/Exception/InvalidParameterException.php %%WWWDIR%%/3rdparty/symfony/routing/Exception/MethodNotAllowedException.php @@ -3905,11 +3956,11 @@ %%WWWDIR%%/3rdparty/symfony/routing/Loader/YamlFileLoader.php %%WWWDIR%%/3rdparty/symfony/routing/Loader/schema/routing/routing-1.0.xsd %%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/DumperCollection.php -%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/DumperPrefixCollection.php %%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/DumperRoute.php %%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumper.php %%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php %%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php +%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/StaticPrefixCollection.php %%WWWDIR%%/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcher.php %%WWWDIR%%/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php %%WWWDIR%%/3rdparty/symfony/routing/Matcher/RequestMatcherInterface.php @@ -3926,11 +3977,74 @@ %%WWWDIR%%/3rdparty/symfony/routing/RouteCompilerInterface.php %%WWWDIR%%/3rdparty/symfony/routing/Router.php %%WWWDIR%%/3rdparty/symfony/routing/RouterInterface.php +%%WWWDIR%%/3rdparty/symfony/routing/composer.json +%%WWWDIR%%/3rdparty/symfony/translation/.gitignore +%%WWWDIR%%/3rdparty/symfony/translation/CHANGELOG.md +%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/AbstractOperation.php +%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/MergeOperation.php +%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/OperationInterface.php +%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/TargetOperation.php +%%WWWDIR%%/3rdparty/symfony/translation/Command/XliffLintCommand.php +%%WWWDIR%%/3rdparty/symfony/translation/DataCollector/TranslationDataCollector.php +%%WWWDIR%%/3rdparty/symfony/translation/DataCollectorTranslator.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/CsvFileDumper.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/DumperInterface.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/FileDumper.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/IcuResFileDumper.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/IniFileDumper.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/JsonFileDumper.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/MoFileDumper.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/PhpFileDumper.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/PoFileDumper.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/QtFileDumper.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/XliffFileDumper.php +%%WWWDIR%%/3rdparty/symfony/translation/Dumper/YamlFileDumper.php +%%WWWDIR%%/3rdparty/symfony/translation/Exception/ExceptionInterface.php +%%WWWDIR%%/3rdparty/symfony/translation/Exception/InvalidArgumentException.php +%%WWWDIR%%/3rdparty/symfony/translation/Exception/InvalidResourceException.php +%%WWWDIR%%/3rdparty/symfony/translation/Exception/LogicException.php +%%WWWDIR%%/3rdparty/symfony/translation/Exception/NotFoundResourceException.php +%%WWWDIR%%/3rdparty/symfony/translation/Exception/RuntimeException.php +%%WWWDIR%%/3rdparty/symfony/translation/Extractor/AbstractFileExtractor.php +%%WWWDIR%%/3rdparty/symfony/translation/Extractor/ChainExtractor.php +%%WWWDIR%%/3rdparty/symfony/translation/Extractor/ExtractorInterface.php +%%WWWDIR%%/3rdparty/symfony/translation/IdentityTranslator.php +%%WWWDIR%%/3rdparty/symfony/translation/Interval.php +%%WWWDIR%%/3rdparty/symfony/translation/LICENSE +%%WWWDIR%%/3rdparty/symfony/translation/Loader/ArrayLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/CsvFileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/FileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/IcuDatFileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/IcuResFileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/IniFileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/JsonFileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/LoaderInterface.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/MoFileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/PhpFileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/PoFileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/QtFileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/XliffFileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/YamlFileLoader.php +%%WWWDIR%%/3rdparty/symfony/translation/Loader/schema/dic/xliff-core/xliff-core-1.2-strict.xsd +%%WWWDIR%%/3rdparty/symfony/translation/Loader/schema/dic/xliff-core/xliff-core-2.0.xsd +%%WWWDIR%%/3rdparty/symfony/translation/Loader/schema/dic/xliff-core/xml.xsd +%%WWWDIR%%/3rdparty/symfony/translation/LoggingTranslator.php +%%WWWDIR%%/3rdparty/symfony/translation/MessageCatalogue.php +%%WWWDIR%%/3rdparty/symfony/translation/MessageCatalogueInterface.php +%%WWWDIR%%/3rdparty/symfony/translation/MessageSelector.php +%%WWWDIR%%/3rdparty/symfony/translation/MetadataAwareInterface.php +%%WWWDIR%%/3rdparty/symfony/translation/PluralizationRules.php +%%WWWDIR%%/3rdparty/symfony/translation/README.md +%%WWWDIR%%/3rdparty/symfony/translation/Resources/schemas/xliff-core-1.2-strict.xsd +%%WWWDIR%%/3rdparty/symfony/translation/Translator.php +%%WWWDIR%%/3rdparty/symfony/translation/TranslatorBagInterface.php +%%WWWDIR%%/3rdparty/symfony/translation/TranslatorInterface.php +%%WWWDIR%%/3rdparty/symfony/translation/Util/ArrayConverter.php +%%WWWDIR%%/3rdparty/symfony/translation/Writer/TranslationWriter.php +%%WWWDIR%%/3rdparty/symfony/translation/composer.json +%%WWWDIR%%/3rdparty/symfony/translation/phpunit.xml.dist %%WWWDIR%%/AUTHORS -@owner %%NEXTCLOUD_USERNAME%% -@group %%NEXTCLOUD_GROUPNAME%% %%WWWDIR%%/apps/activity/appinfo/app.php -%%WWWDIR%%/apps/activity/appinfo/database.xml %%WWWDIR%%/apps/activity/appinfo/info.xml %%WWWDIR%%/apps/activity/appinfo/routes.php %%WWWDIR%%/apps/activity/appinfo/signature.json @@ -4150,6 +4264,9 @@ %%WWWDIR%%/apps/activity/lib/GroupHelperDisabled.php %%WWWDIR%%/apps/activity/lib/Hooks.php %%WWWDIR%%/apps/activity/lib/MailQueueHandler.php +%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170808154933.php +%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170808155040.php +%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170919095939.php %%WWWDIR%%/apps/activity/lib/Navigation.php %%WWWDIR%%/apps/activity/lib/Parameter/Collection.php %%WWWDIR%%/apps/activity/lib/Parameter/Factory.php @@ -4170,19 +4287,41 @@ %%WWWDIR%%/apps/admin_audit/appinfo/app.php %%WWWDIR%%/apps/admin_audit/appinfo/info.xml %%WWWDIR%%/apps/admin_audit/appinfo/signature.json -%%WWWDIR%%/apps/admin_audit/lib/actions/action.php -%%WWWDIR%%/apps/admin_audit/lib/actions/auth.php -%%WWWDIR%%/apps/admin_audit/lib/actions/files.php -%%WWWDIR%%/apps/admin_audit/lib/actions/groupmanagement.php -%%WWWDIR%%/apps/admin_audit/lib/actions/sharing.php -%%WWWDIR%%/apps/admin_audit/lib/actions/trashbin.php -%%WWWDIR%%/apps/admin_audit/lib/actions/usermanagement.php -%%WWWDIR%%/apps/admin_audit/lib/actions/versions.php -%%WWWDIR%%/apps/admin_audit/lib/auditlogger.php +%%WWWDIR%%/apps/admin_audit/composer/autoload.php +%%WWWDIR%%/apps/admin_audit/composer/composer.json +%%WWWDIR%%/apps/admin_audit/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/admin_audit/composer/composer/LICENSE +%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_real.php +%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_static.php +%%WWWDIR%%/apps/admin_audit/lib/Actions/Action.php +%%WWWDIR%%/apps/admin_audit/lib/Actions/AppManagement.php +%%WWWDIR%%/apps/admin_audit/lib/Actions/Auth.php +%%WWWDIR%%/apps/admin_audit/lib/Actions/Console.php +%%WWWDIR%%/apps/admin_audit/lib/Actions/Files.php +%%WWWDIR%%/apps/admin_audit/lib/Actions/GroupManagement.php +%%WWWDIR%%/apps/admin_audit/lib/Actions/Sharing.php +%%WWWDIR%%/apps/admin_audit/lib/Actions/Trashbin.php +%%WWWDIR%%/apps/admin_audit/lib/Actions/UserManagement.php +%%WWWDIR%%/apps/admin_audit/lib/Actions/Versions.php +%%WWWDIR%%/apps/admin_audit/lib/AppInfo/Application.php +%%WWWDIR%%/apps/comments/.bowerrc %%WWWDIR%%/apps/comments/appinfo/app.php %%WWWDIR%%/apps/comments/appinfo/info.xml %%WWWDIR%%/apps/comments/appinfo/routes.php %%WWWDIR%%/apps/comments/appinfo/signature.json +%%WWWDIR%%/apps/comments/composer/autoload.php +%%WWWDIR%%/apps/comments/composer/composer.json +%%WWWDIR%%/apps/comments/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/comments/composer/composer/LICENSE +%%WWWDIR%%/apps/comments/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/comments/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/comments/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/comments/composer/composer/autoload_real.php +%%WWWDIR%%/apps/comments/composer/composer/autoload_static.php +%%WWWDIR%%/apps/comments/css/autocomplete.scss %%WWWDIR%%/apps/comments/css/comments.css %%WWWDIR%%/apps/comments/img/comments-dark.svg %%WWWDIR%%/apps/comments/img/comments.svg @@ -4194,6 +4333,8 @@ %%WWWDIR%%/apps/comments/js/commentsummarymodel.js %%WWWDIR%%/apps/comments/js/filesplugin.js %%WWWDIR%%/apps/comments/js/merged.json +%%WWWDIR%%/apps/comments/js/vendor/At.js/dist/js/jquery.atwho.min.js +%%WWWDIR%%/apps/comments/js/vendor/Caret.js/dist/jquery.caret.min.js %%WWWDIR%%/apps/comments/l10n/.gitkeep %%WWWDIR%%/apps/comments/l10n/af.js %%WWWDIR%%/apps/comments/l10n/af.json @@ -4402,13 +4543,15 @@ %%WWWDIR%%/apps/comments/lib/Activity/Provider.php %%WWWDIR%%/apps/comments/lib/Activity/Setting.php %%WWWDIR%%/apps/comments/lib/AppInfo/Application.php +%%WWWDIR%%/apps/comments/lib/Collaboration/CommentersSorter.php %%WWWDIR%%/apps/comments/lib/Controller/Notifications.php %%WWWDIR%%/apps/comments/lib/EventHandler.php +%%WWWDIR%%/apps/comments/lib/JSSettingsHelper.php %%WWWDIR%%/apps/comments/lib/Notification/Listener.php %%WWWDIR%%/apps/comments/lib/Notification/Notifier.php %%WWWDIR%%/apps/dav/appinfo/app.php -%%WWWDIR%%/apps/dav/appinfo/database.xml %%WWWDIR%%/apps/dav/appinfo/info.xml +%%WWWDIR%%/apps/dav/appinfo/routes.php %%WWWDIR%%/apps/dav/appinfo/signature.json %%WWWDIR%%/apps/dav/appinfo/v1/caldav.php %%WWWDIR%%/apps/dav/appinfo/v1/carddav.php @@ -4416,6 +4559,16 @@ %%WWWDIR%%/apps/dav/appinfo/v1/webdav.php %%WWWDIR%%/apps/dav/appinfo/v2/remote.php %%WWWDIR%%/apps/dav/bin/chunkperf.php +%%WWWDIR%%/apps/dav/composer/autoload.php +%%WWWDIR%%/apps/dav/composer/composer.json +%%WWWDIR%%/apps/dav/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/dav/composer/composer/LICENSE +%%WWWDIR%%/apps/dav/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/dav/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/dav/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/dav/composer/composer/autoload_real.php +%%WWWDIR%%/apps/dav/composer/composer/autoload_static.php +%%WWWDIR%%/apps/dav/js/settings-admin-caldav.js %%WWWDIR%%/apps/dav/l10n/.gitkeep %%WWWDIR%%/apps/dav/l10n/bg.js %%WWWDIR%%/apps/dav/l10n/bg.json @@ -4536,9 +4689,11 @@ %%WWWDIR%%/apps/dav/l10n/zh_TW.js %%WWWDIR%%/apps/dav/l10n/zh_TW.json %%WWWDIR%%/apps/dav/lib/AppInfo/Application.php +%%WWWDIR%%/apps/dav/lib/AppInfo/PluginManager.php %%WWWDIR%%/apps/dav/lib/Avatars/AvatarHome.php %%WWWDIR%%/apps/dav/lib/Avatars/AvatarNode.php %%WWWDIR%%/apps/dav/lib/Avatars/RootCollection.php +%%WWWDIR%%/apps/dav/lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php %%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Backend.php %%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Calendar.php %%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Todo.php @@ -4549,13 +4704,18 @@ %%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Calendar.php %%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Event.php %%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Todo.php +%%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayCalendar/EnablePlugin.php %%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayService.php %%WWWDIR%%/apps/dav/lib/CalDAV/CalDavBackend.php %%WWWDIR%%/apps/dav/lib/CalDAV/Calendar.php %%WWWDIR%%/apps/dav/lib/CalDAV/CalendarHome.php +%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarImpl.php +%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarManager.php %%WWWDIR%%/apps/dav/lib/CalDAV/CalendarObject.php %%WWWDIR%%/apps/dav/lib/CalDAV/CalendarRoot.php %%WWWDIR%%/apps/dav/lib/CalDAV/Plugin.php +%%WWWDIR%%/apps/dav/lib/CalDAV/Principal/Collection.php +%%WWWDIR%%/apps/dav/lib/CalDAV/Principal/User.php %%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendar.php %%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarObject.php %%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarRoot.php @@ -4599,6 +4759,7 @@ %%WWWDIR%%/apps/dav/lib/Connector/Sabre/Auth.php %%WWWDIR%%/apps/dav/lib/Connector/Sabre/BearerAuth.php %%WWWDIR%%/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php +%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CachingTree.php %%WWWDIR%%/apps/dav/lib/Connector/Sabre/ChecksumList.php %%WWWDIR%%/apps/dav/lib/Connector/Sabre/CommentPropertiesPlugin.php %%WWWDIR%%/apps/dav/lib/Connector/Sabre/CopyEtagHeaderPlugin.php @@ -4629,6 +4790,7 @@ %%WWWDIR%%/apps/dav/lib/Connector/Sabre/SharesPlugin.php %%WWWDIR%%/apps/dav/lib/Connector/Sabre/TagList.php %%WWWDIR%%/apps/dav/lib/Connector/Sabre/TagsPlugin.php +%%WWWDIR%%/apps/dav/lib/Controller/BirthdayCalendarController.php %%WWWDIR%%/apps/dav/lib/DAV/CustomPropertiesBackend.php %%WWWDIR%%/apps/dav/lib/DAV/GroupPrincipalBackend.php %%WWWDIR%%/apps/dav/lib/DAV/PublicAuth.php @@ -4649,8 +4811,13 @@ %%WWWDIR%%/apps/dav/lib/Migration/BuildCalendarSearchIndexBackgroundJob.php %%WWWDIR%%/apps/dav/lib/Migration/CalDAVRemoveEmptyValue.php %%WWWDIR%%/apps/dav/lib/Migration/FixBirthdayCalendarComponent.php +%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170825134824.php +%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170919104507.php +%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170924124212.php +%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170926103422.php %%WWWDIR%%/apps/dav/lib/RootCollection.php %%WWWDIR%%/apps/dav/lib/Server.php +%%WWWDIR%%/apps/dav/lib/Settings/CalDAVSettings.php %%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagMappingNode.php %%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagNode.php %%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagPlugin.php @@ -4659,15 +4826,26 @@ %%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php %%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php %%WWWDIR%%/apps/dav/lib/Upload/AssemblyStream.php +%%WWWDIR%%/apps/dav/lib/Upload/ChunkingPlugin.php %%WWWDIR%%/apps/dav/lib/Upload/FutureFile.php %%WWWDIR%%/apps/dav/lib/Upload/RootCollection.php %%WWWDIR%%/apps/dav/lib/Upload/UploadFolder.php %%WWWDIR%%/apps/dav/lib/Upload/UploadHome.php %%WWWDIR%%/apps/dav/templates/exception.php +%%WWWDIR%%/apps/dav/templates/settings-admin-caldav.php %%WWWDIR%%/apps/encryption/appinfo/app.php %%WWWDIR%%/apps/encryption/appinfo/info.xml %%WWWDIR%%/apps/encryption/appinfo/routes.php %%WWWDIR%%/apps/encryption/appinfo/signature.json +%%WWWDIR%%/apps/encryption/composer/autoload.php +%%WWWDIR%%/apps/encryption/composer/composer.json +%%WWWDIR%%/apps/encryption/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/encryption/composer/composer/LICENSE +%%WWWDIR%%/apps/encryption/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/encryption/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/encryption/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/encryption/composer/composer/autoload_real.php +%%WWWDIR%%/apps/encryption/composer/composer/autoload_static.php %%WWWDIR%%/apps/encryption/css/settings-admin.css %%WWWDIR%%/apps/encryption/css/settings-personal.css %%WWWDIR%%/apps/encryption/img/app.svg @@ -4842,6 +5020,7 @@ %%WWWDIR%%/apps/encryption/l10n/zh_TW.js %%WWWDIR%%/apps/encryption/l10n/zh_TW.json %%WWWDIR%%/apps/encryption/lib/AppInfo/Application.php +%%WWWDIR%%/apps/encryption/lib/Command/DisableMasterKey.php %%WWWDIR%%/apps/encryption/lib/Command/EnableMasterKey.php %%WWWDIR%%/apps/encryption/lib/Command/MigrateKeys.php %%WWWDIR%%/apps/encryption/lib/Controller/RecoveryController.php @@ -4860,12 +5039,13 @@ %%WWWDIR%%/apps/encryption/lib/Hooks/UserHooks.php %%WWWDIR%%/apps/encryption/lib/KeyManager.php %%WWWDIR%%/apps/encryption/lib/Migration.php +%%WWWDIR%%/apps/encryption/lib/Migration/SetMasterKeyStatus.php %%WWWDIR%%/apps/encryption/lib/Recovery.php %%WWWDIR%%/apps/encryption/lib/Session.php %%WWWDIR%%/apps/encryption/lib/Settings/Admin.php +%%WWWDIR%%/apps/encryption/lib/Settings/Personal.php %%WWWDIR%%/apps/encryption/lib/Users/Setup.php %%WWWDIR%%/apps/encryption/lib/Util.php -%%WWWDIR%%/apps/encryption/settings/settings-personal.php %%WWWDIR%%/apps/encryption/templates/altmail.php %%WWWDIR%%/apps/encryption/templates/mail.php %%WWWDIR%%/apps/encryption/templates/settings-admin.php @@ -4875,6 +5055,15 @@ %%WWWDIR%%/apps/federatedfilesharing/appinfo/info.xml %%WWWDIR%%/apps/federatedfilesharing/appinfo/routes.php %%WWWDIR%%/apps/federatedfilesharing/appinfo/signature.json +%%WWWDIR%%/apps/federatedfilesharing/composer/autoload.php +%%WWWDIR%%/apps/federatedfilesharing/composer/composer.json +%%WWWDIR%%/apps/federatedfilesharing/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/federatedfilesharing/composer/composer/LICENSE +%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_real.php +%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_static.php %%WWWDIR%%/apps/federatedfilesharing/css/settings-personal.css %%WWWDIR%%/apps/federatedfilesharing/img/social-diaspora.svg %%WWWDIR%%/apps/federatedfilesharing/img/social-facebook.svg @@ -5041,8 +5230,9 @@ %%WWWDIR%%/apps/federatedfilesharing/lib/Notifications.php %%WWWDIR%%/apps/federatedfilesharing/lib/Notifier.php %%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Admin.php +%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Personal.php +%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/PersonalSection.php %%WWWDIR%%/apps/federatedfilesharing/lib/TokenHandler.php -%%WWWDIR%%/apps/federatedfilesharing/settings-personal.php %%WWWDIR%%/apps/federatedfilesharing/templates/settings-admin.php %%WWWDIR%%/apps/federatedfilesharing/templates/settings-personal.php %%WWWDIR%%/apps/federation/appinfo/app.php @@ -5050,6 +5240,15 @@ %%WWWDIR%%/apps/federation/appinfo/info.xml %%WWWDIR%%/apps/federation/appinfo/routes.php %%WWWDIR%%/apps/federation/appinfo/signature.json +%%WWWDIR%%/apps/federation/composer/autoload.php +%%WWWDIR%%/apps/federation/composer/composer.json +%%WWWDIR%%/apps/federation/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/federation/composer/composer/LICENSE +%%WWWDIR%%/apps/federation/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/federation/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/federation/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/federation/composer/composer/autoload_real.php +%%WWWDIR%%/apps/federation/composer/composer/autoload_static.php %%WWWDIR%%/apps/federation/css/settings-admin.css %%WWWDIR%%/apps/federation/img/app.svg %%WWWDIR%%/apps/federation/js/settings-admin.js @@ -5214,6 +5413,15 @@ %%WWWDIR%%/apps/files/appinfo/info.xml %%WWWDIR%%/apps/files/appinfo/routes.php %%WWWDIR%%/apps/files/appinfo/signature.json +%%WWWDIR%%/apps/files/composer/autoload.php +%%WWWDIR%%/apps/files/composer/composer.json +%%WWWDIR%%/apps/files/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/files/composer/composer/LICENSE +%%WWWDIR%%/apps/files/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/files/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/files/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/files/composer/composer/autoload_real.php +%%WWWDIR%%/apps/files/composer/composer/autoload_static.php %%WWWDIR%%/apps/files/css/detailsView.scss %%WWWDIR%%/apps/files/css/files.scss %%WWWDIR%%/apps/files/css/merged.scss @@ -5231,6 +5439,7 @@ %%WWWDIR%%/apps/files/img/external.svg %%WWWDIR%%/apps/files/img/folder.svg %%WWWDIR%%/apps/files/img/public.svg +%%WWWDIR%%/apps/files/img/quota.svg %%WWWDIR%%/apps/files/img/recent.svg %%WWWDIR%%/apps/files/img/share.svg %%WWWDIR%%/apps/files/img/star.svg @@ -5548,21 +5757,6 @@ %%WWWDIR%%/apps/files/templates/recentlist.php %%WWWDIR%%/apps/files/templates/simplelist.php %%WWWDIR%%/apps/files_external/3rdparty/.gitignore -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/API.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/Exception.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/Exception/Forbidden.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/Exception/NotFound.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/Exception/OverQuota.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/Exception/RequestToken.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/Consumer/Dropbox.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/Curl.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/PEAR.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/PHP.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/Wordpress.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/Zend.php -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/ca-bundle.pem -%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/autoload.php %%WWWDIR%%/apps/files_external/3rdparty/autoload.php %%WWWDIR%%/apps/files_external/3rdparty/composer.json %%WWWDIR%%/apps/files_external/3rdparty/composer.lock @@ -5574,145 +5768,6 @@ %%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_real.php %%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_static.php %%WWWDIR%%/apps/files_external/3rdparty/composer/installed.json -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/LICENSE -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/README.md -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/Abstract.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/AppIdentity.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/AssertionCredentials.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/ComputeEngine.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/Exception.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/LoginTicket.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/OAuth2.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/Simple.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Abstract.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Apc.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Exception.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/File.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Memcache.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Null.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Client.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Collection.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Config.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Exception.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/Batch.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/CacheParser.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/MediaFileUpload.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/REST.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/Request.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Abstract.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Curl.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Exception.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Stream.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/cacerts.pem -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Abstract.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Exception.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/File.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Null.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Psr.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Model.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdExchangeBuyer.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdExchangeSeller.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdSense.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdSenseHost.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Admin.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Analytics.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AndroidEnterprise.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AndroidPublisher.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AppState.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Appengine.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Appsactivity.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Audit.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Autoscaler.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Bigquery.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Blogger.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Books.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Calendar.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/CivicInfo.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Classroom.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/CloudMonitoring.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/CloudUserAccounts.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudbilling.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Clouddebugger.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudlatencytest.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudresourcemanager.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudsearch.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudtrace.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Compute.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Computeaccounts.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Container.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Coordinate.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Customsearch.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/DataTransfer.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Dataflow.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Datastore.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/DeploymentManager.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Dfareporting.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Directory.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Dns.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/DoubleClickBidManager.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Doubleclicksearch.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Drive.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Exception.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Fitness.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Freebase.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Fusiontables.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Games.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/GamesConfiguration.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/GamesManagement.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Genomics.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Gmail.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/GroupsMigration.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Groupssettings.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/IdentityToolkit.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Licensing.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Logging.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Manager.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/MapsEngine.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Mirror.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Oauth2.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Pagespeedonline.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Partners.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Playmoviespartner.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Plus.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/PlusDomains.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Prediction.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Proximitybeacon.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Pubsub.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/QPXExpress.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Replicapool.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Replicapoolupdater.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Reports.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Reseller.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Resource.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Resourceviews.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/SQLAdmin.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Script.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/ShoppingContent.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/SiteVerification.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Spectrum.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Storage.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Storagetransfer.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/TagManager.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Taskqueue.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Tasks.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Translate.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Urlshortener.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Webfonts.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Webmasters.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/YouTube.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/YouTubeAnalytics.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/YouTubeReporting.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Signer/Abstract.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Signer/P12.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Task/Exception.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Task/Retryable.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Task/Runner.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Utils.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Utils/URITemplate.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Verifier/Abstract.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Verifier/Pem.php -%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/autoload.php %%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/.gitignore %%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/LICENSE.txt %%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/README.md @@ -5784,7 +5839,6 @@ %%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/UrlCallBack.php %%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Wrapper.php %%WWWDIR%%/apps/files_external/ajax/applicable.php -%%WWWDIR%%/apps/files_external/ajax/oauth1.php %%WWWDIR%%/apps/files_external/ajax/oauth2.php %%WWWDIR%%/apps/files_external/appinfo/app.php %%WWWDIR%%/apps/files_external/appinfo/database.xml @@ -5796,8 +5850,6 @@ %%WWWDIR%%/apps/files_external/img/app-dark.svg %%WWWDIR%%/apps/files_external/img/app.svg %%WWWDIR%%/apps/files_external/js/app.js -%%WWWDIR%%/apps/files_external/js/dropbox.js -%%WWWDIR%%/apps/files_external/js/gdrive.js %%WWWDIR%%/apps/files_external/js/mountsfilelist.js %%WWWDIR%%/apps/files_external/js/oauth1.js %%WWWDIR%%/apps/files_external/js/oauth2.js @@ -6032,6 +6084,7 @@ %%WWWDIR%%/apps/files_external/lib/Lib/Auth/AuthMechanism.php %%WWWDIR%%/apps/files_external/lib/Lib/Auth/Builtin.php %%WWWDIR%%/apps/files_external/lib/Lib/Auth/IUserProvided.php +%%WWWDIR%%/apps/files_external/lib/Lib/Auth/InvalidAuth.php %%WWWDIR%%/apps/files_external/lib/Lib/Auth/NullMechanism.php %%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth1/OAuth1.php %%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth2/OAuth2.php @@ -6046,9 +6099,8 @@ %%WWWDIR%%/apps/files_external/lib/Lib/Backend/AmazonS3.php %%WWWDIR%%/apps/files_external/lib/Lib/Backend/Backend.php %%WWWDIR%%/apps/files_external/lib/Lib/Backend/DAV.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Dropbox.php %%WWWDIR%%/apps/files_external/lib/Lib/Backend/FTP.php -%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Google.php +%%WWWDIR%%/apps/files_external/lib/Lib/Backend/InvalidBackend.php %%WWWDIR%%/apps/files_external/lib/Lib/Backend/LegacyBackend.php %%WWWDIR%%/apps/files_external/lib/Lib/Backend/Local.php %%WWWDIR%%/apps/files_external/lib/Lib/Backend/OwnCloud.php @@ -6071,9 +6123,7 @@ %%WWWDIR%%/apps/files_external/lib/Lib/PriorityTrait.php %%WWWDIR%%/apps/files_external/lib/Lib/SessionStorageWrapper.php %%WWWDIR%%/apps/files_external/lib/Lib/Storage/AmazonS3.php -%%WWWDIR%%/apps/files_external/lib/Lib/Storage/Dropbox.php %%WWWDIR%%/apps/files_external/lib/Lib/Storage/FTP.php -%%WWWDIR%%/apps/files_external/lib/Lib/Storage/Google.php %%WWWDIR%%/apps/files_external/lib/Lib/Storage/OwnCloud.php %%WWWDIR%%/apps/files_external/lib/Lib/Storage/SFTP.php %%WWWDIR%%/apps/files_external/lib/Lib/Storage/SMB.php @@ -6096,10 +6146,11 @@ %%WWWDIR%%/apps/files_external/lib/Service/UserStoragesService.php %%WWWDIR%%/apps/files_external/lib/Service/UserTrait.php %%WWWDIR%%/apps/files_external/lib/Settings/Admin.php +%%WWWDIR%%/apps/files_external/lib/Settings/Personal.php +%%WWWDIR%%/apps/files_external/lib/Settings/PersonalSection.php %%WWWDIR%%/apps/files_external/lib/Settings/Section.php %%WWWDIR%%/apps/files_external/lib/config.php %%WWWDIR%%/apps/files_external/list.php -%%WWWDIR%%/apps/files_external/personal.php %%WWWDIR%%/apps/files_external/templates/list.php %%WWWDIR%%/apps/files_external/templates/settings.php %%WWWDIR%%/apps/files_pdfviewer/.github/contributing.md @@ -6484,12 +6535,20 @@ %%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/zu/viewer.properties %%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.css %%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.js -%%WWWDIR%%/apps/files_sharing/ajax/shareinfo.php %%WWWDIR%%/apps/files_sharing/appinfo/app.php %%WWWDIR%%/apps/files_sharing/appinfo/database.xml %%WWWDIR%%/apps/files_sharing/appinfo/info.xml %%WWWDIR%%/apps/files_sharing/appinfo/routes.php %%WWWDIR%%/apps/files_sharing/appinfo/signature.json +%%WWWDIR%%/apps/files_sharing/composer/autoload.php +%%WWWDIR%%/apps/files_sharing/composer/composer.json +%%WWWDIR%%/apps/files_sharing/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/files_sharing/composer/composer/LICENSE +%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_real.php +%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_static.php %%WWWDIR%%/apps/files_sharing/css/404.css %%WWWDIR%%/apps/files_sharing/css/authenticate.css %%WWWDIR%%/apps/files_sharing/css/mergedAdditionalStyles.scss @@ -6729,12 +6788,14 @@ %%WWWDIR%%/apps/files_sharing/lib/AppInfo/Application.php %%WWWDIR%%/apps/files_sharing/lib/Cache.php %%WWWDIR%%/apps/files_sharing/lib/Capabilities.php +%%WWWDIR%%/apps/files_sharing/lib/Collaboration/ShareRecipientSorter.php %%WWWDIR%%/apps/files_sharing/lib/Command/CleanupRemoteStorages.php %%WWWDIR%%/apps/files_sharing/lib/Controller/ExternalSharesController.php %%WWWDIR%%/apps/files_sharing/lib/Controller/PublicPreviewController.php %%WWWDIR%%/apps/files_sharing/lib/Controller/RemoteController.php %%WWWDIR%%/apps/files_sharing/lib/Controller/ShareAPIController.php %%WWWDIR%%/apps/files_sharing/lib/Controller/ShareController.php +%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareInfoController.php %%WWWDIR%%/apps/files_sharing/lib/Controller/ShareesAPIController.php %%WWWDIR%%/apps/files_sharing/lib/DeleteOrphanedSharesJob.php %%WWWDIR%%/apps/files_sharing/lib/Exceptions/BrokenPath.php @@ -6751,6 +6812,7 @@ %%WWWDIR%%/apps/files_sharing/lib/Hooks.php %%WWWDIR%%/apps/files_sharing/lib/ISharedStorage.php %%WWWDIR%%/apps/files_sharing/lib/Middleware/OCSShareAPIMiddleware.php +%%WWWDIR%%/apps/files_sharing/lib/Middleware/ShareInfoMiddleware.php %%WWWDIR%%/apps/files_sharing/lib/Middleware/SharingCheckMiddleware.php %%WWWDIR%%/apps/files_sharing/lib/Migration/OwncloudGuestShareType.php %%WWWDIR%%/apps/files_sharing/lib/Migration/SetPasswordColumn.php @@ -6770,11 +6832,9 @@ %%WWWDIR%%/apps/files_texteditor/.github/contributing.md %%WWWDIR%%/apps/files_texteditor/.github/issue_template.md %%WWWDIR%%/apps/files_texteditor/appinfo/app.php -%%WWWDIR%%/apps/files_texteditor/appinfo/application.php %%WWWDIR%%/apps/files_texteditor/appinfo/info.xml %%WWWDIR%%/apps/files_texteditor/appinfo/routes.php %%WWWDIR%%/apps/files_texteditor/appinfo/signature.json -%%WWWDIR%%/apps/files_texteditor/controller/filehandlingcontroller.php %%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.eot %%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg %%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf @@ -6783,6 +6843,7 @@ %%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/stylesheet.scss %%WWWDIR%%/apps/files_texteditor/css/merged.scss %%WWWDIR%%/apps/files_texteditor/css/mobile.scss +%%WWWDIR%%/apps/files_texteditor/css/public-share.css %%WWWDIR%%/apps/files_texteditor/css/style.scss %%WWWDIR%%/apps/files_texteditor/img/app.png %%WWWDIR%%/apps/files_texteditor/img/app.svg @@ -6807,6 +6868,7 @@ %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-assembly_x86.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-autohotkey.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-batchfile.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-bro.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c9search.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c_cpp.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cirru.js @@ -6838,12 +6900,14 @@ %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-glsl.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gobstones.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-golang.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-graphqlschema.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-groovy.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haml.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-handlebars.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell_cabal.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haxe.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-hjson.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_elixir.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_ruby.js @@ -6890,6 +6954,7 @@ %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-perl.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pgsql.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-php.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pig.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-plain_text.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-powershell.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-praat.js @@ -6915,6 +6980,7 @@ %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-snippets.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-soy_template.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-space.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sparql.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sql.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sqlserver.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-stylus.js @@ -6927,6 +6993,7 @@ %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-textile.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-toml.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tsx.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-turtle.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-twig.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-typescript.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vala.js @@ -6948,6 +7015,7 @@ %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/assembly_x86.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/autohotkey.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/batchfile.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/bro.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c9search.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c_cpp.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cirru.js @@ -6979,12 +7047,14 @@ %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/glsl.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gobstones.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/golang.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/graphqlschema.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/groovy.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haml.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/handlebars.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell_cabal.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haxe.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/hjson.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_elixir.js *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***