Index: UPDATING =================================================================== --- UPDATING (revision 461137) +++ UPDATING (working copy) @@ -5,6 +5,14 @@ You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20180207: + AFFECTS: users of www/nextcloud and nextcloud-* apps + AUTHOR: brnrd@FreeBSD.org + + The www/nextcloud port by default no longer allows modification by www + of files. For users wanting to use the built-in methods to add apps and + themes, the option UNSAFE was added to restore old behavior + 20180201: AFFECTS: users of editors/emacs* and all ports using Emacs via USES=emacs AUTHOR: jrm@FreeBSD.org Index: www/nextcloud/Makefile =================================================================== --- www/nextcloud/Makefile (revision 460701) +++ www/nextcloud/Makefile (working copy) @@ -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/ @@ -15,22 +15,19 @@ mbstring pdo posix session simplexml xml xmlreader xmlwriter \ xsl wddx zip zlib -NEXTCLOUD_USERNAME?= ${WWWOWN} -NEXTCLOUD_GROUPNAME?= ${WWWGRP} - WRKSRC= ${WRKDIR}/${PORTNAME} NO_BUILD= yes NO_ARCH= yes SUB_FILES= pkg-message -PLIST_SUB= NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \ - NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME} -OPTIONS_DEFINE= EXIF LDAP SMB SSL +OPTIONS_DEFINE= EXIF LDAP SMB SSL UNSAFE 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 +UNSAFE_DESC= Allow self-modification of Nextcloud EXIF_USE= PHP=exif LDAP_USE= PHP=ldap @@ -41,13 +38,10 @@ SQLITE_USE= PHP=pdo_sqlite,sqlite3 SMB_RUN_DEPENDS= pecl-smbclient>=0.8.0:net/pecl-smbclient SSL_USE= PHP=openssl +UNSAFE_PLIST_SUB= NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME:U${WWWOWN}} \ + NEXTCLOUD_GROUPNAME=${NEXTCLOUD_USERNAME:U${WWWGRP}} +UNSAFE_PLIST_SUB_OFF= NEXTCLOUD_USERNAME=root NEXTCLOUD_GROUPNAME=wheel -.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 +51,4 @@ @${RM} ${STAGEDIR}${WWWDIR}/updater/updater.phar @${MKDIR} ${STAGEDIR}${WWWDIR}/data -.include +.include Index: www/nextcloud/distinfo =================================================================== --- www/nextcloud/distinfo (revision 460701) +++ www/nextcloud/distinfo (working copy) @@ -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 Index: www/nextcloud/files/extra-patch-PostgreSQL-10 =================================================================== --- www/nextcloud/files/extra-patch-PostgreSQL-10 (revision 460701) +++ www/nextcloud/files/extra-patch-PostgreSQL-10 (nonexistent) @@ -1,20 +0,0 @@ ---- 3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php.orig 2017-11-27 09:11:23 UTC -+++ 3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php -@@ -289,7 +289,16 @@ class PostgreSqlSchemaManager extends Ab - $sequenceName = $sequence['relname']; - } - -- $data = $this->_conn->fetchAll('SELECT min_value, increment_by FROM ' . $this->_platform->quoteIdentifier($sequenceName)); -+ $version = floatval($this->_conn->getWrappedConnection()->getServerVersion()); -+ -+ if ($version >= 10) { -+ $data = $this->_conn->fetchAll('SELECT min_value, increment_by FROM pg_sequences WHERE schemaname = \'public\' AND sequencename = '.$this->_conn->quote($sequenceName)); -+ } -+ else -+ { -+ $data = $this->_conn->fetchAll('SELECT min_value, increment_by FROM ' . $this->_platform->quoteIdentifier($sequenceName)); -+ } -+// $data = $this->_conn->fetchAll('SELECT min_value, increment_by FROM ' . $this->_platform->quoteIdentifier($sequenceName)); - - return new Sequence($sequenceName, $data[0]['increment_by'], $data[0]['min_value']); - } Property changes on: www/nextcloud/files/extra-patch-PostgreSQL-10 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: www/nextcloud/files/pkg-message.in =================================================================== --- www/nextcloud/files/pkg-message.in (revision 460701) +++ www/nextcloud/files/pkg-message.in (working copy) @@ -32,6 +32,15 @@ And restart Apache. +Temporarily allow the `www` user to write the config directory for +the nextcloud installer: + +$ chown www %%WWWDIR%%/config + +When Nextcloud is configured secure your installation again + +$ chown -R root %%WWWDIR%%/config + *********************************************************************** * NEXTCLOUD VERSION UPGRADE * *********************************************************************** Index: www/nextcloud/pkg-plist =================================================================== --- www/nextcloud/pkg-plist (revision 460701) +++ www/nextcloud/pkg-plist (working copy) @@ -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,76 @@ %%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 +4266,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 +4289,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 +4335,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 +4545,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 +4561,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 +4691,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 +4706,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 +4761,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 +4792,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 +4813,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 +4828,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 +5022,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 +5041,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 +5057,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 +5232,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 +5242,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 +5415,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 +5441,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 +5759,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 +5770,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 +5841,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 +5852,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 +6086,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 +6101,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 +6125,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 +6148,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 +6537,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,6 +6790,7 @@ %%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 @@ -6735,6 +6797,7 @@ %%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 +6814,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 +6834,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 +6845,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 +6870,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,6 +6902,7 @@ %%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 @@ -6844,6 +6909,7 @@ %%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 +6956,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 +6982,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 +6995,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 +7017,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,6 +7049,7 @@ %%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 @@ -6985,6 +7056,7 @@ %%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 %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_ruby.js @@ -7030,6 +7102,7 @@ %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/perl.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pgsql.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/php.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pig.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/plain_text.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/powershell.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/praat.js @@ -7055,6 +7128,7 @@ %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/snippets.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/soy_template.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/space.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sparql.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sql.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sqlserver.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/stylus.js @@ -7067,6 +7141,7 @@ %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/textile.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/toml.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tsx.js +%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/turtle.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/twig.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/typescript.js %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vala.js @@ -7090,6 +7165,7 @@ %%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xquery.js %%WWWDIR%%/apps/files_texteditor/js/editor.js %%WWWDIR%%/apps/files_texteditor/js/merged.json +%%WWWDIR%%/apps/files_texteditor/js/public-share.js %%WWWDIR%%/apps/files_texteditor/js/sidebarpreview.js %%WWWDIR%%/apps/files_texteditor/l10n/.gitkeep %%WWWDIR%%/apps/files_texteditor/l10n/.tx/config @@ -7100,8 +7176,6 @@ %%WWWDIR%%/apps/files_texteditor/l10n/az.json %%WWWDIR%%/apps/files_texteditor/l10n/bg.js %%WWWDIR%%/apps/files_texteditor/l10n/bg.json -%%WWWDIR%%/apps/files_texteditor/l10n/bg_BG.js -%%WWWDIR%%/apps/files_texteditor/l10n/bg_BG.json %%WWWDIR%%/apps/files_texteditor/l10n/bn_BD.php %%WWWDIR%%/apps/files_texteditor/l10n/bs.php %%WWWDIR%%/apps/files_texteditor/l10n/ca.js @@ -7108,8 +7182,6 @@ %%WWWDIR%%/apps/files_texteditor/l10n/ca.json %%WWWDIR%%/apps/files_texteditor/l10n/cs.js %%WWWDIR%%/apps/files_texteditor/l10n/cs.json -%%WWWDIR%%/apps/files_texteditor/l10n/cs_CZ.js -%%WWWDIR%%/apps/files_texteditor/l10n/cs_CZ.json %%WWWDIR%%/apps/files_texteditor/l10n/cy_GB.php %%WWWDIR%%/apps/files_texteditor/l10n/da.js %%WWWDIR%%/apps/files_texteditor/l10n/da.json @@ -7169,12 +7241,8 @@ %%WWWDIR%%/apps/files_texteditor/l10n/fa.json %%WWWDIR%%/apps/files_texteditor/l10n/fi.js %%WWWDIR%%/apps/files_texteditor/l10n/fi.json -%%WWWDIR%%/apps/files_texteditor/l10n/fi_FI.js -%%WWWDIR%%/apps/files_texteditor/l10n/fi_FI.json %%WWWDIR%%/apps/files_texteditor/l10n/fr.js %%WWWDIR%%/apps/files_texteditor/l10n/fr.json -%%WWWDIR%%/apps/files_texteditor/l10n/gl.js -%%WWWDIR%%/apps/files_texteditor/l10n/gl.json %%WWWDIR%%/apps/files_texteditor/l10n/he.js %%WWWDIR%%/apps/files_texteditor/l10n/he.json %%WWWDIR%%/apps/files_texteditor/l10n/hi.php @@ -7181,8 +7249,6 @@ %%WWWDIR%%/apps/files_texteditor/l10n/hr.php %%WWWDIR%%/apps/files_texteditor/l10n/hu.js %%WWWDIR%%/apps/files_texteditor/l10n/hu.json -%%WWWDIR%%/apps/files_texteditor/l10n/hu_HU.js -%%WWWDIR%%/apps/files_texteditor/l10n/hu_HU.json %%WWWDIR%%/apps/files_texteditor/l10n/hy.js %%WWWDIR%%/apps/files_texteditor/l10n/hy.json %%WWWDIR%%/apps/files_texteditor/l10n/ia.php @@ -7208,8 +7274,6 @@ %%WWWDIR%%/apps/files_texteditor/l10n/ms_MY.php %%WWWDIR%%/apps/files_texteditor/l10n/nb.js %%WWWDIR%%/apps/files_texteditor/l10n/nb.json -%%WWWDIR%%/apps/files_texteditor/l10n/nb_NO.js -%%WWWDIR%%/apps/files_texteditor/l10n/nb_NO.json %%WWWDIR%%/apps/files_texteditor/l10n/nl.js %%WWWDIR%%/apps/files_texteditor/l10n/nl.json %%WWWDIR%%/apps/files_texteditor/l10n/nn_NO.js @@ -7230,8 +7294,6 @@ %%WWWDIR%%/apps/files_texteditor/l10n/si_LK.php %%WWWDIR%%/apps/files_texteditor/l10n/sk.js %%WWWDIR%%/apps/files_texteditor/l10n/sk.json -%%WWWDIR%%/apps/files_texteditor/l10n/sk_SK.js -%%WWWDIR%%/apps/files_texteditor/l10n/sk_SK.json %%WWWDIR%%/apps/files_texteditor/l10n/sl.js %%WWWDIR%%/apps/files_texteditor/l10n/sl.json %%WWWDIR%%/apps/files_texteditor/l10n/sq.js @@ -7238,8 +7300,6 @@ %%WWWDIR%%/apps/files_texteditor/l10n/sq.json %%WWWDIR%%/apps/files_texteditor/l10n/sr.js %%WWWDIR%%/apps/files_texteditor/l10n/sr.json -%%WWWDIR%%/apps/files_texteditor/l10n/sr@latin.js -%%WWWDIR%%/apps/files_texteditor/l10n/sr@latin.json %%WWWDIR%%/apps/files_texteditor/l10n/sv.js %%WWWDIR%%/apps/files_texteditor/l10n/sv.json %%WWWDIR%%/apps/files_texteditor/l10n/ta_LK.php @@ -7246,15 +7306,11 @@ %%WWWDIR%%/apps/files_texteditor/l10n/te.php %%WWWDIR%%/apps/files_texteditor/l10n/th.js %%WWWDIR%%/apps/files_texteditor/l10n/th.json -%%WWWDIR%%/apps/files_texteditor/l10n/th_TH.js -%%WWWDIR%%/apps/files_texteditor/l10n/th_TH.json %%WWWDIR%%/apps/files_texteditor/l10n/tr.js %%WWWDIR%%/apps/files_texteditor/l10n/tr.json %%WWWDIR%%/apps/files_texteditor/l10n/ug.php %%WWWDIR%%/apps/files_texteditor/l10n/uk.js %%WWWDIR%%/apps/files_texteditor/l10n/uk.json -%%WWWDIR%%/apps/files_texteditor/l10n/vi.js -%%WWWDIR%%/apps/files_texteditor/l10n/vi.json %%WWWDIR%%/apps/files_texteditor/l10n/vi.php %%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.js %%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.json @@ -7261,6 +7317,7 @@ %%WWWDIR%%/apps/files_texteditor/l10n/zh_HK.php %%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.js %%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.json +%%WWWDIR%%/apps/files_texteditor/lib/Controller/FileHandlingController.php %%WWWDIR%%/apps/files_trashbin/ajax/delete.php %%WWWDIR%%/apps/files_trashbin/ajax/isEmpty.php %%WWWDIR%%/apps/files_trashbin/ajax/list.php @@ -7270,7 +7327,16 @@ %%WWWDIR%%/apps/files_trashbin/appinfo/info.xml %%WWWDIR%%/apps/files_trashbin/appinfo/routes.php %%WWWDIR%%/apps/files_trashbin/appinfo/signature.json -%%WWWDIR%%/apps/files_trashbin/css/trash.css +%%WWWDIR%%/apps/files_trashbin/composer/autoload.php +%%WWWDIR%%/apps/files_trashbin/composer/composer.json +%%WWWDIR%%/apps/files_trashbin/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/files_trashbin/composer/composer/LICENSE +%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_real.php +%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_static.php +%%WWWDIR%%/apps/files_trashbin/css/trash.scss %%WWWDIR%%/apps/files_trashbin/img/app.svg %%WWWDIR%%/apps/files_trashbin/js/app.js %%WWWDIR%%/apps/files_trashbin/js/filelist.js @@ -7484,6 +7550,7 @@ %%WWWDIR%%/apps/files_trashbin/lib/Command/Expire.php %%WWWDIR%%/apps/files_trashbin/lib/Command/ExpireTrash.php %%WWWDIR%%/apps/files_trashbin/lib/Controller/PreviewController.php +%%WWWDIR%%/apps/files_trashbin/lib/Events/MoveToTrashEvent.php %%WWWDIR%%/apps/files_trashbin/lib/Exceptions/CopyRecursiveException.php %%WWWDIR%%/apps/files_trashbin/lib/Expiration.php %%WWWDIR%%/apps/files_trashbin/lib/Helper.php @@ -7498,6 +7565,15 @@ %%WWWDIR%%/apps/files_versions/appinfo/info.xml %%WWWDIR%%/apps/files_versions/appinfo/routes.php %%WWWDIR%%/apps/files_versions/appinfo/signature.json +%%WWWDIR%%/apps/files_versions/composer/autoload.php +%%WWWDIR%%/apps/files_versions/composer/composer.json +%%WWWDIR%%/apps/files_versions/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/files_versions/composer/composer/LICENSE +%%WWWDIR%%/apps/files_versions/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/files_versions/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/files_versions/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/files_versions/composer/composer/autoload_real.php +%%WWWDIR%%/apps/files_versions/composer/composer/autoload_static.php %%WWWDIR%%/apps/files_versions/css/versions.css %%WWWDIR%%/apps/files_versions/download.php %%WWWDIR%%/apps/files_versions/img/app.svg @@ -7700,6 +7776,7 @@ %%WWWDIR%%/apps/files_versions/lib/Command/Expire.php %%WWWDIR%%/apps/files_versions/lib/Command/ExpireVersions.php %%WWWDIR%%/apps/files_versions/lib/Controller/PreviewController.php +%%WWWDIR%%/apps/files_versions/lib/Events/CreateVersionEvent.php %%WWWDIR%%/apps/files_versions/lib/Expiration.php %%WWWDIR%%/apps/files_versions/lib/Hooks.php %%WWWDIR%%/apps/files_versions/lib/Storage.php @@ -7763,8 +7840,6 @@ %%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.js %%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.json %%WWWDIR%%/apps/firstrunwizard/l10n/bn_IN.php -%%WWWDIR%%/apps/firstrunwizard/l10n/bs.js -%%WWWDIR%%/apps/firstrunwizard/l10n/bs.json %%WWWDIR%%/apps/firstrunwizard/l10n/ca.js %%WWWDIR%%/apps/firstrunwizard/l10n/ca.json %%WWWDIR%%/apps/firstrunwizard/l10n/cs.js @@ -7829,8 +7904,6 @@ %%WWWDIR%%/apps/firstrunwizard/l10n/fi.json %%WWWDIR%%/apps/firstrunwizard/l10n/fr.js %%WWWDIR%%/apps/firstrunwizard/l10n/fr.json -%%WWWDIR%%/apps/firstrunwizard/l10n/gl.js -%%WWWDIR%%/apps/firstrunwizard/l10n/gl.json %%WWWDIR%%/apps/firstrunwizard/l10n/he.js %%WWWDIR%%/apps/firstrunwizard/l10n/he.json %%WWWDIR%%/apps/firstrunwizard/l10n/hr.js @@ -7853,21 +7926,15 @@ %%WWWDIR%%/apps/firstrunwizard/l10n/ko.js %%WWWDIR%%/apps/firstrunwizard/l10n/ko.json %%WWWDIR%%/apps/firstrunwizard/l10n/ku_IQ.php -%%WWWDIR%%/apps/firstrunwizard/l10n/lb.js -%%WWWDIR%%/apps/firstrunwizard/l10n/lb.json %%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.js %%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.json %%WWWDIR%%/apps/firstrunwizard/l10n/lv.js %%WWWDIR%%/apps/firstrunwizard/l10n/lv.json -%%WWWDIR%%/apps/firstrunwizard/l10n/mk.js -%%WWWDIR%%/apps/firstrunwizard/l10n/mk.json %%WWWDIR%%/apps/firstrunwizard/l10n/ms_MY.php %%WWWDIR%%/apps/firstrunwizard/l10n/nb.js %%WWWDIR%%/apps/firstrunwizard/l10n/nb.json %%WWWDIR%%/apps/firstrunwizard/l10n/nl.js %%WWWDIR%%/apps/firstrunwizard/l10n/nl.json -%%WWWDIR%%/apps/firstrunwizard/l10n/nn_NO.js -%%WWWDIR%%/apps/firstrunwizard/l10n/nn_NO.json %%WWWDIR%%/apps/firstrunwizard/l10n/oc.js %%WWWDIR%%/apps/firstrunwizard/l10n/oc.json %%WWWDIR%%/apps/firstrunwizard/l10n/pl.js @@ -7900,8 +7967,6 @@ %%WWWDIR%%/apps/firstrunwizard/l10n/ug.php %%WWWDIR%%/apps/firstrunwizard/l10n/uk.js %%WWWDIR%%/apps/firstrunwizard/l10n/uk.json -%%WWWDIR%%/apps/firstrunwizard/l10n/vi.js -%%WWWDIR%%/apps/firstrunwizard/l10n/vi.json %%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.js %%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.json %%WWWDIR%%/apps/firstrunwizard/l10n/zh_HK.php @@ -7911,6 +7976,8 @@ %%WWWDIR%%/apps/firstrunwizard/lib/Controller/WizardController.php %%WWWDIR%%/apps/firstrunwizard/lib/Notification/BackgroundJob.php %%WWWDIR%%/apps/firstrunwizard/lib/Notification/Notifier.php +%%WWWDIR%%/apps/firstrunwizard/lib/Settings/Personal.php +%%WWWDIR%%/apps/firstrunwizard/templates/personal-settings.php %%WWWDIR%%/apps/firstrunwizard/templates/wizard.php %%WWWDIR%%/apps/gallery/.github/issue_template.md %%WWWDIR%%/apps/gallery/.github/pull_request_template.md @@ -7946,13 +8013,9 @@ %%WWWDIR%%/apps/gallery/img/app.svg %%WWWDIR%%/apps/gallery/img/dateasc.svg %%WWWDIR%%/apps/gallery/img/datedes.svg -%%WWWDIR%%/apps/gallery/img/folder.svg %%WWWDIR%%/apps/gallery/img/gallery-dark.svg %%WWWDIR%%/apps/gallery/img/nameasc.svg %%WWWDIR%%/apps/gallery/img/namedes.svg -%%WWWDIR%%/apps/gallery/img/share-white.svg -%%WWWDIR%%/apps/gallery/img/toggle.svg -%%WWWDIR%%/apps/gallery/img/view-delete.svg %%WWWDIR%%/apps/gallery/js/.bowerrc %%WWWDIR%%/apps/gallery/js/.jshintrc %%WWWDIR%%/apps/gallery/js/app.js @@ -8080,8 +8143,6 @@ %%WWWDIR%%/apps/gallery/l10n/fi.json %%WWWDIR%%/apps/gallery/l10n/fr.js %%WWWDIR%%/apps/gallery/l10n/fr.json -%%WWWDIR%%/apps/gallery/l10n/gl.js -%%WWWDIR%%/apps/gallery/l10n/gl.json %%WWWDIR%%/apps/gallery/l10n/he.js %%WWWDIR%%/apps/gallery/l10n/he.json %%WWWDIR%%/apps/gallery/l10n/hi.php @@ -8367,8 +8428,6 @@ %%WWWDIR%%/apps/logreader/l10n/fi.json %%WWWDIR%%/apps/logreader/l10n/fr.js %%WWWDIR%%/apps/logreader/l10n/fr.json -%%WWWDIR%%/apps/logreader/l10n/he.js -%%WWWDIR%%/apps/logreader/l10n/he.json %%WWWDIR%%/apps/logreader/l10n/hu.js %%WWWDIR%%/apps/logreader/l10n/hu.json %%WWWDIR%%/apps/logreader/l10n/is.js @@ -8426,6 +8485,15 @@ %%WWWDIR%%/apps/lookup_server_connector/appinfo/app.php %%WWWDIR%%/apps/lookup_server_connector/appinfo/info.xml %%WWWDIR%%/apps/lookup_server_connector/appinfo/signature.json +%%WWWDIR%%/apps/lookup_server_connector/composer/autoload.php +%%WWWDIR%%/apps/lookup_server_connector/composer/composer.json +%%WWWDIR%%/apps/lookup_server_connector/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/lookup_server_connector/composer/composer/LICENSE +%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_real.php +%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_static.php %%WWWDIR%%/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php %%WWWDIR%%/apps/lookup_server_connector/lib/UpdateLookupServer.php %%WWWDIR%%/apps/nextcloud_announcements/.gitattributes @@ -8724,6 +8792,15 @@ %%WWWDIR%%/apps/oauth2/appinfo/info.xml %%WWWDIR%%/apps/oauth2/appinfo/routes.php %%WWWDIR%%/apps/oauth2/appinfo/signature.json +%%WWWDIR%%/apps/oauth2/composer/autoload.php +%%WWWDIR%%/apps/oauth2/composer/composer.json +%%WWWDIR%%/apps/oauth2/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/oauth2/composer/composer/LICENSE +%%WWWDIR%%/apps/oauth2/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/oauth2/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/oauth2/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/oauth2/composer/composer/autoload_real.php +%%WWWDIR%%/apps/oauth2/composer/composer/autoload_static.php %%WWWDIR%%/apps/oauth2/css/setting-admin.css %%WWWDIR%%/apps/oauth2/js/setting-admin.js %%WWWDIR%%/apps/oauth2/l10n/.gitkeep @@ -8791,6 +8868,8 @@ %%WWWDIR%%/apps/oauth2/l10n/fi.json %%WWWDIR%%/apps/oauth2/l10n/fr.js %%WWWDIR%%/apps/oauth2/l10n/fr.json +%%WWWDIR%%/apps/oauth2/l10n/gl.js +%%WWWDIR%%/apps/oauth2/l10n/gl.json %%WWWDIR%%/apps/oauth2/l10n/hu.js %%WWWDIR%%/apps/oauth2/l10n/hu.json %%WWWDIR%%/apps/oauth2/l10n/id.js @@ -9017,6 +9096,15 @@ %%WWWDIR%%/apps/provisioning_api/appinfo/info.xml %%WWWDIR%%/apps/provisioning_api/appinfo/routes.php %%WWWDIR%%/apps/provisioning_api/appinfo/signature.json +%%WWWDIR%%/apps/provisioning_api/composer/autoload.php +%%WWWDIR%%/apps/provisioning_api/composer/composer.json +%%WWWDIR%%/apps/provisioning_api/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/provisioning_api/composer/composer/LICENSE +%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_real.php +%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_static.php %%WWWDIR%%/apps/provisioning_api/img/app.svg %%WWWDIR%%/apps/provisioning_api/lib/AppInfo/Application.php %%WWWDIR%%/apps/provisioning_api/lib/Controller/AppConfigController.php @@ -9175,6 +9263,15 @@ %%WWWDIR%%/apps/sharebymail/appinfo/app.php %%WWWDIR%%/apps/sharebymail/appinfo/info.xml %%WWWDIR%%/apps/sharebymail/appinfo/signature.json +%%WWWDIR%%/apps/sharebymail/composer/autoload.php +%%WWWDIR%%/apps/sharebymail/composer/composer.json +%%WWWDIR%%/apps/sharebymail/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/sharebymail/composer/composer/LICENSE +%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_real.php +%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_static.php %%WWWDIR%%/apps/sharebymail/css/settings-admin.css %%WWWDIR%%/apps/sharebymail/img/app.svg %%WWWDIR%%/apps/sharebymail/js/settings-admin.js @@ -9354,6 +9451,8 @@ %%WWWDIR%%/apps/survey_client/l10n/es_SV.json %%WWWDIR%%/apps/survey_client/l10n/es_UY.js %%WWWDIR%%/apps/survey_client/l10n/es_UY.json +%%WWWDIR%%/apps/survey_client/l10n/et_EE.js +%%WWWDIR%%/apps/survey_client/l10n/et_EE.json %%WWWDIR%%/apps/survey_client/l10n/fi.js %%WWWDIR%%/apps/survey_client/l10n/fi.json %%WWWDIR%%/apps/survey_client/l10n/fr.js @@ -9370,6 +9469,8 @@ %%WWWDIR%%/apps/survey_client/l10n/ka_GE.json %%WWWDIR%%/apps/survey_client/l10n/ko.js %%WWWDIR%%/apps/survey_client/l10n/ko.json +%%WWWDIR%%/apps/survey_client/l10n/lt_LT.js +%%WWWDIR%%/apps/survey_client/l10n/lt_LT.json %%WWWDIR%%/apps/survey_client/l10n/lv.js %%WWWDIR%%/apps/survey_client/l10n/lv.json %%WWWDIR%%/apps/survey_client/l10n/mn.js @@ -9419,6 +9520,15 @@ %%WWWDIR%%/apps/systemtags/appinfo/info.xml %%WWWDIR%%/apps/systemtags/appinfo/routes.php %%WWWDIR%%/apps/systemtags/appinfo/signature.json +%%WWWDIR%%/apps/systemtags/composer/autoload.php +%%WWWDIR%%/apps/systemtags/composer/composer.json +%%WWWDIR%%/apps/systemtags/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/systemtags/composer/composer/LICENSE +%%WWWDIR%%/apps/systemtags/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/systemtags/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/systemtags/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/systemtags/composer/composer/autoload_real.php +%%WWWDIR%%/apps/systemtags/composer/composer/autoload_static.php %%WWWDIR%%/apps/systemtags/css/systemtagsfilelist.css %%WWWDIR%%/apps/systemtags/img/app.svg %%WWWDIR%%/apps/systemtags/img/tag.svg @@ -9763,10 +9873,18 @@ %%WWWDIR%%/apps/theming/lib/Util.php %%WWWDIR%%/apps/theming/templates/settings-admin.php %%WWWDIR%%/apps/twofactor_backupcodes/appinfo/app.php -%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/database.xml %%WWWDIR%%/apps/twofactor_backupcodes/appinfo/info.xml %%WWWDIR%%/apps/twofactor_backupcodes/appinfo/routes.php %%WWWDIR%%/apps/twofactor_backupcodes/appinfo/signature.json +%%WWWDIR%%/apps/twofactor_backupcodes/composer/autoload.php +%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer.json +%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/LICENSE +%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_real.php +%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_static.php %%WWWDIR%%/apps/twofactor_backupcodes/css/style.css %%WWWDIR%%/apps/twofactor_backupcodes/js/settings.js %%WWWDIR%%/apps/twofactor_backupcodes/js/settingsview.js @@ -9880,10 +9998,13 @@ %%WWWDIR%%/apps/twofactor_backupcodes/lib/Controller/SettingsController.php %%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCode.php %%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php -%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/CopyEntriesFromOldTable.php +%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php +%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php +%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php +%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php %%WWWDIR%%/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php %%WWWDIR%%/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php -%%WWWDIR%%/apps/twofactor_backupcodes/settings/personal.php +%%WWWDIR%%/apps/twofactor_backupcodes/lib/Settings/Personal.php %%WWWDIR%%/apps/twofactor_backupcodes/templates/challenge.php %%WWWDIR%%/apps/twofactor_backupcodes/templates/personal.php %%WWWDIR%%/apps/updatenotification/appinfo/app.php @@ -9890,6 +10011,16 @@ %%WWWDIR%%/apps/updatenotification/appinfo/info.xml %%WWWDIR%%/apps/updatenotification/appinfo/routes.php %%WWWDIR%%/apps/updatenotification/appinfo/signature.json +%%WWWDIR%%/apps/updatenotification/composer/autoload.php +%%WWWDIR%%/apps/updatenotification/composer/composer.json +%%WWWDIR%%/apps/updatenotification/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/updatenotification/composer/composer/LICENSE +%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_real.php +%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_static.php +%%WWWDIR%%/apps/updatenotification/css/admin.css %%WWWDIR%%/apps/updatenotification/img/app.svg %%WWWDIR%%/apps/updatenotification/img/notification.svg %%WWWDIR%%/apps/updatenotification/js/admin.js @@ -10083,6 +10214,15 @@ %%WWWDIR%%/apps/user_ldap/appinfo/routes.php %%WWWDIR%%/apps/user_ldap/appinfo/signature.json %%WWWDIR%%/apps/user_ldap/appinfo/update.php +%%WWWDIR%%/apps/user_ldap/composer/autoload.php +%%WWWDIR%%/apps/user_ldap/composer/composer.json +%%WWWDIR%%/apps/user_ldap/composer/composer/ClassLoader.php +%%WWWDIR%%/apps/user_ldap/composer/composer/LICENSE +%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_classmap.php +%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_namespaces.php +%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_psr4.php +%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_real.php +%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_static.php %%WWWDIR%%/apps/user_ldap/css/renewPassword.css %%WWWDIR%%/apps/user_ldap/css/settings.css %%WWWDIR%%/apps/user_ldap/img/app-dark.svg @@ -10374,6 +10514,7 @@ %%WWWDIR%%/apps/user_ldap/l10n/zh_TW.js %%WWWDIR%%/apps/user_ldap/l10n/zh_TW.json %%WWWDIR%%/apps/user_ldap/lib/Access.php +%%WWWDIR%%/apps/user_ldap/lib/AccessFactory.php %%WWWDIR%%/apps/user_ldap/lib/AppInfo/Application.php %%WWWDIR%%/apps/user_ldap/lib/BackendUtility.php %%WWWDIR%%/apps/user_ldap/lib/Command/CheckUser.php @@ -10386,17 +10527,23 @@ %%WWWDIR%%/apps/user_ldap/lib/Command/TestConfig.php %%WWWDIR%%/apps/user_ldap/lib/Configuration.php %%WWWDIR%%/apps/user_ldap/lib/Connection.php +%%WWWDIR%%/apps/user_ldap/lib/ConnectionFactory.php %%WWWDIR%%/apps/user_ldap/lib/Controller/ConfigAPIController.php %%WWWDIR%%/apps/user_ldap/lib/Controller/RenewPasswordController.php %%WWWDIR%%/apps/user_ldap/lib/Exceptions/ConstraintViolationException.php %%WWWDIR%%/apps/user_ldap/lib/Exceptions/NotOnLDAP.php %%WWWDIR%%/apps/user_ldap/lib/FilesystemHelper.php +%%WWWDIR%%/apps/user_ldap/lib/GroupPluginManager.php %%WWWDIR%%/apps/user_ldap/lib/Group_LDAP.php %%WWWDIR%%/apps/user_ldap/lib/Group_Proxy.php %%WWWDIR%%/apps/user_ldap/lib/Helper.php +%%WWWDIR%%/apps/user_ldap/lib/IGroupLDAP.php +%%WWWDIR%%/apps/user_ldap/lib/ILDAPGroupPlugin.php +%%WWWDIR%%/apps/user_ldap/lib/ILDAPUserPlugin.php %%WWWDIR%%/apps/user_ldap/lib/ILDAPWrapper.php %%WWWDIR%%/apps/user_ldap/lib/IUserLDAP.php %%WWWDIR%%/apps/user_ldap/lib/Jobs/CleanUp.php +%%WWWDIR%%/apps/user_ldap/lib/Jobs/Sync.php %%WWWDIR%%/apps/user_ldap/lib/Jobs/UpdateGroups.php %%WWWDIR%%/apps/user_ldap/lib/LDAP.php %%WWWDIR%%/apps/user_ldap/lib/LDAPProvider.php @@ -10419,6 +10566,7 @@ %%WWWDIR%%/apps/user_ldap/lib/User/Manager.php %%WWWDIR%%/apps/user_ldap/lib/User/OfflineUser.php %%WWWDIR%%/apps/user_ldap/lib/User/User.php +%%WWWDIR%%/apps/user_ldap/lib/UserPluginManager.php %%WWWDIR%%/apps/user_ldap/lib/User_LDAP.php %%WWWDIR%%/apps/user_ldap/lib/User_Proxy.php %%WWWDIR%%/apps/user_ldap/lib/Wizard.php @@ -10585,7 +10733,7 @@ %%WWWDIR%%/apps/workflowengine/templates/admin.php %%WWWDIR%%/config/.htaccess %%WWWDIR%%/config/config.sample.php -%%WWWDIR%%/config/config.sample.php.bak +@comment %%WWWDIR%%/config/config.sample.php.bak @owner @group %%WWWDIR%%/console.php @@ -10594,6 +10742,7 @@ %%WWWDIR%%/core/Command/App/Disable.php %%WWWDIR%%/core/Command/App/Enable.php %%WWWDIR%%/core/Command/App/GetPath.php +%%WWWDIR%%/core/Command/App/Install.php %%WWWDIR%%/core/Command/App/ListApps.php %%WWWDIR%%/core/Command/Background/Ajax.php %%WWWDIR%%/core/Command/Background/Base.php @@ -10611,9 +10760,15 @@ %%WWWDIR%%/core/Command/Config/System/DeleteConfig.php %%WWWDIR%%/core/Command/Config/System/GetConfig.php %%WWWDIR%%/core/Command/Config/System/SetConfig.php +%%WWWDIR%%/core/Command/Db/AddMissingIndices.php +%%WWWDIR%%/core/Command/Db/ConvertFilecacheBigInt.php %%WWWDIR%%/core/Command/Db/ConvertMysqlToMB4.php %%WWWDIR%%/core/Command/Db/ConvertType.php -%%WWWDIR%%/core/Command/Db/GenerateChangeScript.php +%%WWWDIR%%/core/Command/Db/Migrations/ExecuteCommand.php +%%WWWDIR%%/core/Command/Db/Migrations/GenerateCommand.php +%%WWWDIR%%/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php +%%WWWDIR%%/core/Command/Db/Migrations/MigrateCommand.php +%%WWWDIR%%/core/Command/Db/Migrations/StatusCommand.php %%WWWDIR%%/core/Command/Encryption/ChangeKeyStorageRoot.php %%WWWDIR%%/core/Command/Encryption/DecryptAll.php %%WWWDIR%%/core/Command/Encryption/Disable.php @@ -10641,6 +10796,7 @@ %%WWWDIR%%/core/Command/Maintenance/Mode.php %%WWWDIR%%/core/Command/Maintenance/Repair.php %%WWWDIR%%/core/Command/Maintenance/UpdateHtaccess.php +%%WWWDIR%%/core/Command/Maintenance/UpdateTheme.php %%WWWDIR%%/core/Command/Security/ImportCertificate.php %%WWWDIR%%/core/Command/Security/ListCertificates.php %%WWWDIR%%/core/Command/Security/RemoveCertificate.php @@ -10659,6 +10815,7 @@ %%WWWDIR%%/core/Command/User/Report.php %%WWWDIR%%/core/Command/User/ResetPassword.php %%WWWDIR%%/core/Command/User/Setting.php +%%WWWDIR%%/core/Controller/AutoCompleteController.php %%WWWDIR%%/core/Controller/AvatarController.php %%WWWDIR%%/core/Controller/ClientFlowLoginController.php %%WWWDIR%%/core/Controller/ContactsMenuController.php @@ -10672,7 +10829,13 @@ %%WWWDIR%%/core/Controller/SetupController.php %%WWWDIR%%/core/Controller/TwoFactorChallengeController.php %%WWWDIR%%/core/Controller/UserController.php +%%WWWDIR%%/core/Controller/WalledGardenController.php %%WWWDIR%%/core/Middleware/TwoFactorMiddleware.php +%%WWWDIR%%/core/Migrations/Version13000Date20170705121758.php +%%WWWDIR%%/core/Migrations/Version13000Date20170718121200.php +%%WWWDIR%%/core/Migrations/Version13000Date20170814074715.php +%%WWWDIR%%/core/Migrations/Version13000Date20170919121250.php +%%WWWDIR%%/core/Migrations/Version13000Date20170926101637.php %%WWWDIR%%/core/ajax/update.php %%WWWDIR%%/core/css/apps.scss %%WWWDIR%%/core/css/fixes.scss @@ -10681,20 +10844,15 @@ %%WWWDIR%%/core/css/guest.css %%WWWDIR%%/core/css/header.scss %%WWWDIR%%/core/css/icons.scss -%%WWWDIR%%/core/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png %%WWWDIR%%/core/css/images/ui-bg_diagonals-thick_20_666666_40x40.png -%%WWWDIR%%/core/css/images/ui-bg_flat_100_ffffff_40x100.png %%WWWDIR%%/core/css/images/ui-bg_flat_10_000000_40x100.png %%WWWDIR%%/core/css/images/ui-bg_flat_35_1d2d44_40x100.png -%%WWWDIR%%/core/css/images/ui-bg_glass_100_f8f8f8_1x400.png -%%WWWDIR%%/core/css/images/ui-bg_highlight-hard_100_f8f8f8_1x100.png -%%WWWDIR%%/core/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png %%WWWDIR%%/core/css/images/ui-icons_1d2d44_256x240.png %%WWWDIR%%/core/css/images/ui-icons_ffd27a_256x240.png %%WWWDIR%%/core/css/images/ui-icons_ffffff_256x240.png %%WWWDIR%%/core/css/inputs.scss -%%WWWDIR%%/core/css/jquery-ui-fixes.css -%%WWWDIR%%/core/css/jquery.ocdialog.css +%%WWWDIR%%/core/css/jquery-ui-fixes.scss +%%WWWDIR%%/core/css/jquery.ocdialog.scss %%WWWDIR%%/core/css/login/authpicker.css %%WWWDIR%%/core/css/lostpassword/resetpassword.css %%WWWDIR%%/core/css/mobile.scss @@ -10728,9 +10886,6 @@ %%WWWDIR%%/core/doc/admin/_images/create_public_share-6.png %%WWWDIR%%/core/doc/admin/_images/create_public_share-8.png %%WWWDIR%%/core/doc/admin/_images/create_public_share-9.png -%%WWWDIR%%/core/doc/admin/_images/deprecs-1.png -%%WWWDIR%%/core/doc/admin/_images/deprecs-2.png -%%WWWDIR%%/core/doc/admin/_images/deprecs-3.png %%WWWDIR%%/core/doc/admin/_images/dropbox-1.png %%WWWDIR%%/core/doc/admin/_images/dropbox-2.png %%WWWDIR%%/core/doc/admin/_images/dropbox-3.png @@ -10839,6 +10994,7 @@ %%WWWDIR%%/core/doc/admin/_images/users-create.png %%WWWDIR%%/core/doc/admin/_images/users-groups.png %%WWWDIR%%/core/doc/admin/_images/webdav.png +%%WWWDIR%%/core/doc/admin/_sources/configuration_database/bigint_identifiers.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_database/db_conversion.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_database/index.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_database/linux_database_configuration.txt @@ -10889,6 +11045,9 @@ %%WWWDIR%%/core/doc/admin/_sources/configuration_server/theming.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_server/thirdparty_php_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_user/index.txt +%%WWWDIR%%/core/doc/admin/_sources/configuration_user/instruction_set_for_apps.txt +%%WWWDIR%%/core/doc/admin/_sources/configuration_user/instruction_set_for_groups.txt +%%WWWDIR%%/core/doc/admin/_sources/configuration_user/instruction_set_for_users.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_user/reset_admin_password.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_user/reset_user_password.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_user/two_factor-auth.txt @@ -11012,12 +11171,12 @@ %%WWWDIR%%/core/doc/admin/_static/social/twitter.svg %%WWWDIR%%/core/doc/admin/_static/social/twitterround.png %%WWWDIR%%/core/doc/admin/_static/social/youtube.svg -%%WWWDIR%%/core/doc/admin/_static/style.css %%WWWDIR%%/core/doc/admin/_static/styles.css %%WWWDIR%%/core/doc/admin/_static/underscore.js %%WWWDIR%%/core/doc/admin/_static/up-pressed.png %%WWWDIR%%/core/doc/admin/_static/up.png %%WWWDIR%%/core/doc/admin/_static/websupport.js +%%WWWDIR%%/core/doc/admin/configuration_database/bigint_identifiers.html %%WWWDIR%%/core/doc/admin/configuration_database/db_conversion.html %%WWWDIR%%/core/doc/admin/configuration_database/index.html %%WWWDIR%%/core/doc/admin/configuration_database/linux_database_configuration.html @@ -11068,6 +11227,9 @@ %%WWWDIR%%/core/doc/admin/configuration_server/theming.html %%WWWDIR%%/core/doc/admin/configuration_server/thirdparty_php_configuration.html %%WWWDIR%%/core/doc/admin/configuration_user/index.html +%%WWWDIR%%/core/doc/admin/configuration_user/instruction_set_for_apps.html +%%WWWDIR%%/core/doc/admin/configuration_user/instruction_set_for_groups.html +%%WWWDIR%%/core/doc/admin/configuration_user/instruction_set_for_users.html %%WWWDIR%%/core/doc/admin/configuration_user/reset_admin_password.html %%WWWDIR%%/core/doc/admin/configuration_user/reset_user_password.html %%WWWDIR%%/core/doc/admin/configuration_user/two_factor-auth.html @@ -11124,6 +11286,14 @@ %%WWWDIR%%/core/doc/user/_images/anonym_uploaded_files.png %%WWWDIR%%/core/doc/user/_images/apps_menu.png %%WWWDIR%%/core/doc/user/_images/cardbook_icon.png +%%WWWDIR%%/core/doc/user/_images/contact_bottombar.png +%%WWWDIR%%/core/doc/user/_images/contact_manageaddressbook.png +%%WWWDIR%%/core/doc/user/_images/contact_new.png +%%WWWDIR%%/core/doc/user/_images/contact_picture.png +%%WWWDIR%%/core/doc/user/_images/contact_picture_options.png +%%WWWDIR%%/core/doc/user/_images/contact_picture_set.png +%%WWWDIR%%/core/doc/user/_images/contact_uploadbutton.png +%%WWWDIR%%/core/doc/user/_images/contacts_empty.png %%WWWDIR%%/core/doc/user/_images/contacts_link.png %%WWWDIR%%/core/doc/user/_images/contacts_menu.png %%WWWDIR%%/core/doc/user/_images/contacts_popup.png @@ -11277,7 +11447,6 @@ %%WWWDIR%%/core/doc/user/_static/social/twitter.svg %%WWWDIR%%/core/doc/user/_static/social/twitterround.png %%WWWDIR%%/core/doc/user/_static/social/youtube.svg -%%WWWDIR%%/core/doc/user/_static/style.css %%WWWDIR%%/core/doc/user/_static/styles.css %%WWWDIR%%/core/doc/user/_static/underscore.js %%WWWDIR%%/core/doc/user/_static/up-pressed.png @@ -11321,6 +11490,9 @@ %%WWWDIR%%/core/fonts/OpenSans-Regular.woff %%WWWDIR%%/core/fonts/OpenSans-Semibold.woff %%WWWDIR%%/core/img/actions/add.svg +%%WWWDIR%%/core/img/actions/address.svg +%%WWWDIR%%/core/img/actions/arrow-left.svg +%%WWWDIR%%/core/img/actions/arrow-right.svg %%WWWDIR%%/core/img/actions/audio-off-white.svg %%WWWDIR%%/core/img/actions/audio-off.svg %%WWWDIR%%/core/img/actions/audio-white.svg @@ -11366,10 +11538,8 @@ %%WWWDIR%%/core/img/actions/more.svg %%WWWDIR%%/core/img/actions/password.png %%WWWDIR%%/core/img/actions/password.svg -%%WWWDIR%%/core/img/actions/pause-big.svg %%WWWDIR%%/core/img/actions/pause.svg %%WWWDIR%%/core/img/actions/play-add.svg -%%WWWDIR%%/core/img/actions/play-big.svg %%WWWDIR%%/core/img/actions/play-next.svg %%WWWDIR%%/core/img/actions/play-previous.svg %%WWWDIR%%/core/img/actions/play.svg @@ -11396,6 +11566,7 @@ %%WWWDIR%%/core/img/actions/starred.svg %%WWWDIR%%/core/img/actions/tag.png %%WWWDIR%%/core/img/actions/tag.svg +%%WWWDIR%%/core/img/actions/toggle-background.svg %%WWWDIR%%/core/img/actions/toggle-filelist.svg %%WWWDIR%%/core/img/actions/toggle-pictures.svg %%WWWDIR%%/core/img/actions/toggle.svg @@ -11404,8 +11575,6 @@ %%WWWDIR%%/core/img/actions/triangle-s.svg %%WWWDIR%%/core/img/actions/upload-white.svg %%WWWDIR%%/core/img/actions/upload.svg -%%WWWDIR%%/core/img/actions/user-plus.svg -%%WWWDIR%%/core/img/actions/user-times.svg %%WWWDIR%%/core/img/actions/user.svg %%WWWDIR%%/core/img/actions/verified.svg %%WWWDIR%%/core/img/actions/verify.svg @@ -11421,8 +11590,20 @@ %%WWWDIR%%/core/img/actions/view-play.svg %%WWWDIR%%/core/img/actions/view-previous.svg %%WWWDIR%%/core/img/appstore.svg -%%WWWDIR%%/core/img/background.jpg +%%WWWDIR%%/core/img/background.png +%%WWWDIR%%/core/img/background.svg %%WWWDIR%%/core/img/breadcrumb.svg +%%WWWDIR%%/core/img/categories/auth.svg +%%WWWDIR%%/core/img/categories/bundles.svg +%%WWWDIR%%/core/img/categories/customization.svg +%%WWWDIR%%/core/img/categories/files.svg +%%WWWDIR%%/core/img/categories/games.svg +%%WWWDIR%%/core/img/categories/integration.svg +%%WWWDIR%%/core/img/categories/monitoring.svg +%%WWWDIR%%/core/img/categories/multimedia.svg +%%WWWDIR%%/core/img/categories/office.svg +%%WWWDIR%%/core/img/categories/organization.svg +%%WWWDIR%%/core/img/categories/social.svg %%WWWDIR%%/core/img/desktopapp.svg %%WWWDIR%%/core/img/facebook.svg %%WWWDIR%%/core/img/favicon-fb.png @@ -11437,6 +11618,7 @@ %%WWWDIR%%/core/img/filetypes/audio.svg %%WWWDIR%%/core/img/filetypes/file.svg %%WWWDIR%%/core/img/filetypes/folder-drag-accept.svg +%%WWWDIR%%/core/img/filetypes/folder-encrypted.svg %%WWWDIR%%/core/img/filetypes/folder-external.svg %%WWWDIR%%/core/img/filetypes/folder-public.svg %%WWWDIR%%/core/img/filetypes/folder-shared.svg @@ -11443,6 +11625,8 @@ %%WWWDIR%%/core/img/filetypes/folder-starred.svg %%WWWDIR%%/core/img/filetypes/folder.svg %%WWWDIR%%/core/img/filetypes/image.svg +%%WWWDIR%%/core/img/filetypes/link.svg +%%WWWDIR%%/core/img/filetypes/location.svg %%WWWDIR%%/core/img/filetypes/package-x-generic.svg %%WWWDIR%%/core/img/filetypes/text-calendar.svg %%WWWDIR%%/core/img/filetypes/text-code.svg @@ -11454,13 +11638,11 @@ %%WWWDIR%%/core/img/filetypes/x-office-spreadsheet.svg %%WWWDIR%%/core/img/googleplay.png %%WWWDIR%%/core/img/googleplus.svg -%%WWWDIR%%/core/img/image-optimization.sh %%WWWDIR%%/core/img/loading-dark.gif %%WWWDIR%%/core/img/loading-small-dark.gif %%WWWDIR%%/core/img/loading-small.gif %%WWWDIR%%/core/img/loading.gif %%WWWDIR%%/core/img/logo-icon-175px.png -%%WWWDIR%%/core/img/logo-icon.svg %%WWWDIR%%/core/img/logo-mail.png %%WWWDIR%%/core/img/logo.png %%WWWDIR%%/core/img/logo.svg @@ -11468,6 +11650,7 @@ %%WWWDIR%%/core/img/manifest.json %%WWWDIR%%/core/img/places/calendar-dark.png %%WWWDIR%%/core/img/places/calendar-dark.svg +%%WWWDIR%%/core/img/places/calendar.svg %%WWWDIR%%/core/img/places/contacts-dark.svg %%WWWDIR%%/core/img/places/contacts.svg %%WWWDIR%%/core/img/places/default-app-icon.svg @@ -11526,6 +11709,7 @@ %%WWWDIR%%/core/js/octemplate.js %%WWWDIR%%/core/js/placeholder.js %%WWWDIR%%/core/js/public/appconfig.js +%%WWWDIR%%/core/js/public/comments.js %%WWWDIR%%/core/js/select2-toggleselect.js %%WWWDIR%%/core/js/setup.js %%WWWDIR%%/core/js/setupchecks.js @@ -11566,8 +11750,6 @@ %%WWWDIR%%/core/js/tests/specs/systemtags/systemtagsinputfieldSpec.js %%WWWDIR%%/core/js/update.js %%WWWDIR%%/core/js/visitortimezone.js -%%WWWDIR%%/core/l10n/bg.js -%%WWWDIR%%/core/l10n/bg.json %%WWWDIR%%/core/l10n/ca.js %%WWWDIR%%/core/l10n/ca.json %%WWWDIR%%/core/l10n/cs.js @@ -11630,8 +11812,6 @@ %%WWWDIR%%/core/l10n/fr.json %%WWWDIR%%/core/l10n/hu.js %%WWWDIR%%/core/l10n/hu.json -%%WWWDIR%%/core/l10n/id.js -%%WWWDIR%%/core/l10n/id.json %%WWWDIR%%/core/l10n/is.js %%WWWDIR%%/core/l10n/is.json %%WWWDIR%%/core/l10n/it.js @@ -11798,7 +11978,6 @@ %%WWWDIR%%/core/vendor/zxcvbn/LICENSE.txt %%WWWDIR%%/core/vendor/zxcvbn/dist/zxcvbn.js %%WWWDIR%%/cron.php -%%WWWDIR%%/db_structure.xml %%WWWDIR%%/index.html %%WWWDIR%%/index.php %%WWWDIR%%/l10n/.gitignore @@ -11816,8 +11995,6 @@ %%WWWDIR%%/lib/composer/composer/autoload_real.php %%WWWDIR%%/lib/composer/composer/autoload_static.php %%WWWDIR%%/lib/composer/composer/installed.json -%%WWWDIR%%/lib/l10n/ast.js -%%WWWDIR%%/lib/l10n/ast.json %%WWWDIR%%/lib/l10n/cs.js %%WWWDIR%%/lib/l10n/cs.json %%WWWDIR%%/lib/l10n/de.js @@ -11870,8 +12047,6 @@ %%WWWDIR%%/lib/l10n/fi.json %%WWWDIR%%/lib/l10n/fr.js %%WWWDIR%%/lib/l10n/fr.json -%%WWWDIR%%/lib/l10n/he.js -%%WWWDIR%%/lib/l10n/he.json %%WWWDIR%%/lib/l10n/hu.js %%WWWDIR%%/lib/l10n/hu.json %%WWWDIR%%/lib/l10n/is.js @@ -11939,6 +12114,7 @@ %%WWWDIR%%/lib/private/App/CodeChecker/ICheck.php %%WWWDIR%%/lib/private/App/CodeChecker/InfoChecker.php %%WWWDIR%%/lib/private/App/CodeChecker/LanguageParseChecker.php +%%WWWDIR%%/lib/private/App/CodeChecker/MigrationSchemaChecker.php %%WWWDIR%%/lib/private/App/CodeChecker/NodeVisitor.php %%WWWDIR%%/lib/private/App/CodeChecker/PrivateCheck.php %%WWWDIR%%/lib/private/App/CodeChecker/StrongComparisonCheck.php @@ -11960,12 +12136,15 @@ %%WWWDIR%%/lib/private/AppFramework/Middleware/Security/CORSMiddleware.php %%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/AppNotEnabledException.php %%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/CrossSiteRequestForgeryException.php +%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/LaxSameSiteCookieFailedException.php %%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotAdminException.php %%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotConfirmedException.php %%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotLoggedInException.php %%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/SecurityException.php %%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/StrictCookieMissingException.php +%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/PasswordConfirmationMiddleware.php %%WWWDIR%%/lib/private/AppFramework/Middleware/Security/RateLimitingMiddleware.php +%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/SameSiteCookieMiddleware.php %%WWWDIR%%/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php %%WWWDIR%%/lib/private/AppFramework/Middleware/SessionMiddleware.php %%WWWDIR%%/lib/private/AppFramework/OCS/BaseResponse.php @@ -12005,11 +12184,21 @@ %%WWWDIR%%/lib/private/BackgroundJob/TimedJob.php %%WWWDIR%%/lib/private/Cache/CappedMemoryCache.php %%WWWDIR%%/lib/private/Cache/File.php +%%WWWDIR%%/lib/private/Calendar/Manager.php %%WWWDIR%%/lib/private/CapabilitiesManager.php +%%WWWDIR%%/lib/private/Collaboration/AutoComplete/Manager.php +%%WWWDIR%%/lib/private/Collaboration/Collaborators/GroupPlugin.php +%%WWWDIR%%/lib/private/Collaboration/Collaborators/LookupPlugin.php +%%WWWDIR%%/lib/private/Collaboration/Collaborators/MailPlugin.php +%%WWWDIR%%/lib/private/Collaboration/Collaborators/RemotePlugin.php +%%WWWDIR%%/lib/private/Collaboration/Collaborators/Search.php +%%WWWDIR%%/lib/private/Collaboration/Collaborators/SearchResult.php +%%WWWDIR%%/lib/private/Collaboration/Collaborators/UserPlugin.php %%WWWDIR%%/lib/private/Command/AsyncBus.php %%WWWDIR%%/lib/private/Command/CallableJob.php %%WWWDIR%%/lib/private/Command/ClosureJob.php %%WWWDIR%%/lib/private/Command/CommandJob.php +%%WWWDIR%%/lib/private/Command/CronBus.php %%WWWDIR%%/lib/private/Command/FileAccess.php %%WWWDIR%%/lib/private/Command/QueueBus.php %%WWWDIR%%/lib/private/Comments/Comment.php @@ -12037,10 +12226,10 @@ %%WWWDIR%%/lib/private/DB/MDB2SchemaReader.php %%WWWDIR%%/lib/private/DB/MDB2SchemaWriter.php %%WWWDIR%%/lib/private/DB/MigrationException.php +%%WWWDIR%%/lib/private/DB/MigrationService.php %%WWWDIR%%/lib/private/DB/Migrator.php %%WWWDIR%%/lib/private/DB/MySQLMigrator.php %%WWWDIR%%/lib/private/DB/MySqlTools.php -%%WWWDIR%%/lib/private/DB/NoCheckMigrator.php %%WWWDIR%%/lib/private/DB/OCSqlitePlatform.php %%WWWDIR%%/lib/private/DB/OracleConnection.php %%WWWDIR%%/lib/private/DB/OracleMigrator.php @@ -12063,6 +12252,7 @@ %%WWWDIR%%/lib/private/DB/QueryBuilder/QuoteHelper.php %%WWWDIR%%/lib/private/DB/SQLiteMigrator.php %%WWWDIR%%/lib/private/DB/SQLiteSessionInit.php +%%WWWDIR%%/lib/private/DB/SchemaWrapper.php %%WWWDIR%%/lib/private/DatabaseException.php %%WWWDIR%%/lib/private/DatabaseSetupException.php %%WWWDIR%%/lib/private/DateTimeFormatter.php @@ -12202,6 +12392,7 @@ %%WWWDIR%%/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php %%WWWDIR%%/lib/private/L10N/Factory.php %%WWWDIR%%/lib/private/L10N/L10N.php +%%WWWDIR%%/lib/private/L10N/L10NString.php %%WWWDIR%%/lib/private/L10N/LanguageNotFoundException.php %%WWWDIR%%/lib/private/LargeFileHelper.php %%WWWDIR%%/lib/private/Lock/AbstractLockingProvider.php @@ -12217,6 +12408,7 @@ %%WWWDIR%%/lib/private/Log/File.php %%WWWDIR%%/lib/private/Log/Rotate.php %%WWWDIR%%/lib/private/Log/Syslog.php +%%WWWDIR%%/lib/private/Mail/Attachment.php %%WWWDIR%%/lib/private/Mail/EMailTemplate.php %%WWWDIR%%/lib/private/Mail/Mailer.php %%WWWDIR%%/lib/private/Mail/Message.php @@ -12232,6 +12424,7 @@ %%WWWDIR%%/lib/private/Memcache/XCache.php %%WWWDIR%%/lib/private/Migration/BackgroundRepair.php %%WWWDIR%%/lib/private/Migration/ConsoleOutput.php +%%WWWDIR%%/lib/private/Migration/SimpleOutput.php %%WWWDIR%%/lib/private/NaturalSort.php %%WWWDIR%%/lib/private/NaturalSort_DefaultCollator.php %%WWWDIR%%/lib/private/NavigationManager.php @@ -12243,7 +12436,6 @@ %%WWWDIR%%/lib/private/OCS/CoreCapabilities.php %%WWWDIR%%/lib/private/OCS/DiscoveryService.php %%WWWDIR%%/lib/private/OCS/Exception.php -%%WWWDIR%%/lib/private/OCS/PrivateData.php %%WWWDIR%%/lib/private/OCS/Provider.php %%WWWDIR%%/lib/private/OCS/Result.php %%WWWDIR%%/lib/private/Preview/BMP.php @@ -12278,6 +12470,15 @@ %%WWWDIR%%/lib/private/PreviewManager.php %%WWWDIR%%/lib/private/PreviewNotAvailableException.php %%WWWDIR%%/lib/private/RedisFactory.php +%%WWWDIR%%/lib/private/Remote/Api/ApiBase.php +%%WWWDIR%%/lib/private/Remote/Api/ApiCollection.php +%%WWWDIR%%/lib/private/Remote/Api/ApiFactory.php +%%WWWDIR%%/lib/private/Remote/Api/NotFoundException.php +%%WWWDIR%%/lib/private/Remote/Api/OCS.php +%%WWWDIR%%/lib/private/Remote/Credentials.php +%%WWWDIR%%/lib/private/Remote/Instance.php +%%WWWDIR%%/lib/private/Remote/InstanceFactory.php +%%WWWDIR%%/lib/private/Remote/User.php %%WWWDIR%%/lib/private/Repair.php %%WWWDIR%%/lib/private/Repair/CleanTags.php %%WWWDIR%%/lib/private/Repair/Collation.php @@ -12290,6 +12491,7 @@ %%WWWDIR%%/lib/private/Repair/NC12/InstallCoreBundle.php %%WWWDIR%%/lib/private/Repair/NC12/RepairIdentityProofKeyFolders.php %%WWWDIR%%/lib/private/Repair/NC12/UpdateLanguageCodes.php +%%WWWDIR%%/lib/private/Repair/NC13/AddLogRotateJob.php %%WWWDIR%%/lib/private/Repair/NC13/RepairInvalidPaths.php %%WWWDIR%%/lib/private/Repair/OldGroupMembershipShares.php %%WWWDIR%%/lib/private/Repair/Owncloud/DropAccountTermsTable.php @@ -12309,6 +12511,7 @@ %%WWWDIR%%/lib/private/Search/Result/File.php %%WWWDIR%%/lib/private/Search/Result/Folder.php %%WWWDIR%%/lib/private/Search/Result/Image.php +%%WWWDIR%%/lib/private/Security/Bruteforce/Capabilities.php %%WWWDIR%%/lib/private/Security/Bruteforce/Throttler.php %%WWWDIR%%/lib/private/Security/CSP/ContentSecurityPolicy.php %%WWWDIR%%/lib/private/Security/CSP/ContentSecurityPolicyManager.php @@ -12349,6 +12552,9 @@ %%WWWDIR%%/lib/private/Settings/Admin/TipsTricks.php %%WWWDIR%%/lib/private/Settings/Manager.php %%WWWDIR%%/lib/private/Settings/Mapper.php +%%WWWDIR%%/lib/private/Settings/Personal/Additional.php +%%WWWDIR%%/lib/private/Settings/Personal/PersonalInfo.php +%%WWWDIR%%/lib/private/Settings/Personal/Security.php %%WWWDIR%%/lib/private/Settings/RemoveOrphaned.php %%WWWDIR%%/lib/private/Settings/Section.php %%WWWDIR%%/lib/private/Setup.php @@ -12373,6 +12579,7 @@ %%WWWDIR%%/lib/private/Share20/ShareHelper.php %%WWWDIR%%/lib/private/Streamer.php %%WWWDIR%%/lib/private/SubAdmin.php +%%WWWDIR%%/lib/private/Support/CrashReport/Registry.php %%WWWDIR%%/lib/private/SystemConfig.php %%WWWDIR%%/lib/private/SystemTag/ManagerFactory.php %%WWWDIR%%/lib/private/SystemTag/SystemTag.php @@ -12416,15 +12623,10 @@ %%WWWDIR%%/lib/private/legacy/hook.php %%WWWDIR%%/lib/private/legacy/image.php %%WWWDIR%%/lib/private/legacy/json.php -%%WWWDIR%%/lib/private/legacy/l10n/string.php -%%WWWDIR%%/lib/private/legacy/ocs/privatedata.php -%%WWWDIR%%/lib/private/legacy/ocs/result.php %%WWWDIR%%/lib/private/legacy/response.php %%WWWDIR%%/lib/private/legacy/template.php %%WWWDIR%%/lib/private/legacy/template/functions.php %%WWWDIR%%/lib/private/legacy/user.php -%%WWWDIR%%/lib/private/legacy/user/backend.php -%%WWWDIR%%/lib/private/legacy/user/interface.php %%WWWDIR%%/lib/private/legacy/util.php %%WWWDIR%%/lib/public/API.php %%WWWDIR%%/lib/public/Activity/IConsumer.php @@ -12480,12 +12682,22 @@ %%WWWDIR%%/lib/public/Authentication/LoginCredentials/ICredentials.php %%WWWDIR%%/lib/public/Authentication/LoginCredentials/IStore.php %%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/IProvider.php +%%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/IProvidesCustomCSP.php %%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/TwoFactorException.php %%WWWDIR%%/lib/public/AutoloadNotAllowedException.php %%WWWDIR%%/lib/public/BackgroundJob.php %%WWWDIR%%/lib/public/BackgroundJob/IJob.php %%WWWDIR%%/lib/public/BackgroundJob/IJobList.php +%%WWWDIR%%/lib/public/Calendar/ICalendar.php +%%WWWDIR%%/lib/public/Calendar/IManager.php %%WWWDIR%%/lib/public/Capabilities/ICapability.php +%%WWWDIR%%/lib/public/Capabilities/IPublicCapability.php +%%WWWDIR%%/lib/public/Collaboration/AutoComplete/IManager.php +%%WWWDIR%%/lib/public/Collaboration/AutoComplete/ISorter.php +%%WWWDIR%%/lib/public/Collaboration/Collaborators/ISearch.php +%%WWWDIR%%/lib/public/Collaboration/Collaborators/ISearchPlugin.php +%%WWWDIR%%/lib/public/Collaboration/Collaborators/ISearchResult.php +%%WWWDIR%%/lib/public/Collaboration/Collaborators/SearchResultType.php %%WWWDIR%%/lib/public/Command/IBus.php %%WWWDIR%%/lib/public/Command/ICommand.php %%WWWDIR%%/lib/public/Comments/CommentsEntityEvent.php @@ -12503,11 +12715,13 @@ %%WWWDIR%%/lib/public/Contacts.php %%WWWDIR%%/lib/public/Contacts/ContactsMenu/IAction.php %%WWWDIR%%/lib/public/Contacts/ContactsMenu/IActionFactory.php +%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IContactsStore.php %%WWWDIR%%/lib/public/Contacts/ContactsMenu/IEntry.php %%WWWDIR%%/lib/public/Contacts/ContactsMenu/ILinkAction.php %%WWWDIR%%/lib/public/Contacts/ContactsMenu/IProvider.php %%WWWDIR%%/lib/public/Contacts/IManager.php %%WWWDIR%%/lib/public/DB.php +%%WWWDIR%%/lib/public/DB/ISchemaWrapper.php %%WWWDIR%%/lib/public/DB/QueryBuilder/ICompositeExpression.php %%WWWDIR%%/lib/public/DB/QueryBuilder/IExpressionBuilder.php %%WWWDIR%%/lib/public/DB/QueryBuilder/IFunctionBuilder.php @@ -12639,10 +12853,15 @@ %%WWWDIR%%/lib/public/Lock/ILockingProvider.php %%WWWDIR%%/lib/public/Lock/LockedException.php %%WWWDIR%%/lib/public/Lockdown/ILockdownManager.php +%%WWWDIR%%/lib/public/Mail/IAttachment.php %%WWWDIR%%/lib/public/Mail/IEMailTemplate.php %%WWWDIR%%/lib/public/Mail/IMailer.php +%%WWWDIR%%/lib/public/Mail/IMessage.php +%%WWWDIR%%/lib/public/Migration/BigIntMigration.php +%%WWWDIR%%/lib/public/Migration/IMigrationStep.php %%WWWDIR%%/lib/public/Migration/IOutput.php %%WWWDIR%%/lib/public/Migration/IRepairStep.php +%%WWWDIR%%/lib/public/Migration/SimpleMigrationStep.php %%WWWDIR%%/lib/public/Notification/IAction.php %%WWWDIR%%/lib/public/Notification/IApp.php %%WWWDIR%%/lib/public/Notification/IManager.php @@ -12651,6 +12870,14 @@ %%WWWDIR%%/lib/public/OCS/IDiscoveryService.php %%WWWDIR%%/lib/public/PreConditionNotMetException.php %%WWWDIR%%/lib/public/Preview/IProvider.php +%%WWWDIR%%/lib/public/Remote/Api/IApiCollection.php +%%WWWDIR%%/lib/public/Remote/Api/IApiFactory.php +%%WWWDIR%%/lib/public/Remote/Api/ICapabilitiesApi.php +%%WWWDIR%%/lib/public/Remote/Api/IUserApi.php +%%WWWDIR%%/lib/public/Remote/ICredentials.php +%%WWWDIR%%/lib/public/Remote/IInstance.php +%%WWWDIR%%/lib/public/Remote/IInstanceFactory.php +%%WWWDIR%%/lib/public/Remote/IUser.php %%WWWDIR%%/lib/public/Response.php %%WWWDIR%%/lib/public/RichObjectStrings/Definitions.php %%WWWDIR%%/lib/public/RichObjectStrings/IValidator.php @@ -12685,6 +12912,8 @@ %%WWWDIR%%/lib/public/Share_Backend.php %%WWWDIR%%/lib/public/Share_Backend_Collection.php %%WWWDIR%%/lib/public/Share_Backend_File_Dependent.php +%%WWWDIR%%/lib/public/Support/CrashReport/IRegistry.php +%%WWWDIR%%/lib/public/Support/CrashReport/IReporter.php %%WWWDIR%%/lib/public/SystemTag/ISystemTag.php %%WWWDIR%%/lib/public/SystemTag/ISystemTagManager.php %%WWWDIR%%/lib/public/SystemTag/ISystemTagManagerFactory.php @@ -12701,10 +12930,10 @@ %%WWWDIR%%/lib/public/WorkflowEngine/ICheck.php %%WWWDIR%%/lib/public/WorkflowEngine/IManager.php %%WWWDIR%%/lib/public/WorkflowEngine/IOperation.php +%%WWWDIR%%/lib/versioncheck.php %%WWWDIR%%/occ %%WWWDIR%%/ocs-provider/index.php %%WWWDIR%%/ocs/providers.php -%%WWWDIR%%/ocs/routes.php %%WWWDIR%%/ocs/v1.php %%WWWDIR%%/ocs/v2.php %%WWWDIR%%/public.php @@ -12729,10 +12958,12 @@ %%WWWDIR%%/settings/Controller/CertificateController.php %%WWWDIR%%/settings/Controller/ChangePasswordController.php %%WWWDIR%%/settings/Controller/CheckSetupController.php +%%WWWDIR%%/settings/Controller/CommonSettingsTrait.php %%WWWDIR%%/settings/Controller/EncryptionController.php %%WWWDIR%%/settings/Controller/GroupsController.php %%WWWDIR%%/settings/Controller/LogSettingsController.php %%WWWDIR%%/settings/Controller/MailSettingsController.php +%%WWWDIR%%/settings/Controller/PersonalSettingsController.php %%WWWDIR%%/settings/Controller/SecuritySettingsController.php %%WWWDIR%%/settings/Controller/UsersController.php %%WWWDIR%%/settings/Hooks.php @@ -12745,7 +12976,7 @@ %%WWWDIR%%/settings/ajax/togglesubadmins.php %%WWWDIR%%/settings/ajax/uninstallapp.php %%WWWDIR%%/settings/ajax/updateapp.php -%%WWWDIR%%/settings/css/settings.css +%%WWWDIR%%/settings/css/settings.scss %%WWWDIR%%/settings/help.php %%WWWDIR%%/settings/img/admin.svg %%WWWDIR%%/settings/img/apps.svg @@ -12766,8 +12997,9 @@ %%WWWDIR%%/settings/js/federationscopemenu.js %%WWWDIR%%/settings/js/federationsettingsview.js %%WWWDIR%%/settings/js/log.js -%%WWWDIR%%/settings/js/personal.js %%WWWDIR%%/settings/js/settings.js +%%WWWDIR%%/settings/js/settings/authtoken-init.js +%%WWWDIR%%/settings/js/settings/personalInfo.js %%WWWDIR%%/settings/js/users/deleteHandler.js %%WWWDIR%%/settings/js/users/filter.js %%WWWDIR%%/settings/js/users/groups.js @@ -12937,22 +13169,23 @@ %%WWWDIR%%/settings/l10n/zh_HK.json %%WWWDIR%%/settings/l10n/zh_TW.js %%WWWDIR%%/settings/l10n/zh_TW.json -%%WWWDIR%%/settings/personal.php %%WWWDIR%%/settings/routes.php -%%WWWDIR%%/settings/templates/admin/additional-mail.php -%%WWWDIR%%/settings/templates/admin/additional.php -%%WWWDIR%%/settings/templates/admin/encryption.php -%%WWWDIR%%/settings/templates/admin/frame.php -%%WWWDIR%%/settings/templates/admin/server.development.notice.php -%%WWWDIR%%/settings/templates/admin/server.php -%%WWWDIR%%/settings/templates/admin/sharing.php -%%WWWDIR%%/settings/templates/admin/tipstricks.php %%WWWDIR%%/settings/templates/apps.php %%WWWDIR%%/settings/templates/certificates.php %%WWWDIR%%/settings/templates/help.php -%%WWWDIR%%/settings/templates/personal.php %%WWWDIR%%/settings/templates/settings.development.notice.php %%WWWDIR%%/settings/templates/settings.php +%%WWWDIR%%/settings/templates/settings/additional.php +%%WWWDIR%%/settings/templates/settings/admin/additional-mail.php +%%WWWDIR%%/settings/templates/settings/admin/encryption.php +%%WWWDIR%%/settings/templates/settings/admin/server.development.notice.php +%%WWWDIR%%/settings/templates/settings/admin/server.php +%%WWWDIR%%/settings/templates/settings/admin/sharing.php +%%WWWDIR%%/settings/templates/settings/admin/tipstricks.php +%%WWWDIR%%/settings/templates/settings/empty.php +%%WWWDIR%%/settings/templates/settings/frame.php +%%WWWDIR%%/settings/templates/settings/personal/personal.info.php +%%WWWDIR%%/settings/templates/settings/personal/security.php %%WWWDIR%%/settings/templates/users/main.php %%WWWDIR%%/settings/templates/users/part.createuser.php %%WWWDIR%%/settings/templates/users/part.grouplist.php @@ -12977,9 +13210,9 @@ %%WWWDIR%%/themes/example/core/img/logo.png %%WWWDIR%%/themes/example/core/img/logo.svg %%WWWDIR%%/themes/example/defaults.php +%%WWWDIR%%/updater/index.php @owner @group -%%WWWDIR%%/updater/index.php %%WWWDIR%%/version.php @dir %%WWWDIR%%/apps/gallery/documentation/wiki @dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/apps