View | Details | Raw Unified | Return to bug 223778 | Differences between
and this patch

Collapse All | Expand All

(-)www/nextcloud/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	nextcloud
3
PORTNAME=	nextcloud
4
PORTVERSION=	12.0.4
4
DISTVERSION=	13.0.0beta3
5
CATEGORIES=	www
5
CATEGORIES=	www
6
MASTER_SITES=	https://download.nextcloud.com/server/prereleases/
6
MASTER_SITES=	https://download.nextcloud.com/server/prereleases/
7
7
(-)www/nextcloud/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1512583484
1
TIMESTAMP = 1515019190
2
SHA256 (nextcloud-12.0.4.tar.bz2) = 654161a74ceaf9a60c7731d7d6702e6710a972633a97955d16f01abeb09d09b6
2
SHA256 (nextcloud-13.0.0beta3.tar.bz2) = 39fadedd78ca7364c7c405054170cda0302c7d065553f587754e6ddd2c1ecfac
3
SIZE (nextcloud-12.0.4.tar.bz2) = 43583313
3
SIZE (nextcloud-13.0.0beta3.tar.bz2) = 43753381
(-)www/nextcloud/files/patch-3rdparty_doctrine_dbal_lib_Doctrine_DBAL_Schema_PostgreSqlSchemaManager.php (-20 lines)
Lines 1-20 Link Here
1
--- 3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php.orig	2017-11-27 09:11:23 UTC
2
+++ 3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php
3
@@ -289,7 +289,16 @@ class PostgreSqlSchemaManager extends Ab
4
             $sequenceName = $sequence['relname'];
5
         }
6
 
7
-        $data = $this->_conn->fetchAll('SELECT min_value, increment_by FROM ' . $this->_platform->quoteIdentifier($sequenceName));
8
+        $version = floatval($this->_conn->getWrappedConnection()->getServerVersion());
9
+
10
+        if ($version >= 10) {
11
+           $data = $this->_conn->fetchAll('SELECT min_value, increment_by FROM pg_sequences WHERE schemaname = \'public\' AND sequencename = '.$this->_conn->quote($sequenceName));
12
+        }
13
+        else
14
+        {
15
+            $data = $this->_conn->fetchAll('SELECT min_value, increment_by FROM ' . $this->_platform->quoteIdentifier($sequenceName));
16
+        }
17
+//        $data = $this->_conn->fetchAll('SELECT min_value, increment_by FROM ' . $this->_platform->quoteIdentifier($sequenceName));
18
 
19
         return new Sequence($sequenceName, $data[0]['increment_by'], $data[0]['min_value']);
20
     }
(-)www/nextcloud/pkg-plist (-268 / +515 lines)
Lines 250-257 Link Here
250
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/Middleware.php
250
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/Middleware.php
251
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MigrationHub/Exception/MigrationHubException.php
251
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MigrationHub/Exception/MigrationHubException.php
252
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MigrationHub/MigrationHubClient.php
252
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MigrationHub/MigrationHubClient.php
253
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/Mobile/Exception/MobileException.php
254
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/Mobile/MobileClient.php
255
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MockHandler.php
253
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MockHandler.php
256
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MultiRegionClient.php
254
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/MultiRegionClient.php
257
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/Multipart/AbstractUploadManager.php
255
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/Multipart/AbstractUploadManager.php
Lines 413-419 Link Here
413
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/waiters-1.json.php
411
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/waiters-1.json.php
414
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/waiters-2.json.php
412
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudfront/2017-03-25/waiters-2.json.php
415
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/api-2.json.php
413
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/api-2.json.php
416
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudhsm/2014-05-30/paginators-1.json.php
417
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/api-2.json.php
414
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/api-2.json.php
418
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/paginators-1.json.php
415
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudhsmv2/2017-04-28/paginators-1.json.php
419
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/api-2.json.php
416
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/cloudsearch/2013-01-01/api-2.json.php
Lines 562-569 Link Here
562
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14/api-2.json.php
559
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/metering.marketplace/2016-01-14/api-2.json.php
563
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/mgh/2017-05-31/api-2.json.php
560
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/mgh/2017-05-31/api-2.json.php
564
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/mgh/2017-05-31/paginators-1.json.php
561
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/mgh/2017-05-31/paginators-1.json.php
565
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/mobile/2017-07-01/api-2.json.php
566
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/mobile/2017-07-01/paginators-1.json.php
567
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/monitoring/2010-08-01/api-2.json.php
562
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/monitoring/2010-08-01/api-2.json.php
568
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/monitoring/2010-08-01/paginators-1.json.php
563
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/monitoring/2010-08-01/paginators-1.json.php
569
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/monitoring/2010-08-01/waiters-2.json.php
564
%%WWWDIR%%/3rdparty/aws/aws-sdk-php/src/data/monitoring/2010-08-01/waiters-2.json.php
Lines 841-846 Link Here
841
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlite/Driver.php
836
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlite/Driver.php
842
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Connection.php
837
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Connection.php
843
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Driver.php
838
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Driver.php
839
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOSqlsrv/Statement.php
844
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php
840
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php
845
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PingableConnection.php
841
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/PingableConnection.php
846
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/ResultStatement.php
842
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Driver/ResultStatement.php
Lines 905-910 Link Here
905
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MySQL57Keywords.php
901
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MySQL57Keywords.php
906
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MySQLKeywords.php
902
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/MySQLKeywords.php
907
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/OracleKeywords.php
903
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/OracleKeywords.php
904
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL100Keywords.php
908
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL91Keywords.php
905
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL91Keywords.php
909
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL92Keywords.php
906
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQL92Keywords.php
910
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQLKeywords.php
907
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/Keywords/PostgreSQLKeywords.php
Lines 921-926 Link Here
921
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySQL57Platform.php
918
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySQL57Platform.php
922
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php
919
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php
923
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/OraclePlatform.php
920
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/OraclePlatform.php
921
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL100Platform.php
924
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL91Platform.php
922
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL91Platform.php
925
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL92Platform.php
923
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSQL92Platform.php
926
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
924
%%WWWDIR%%/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
Lines 3760-3770 Link Here
3760
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swift_required.php
3758
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swift_required.php
3761
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swift_required_pear.php
3759
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swift_required_pear.php
3762
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php
3760
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php
3761
%%WWWDIR%%/3rdparty/symfony/console/.gitignore
3763
%%WWWDIR%%/3rdparty/symfony/console/Application.php
3762
%%WWWDIR%%/3rdparty/symfony/console/Application.php
3763
%%WWWDIR%%/3rdparty/symfony/console/CHANGELOG.md
3764
%%WWWDIR%%/3rdparty/symfony/console/Command/Command.php
3764
%%WWWDIR%%/3rdparty/symfony/console/Command/Command.php
3765
%%WWWDIR%%/3rdparty/symfony/console/Command/HelpCommand.php
3765
%%WWWDIR%%/3rdparty/symfony/console/Command/HelpCommand.php
3766
%%WWWDIR%%/3rdparty/symfony/console/Command/ListCommand.php
3766
%%WWWDIR%%/3rdparty/symfony/console/Command/ListCommand.php
3767
%%WWWDIR%%/3rdparty/symfony/console/Command/LockableTrait.php
3767
%%WWWDIR%%/3rdparty/symfony/console/ConsoleEvents.php
3768
%%WWWDIR%%/3rdparty/symfony/console/ConsoleEvents.php
3769
%%WWWDIR%%/3rdparty/symfony/console/DependencyInjection/AddConsoleCommandPass.php
3768
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/ApplicationDescription.php
3770
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/ApplicationDescription.php
3769
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/Descriptor.php
3771
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/Descriptor.php
3770
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/DescriptorInterface.php
3772
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/DescriptorInterface.php
Lines 3773-3781 Link Here
3773
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/TextDescriptor.php
3775
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/TextDescriptor.php
3774
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/XmlDescriptor.php
3776
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/XmlDescriptor.php
3775
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleCommandEvent.php
3777
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleCommandEvent.php
3778
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleErrorEvent.php
3776
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleEvent.php
3779
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleEvent.php
3777
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleExceptionEvent.php
3780
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleExceptionEvent.php
3778
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleTerminateEvent.php
3781
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleTerminateEvent.php
3782
%%WWWDIR%%/3rdparty/symfony/console/EventListener/ErrorListener.php
3779
%%WWWDIR%%/3rdparty/symfony/console/Exception/CommandNotFoundException.php
3783
%%WWWDIR%%/3rdparty/symfony/console/Exception/CommandNotFoundException.php
3780
%%WWWDIR%%/3rdparty/symfony/console/Exception/ExceptionInterface.php
3784
%%WWWDIR%%/3rdparty/symfony/console/Exception/ExceptionInterface.php
3781
%%WWWDIR%%/3rdparty/symfony/console/Exception/InvalidArgumentException.php
3785
%%WWWDIR%%/3rdparty/symfony/console/Exception/InvalidArgumentException.php
Lines 3811-3816 Link Here
3811
%%WWWDIR%%/3rdparty/symfony/console/Input/InputDefinition.php
3815
%%WWWDIR%%/3rdparty/symfony/console/Input/InputDefinition.php
3812
%%WWWDIR%%/3rdparty/symfony/console/Input/InputInterface.php
3816
%%WWWDIR%%/3rdparty/symfony/console/Input/InputInterface.php
3813
%%WWWDIR%%/3rdparty/symfony/console/Input/InputOption.php
3817
%%WWWDIR%%/3rdparty/symfony/console/Input/InputOption.php
3818
%%WWWDIR%%/3rdparty/symfony/console/Input/StreamableInputInterface.php
3814
%%WWWDIR%%/3rdparty/symfony/console/Input/StringInput.php
3819
%%WWWDIR%%/3rdparty/symfony/console/Input/StringInput.php
3815
%%WWWDIR%%/3rdparty/symfony/console/LICENSE
3820
%%WWWDIR%%/3rdparty/symfony/console/LICENSE
3816
%%WWWDIR%%/3rdparty/symfony/console/Logger/ConsoleLogger.php
3821
%%WWWDIR%%/3rdparty/symfony/console/Logger/ConsoleLogger.php
Lines 3824-3835 Link Here
3824
%%WWWDIR%%/3rdparty/symfony/console/Question/ChoiceQuestion.php
3829
%%WWWDIR%%/3rdparty/symfony/console/Question/ChoiceQuestion.php
3825
%%WWWDIR%%/3rdparty/symfony/console/Question/ConfirmationQuestion.php
3830
%%WWWDIR%%/3rdparty/symfony/console/Question/ConfirmationQuestion.php
3826
%%WWWDIR%%/3rdparty/symfony/console/Question/Question.php
3831
%%WWWDIR%%/3rdparty/symfony/console/Question/Question.php
3832
%%WWWDIR%%/3rdparty/symfony/console/README.md
3827
%%WWWDIR%%/3rdparty/symfony/console/Style/OutputStyle.php
3833
%%WWWDIR%%/3rdparty/symfony/console/Style/OutputStyle.php
3828
%%WWWDIR%%/3rdparty/symfony/console/Style/StyleInterface.php
3834
%%WWWDIR%%/3rdparty/symfony/console/Style/StyleInterface.php
3829
%%WWWDIR%%/3rdparty/symfony/console/Style/SymfonyStyle.php
3835
%%WWWDIR%%/3rdparty/symfony/console/Style/SymfonyStyle.php
3836
%%WWWDIR%%/3rdparty/symfony/console/Terminal.php
3830
%%WWWDIR%%/3rdparty/symfony/console/Tester/ApplicationTester.php
3837
%%WWWDIR%%/3rdparty/symfony/console/Tester/ApplicationTester.php
3831
%%WWWDIR%%/3rdparty/symfony/console/Tester/CommandTester.php
3838
%%WWWDIR%%/3rdparty/symfony/console/Tester/CommandTester.php
3832
%%WWWDIR%%/3rdparty/symfony/console/composer.json
3839
%%WWWDIR%%/3rdparty/symfony/console/composer.json
3840
%%WWWDIR%%/3rdparty/symfony/console/phpunit.xml.dist
3841
%%WWWDIR%%/3rdparty/symfony/debug/.gitignore
3842
%%WWWDIR%%/3rdparty/symfony/debug/BufferingLogger.php
3843
%%WWWDIR%%/3rdparty/symfony/debug/CHANGELOG.md
3844
%%WWWDIR%%/3rdparty/symfony/debug/Debug.php
3845
%%WWWDIR%%/3rdparty/symfony/debug/DebugClassLoader.php
3846
%%WWWDIR%%/3rdparty/symfony/debug/ErrorHandler.php
3847
%%WWWDIR%%/3rdparty/symfony/debug/Exception/ClassNotFoundException.php
3848
%%WWWDIR%%/3rdparty/symfony/debug/Exception/ContextErrorException.php
3849
%%WWWDIR%%/3rdparty/symfony/debug/Exception/FatalErrorException.php
3850
%%WWWDIR%%/3rdparty/symfony/debug/Exception/FatalThrowableError.php
3851
%%WWWDIR%%/3rdparty/symfony/debug/Exception/FlattenException.php
3852
%%WWWDIR%%/3rdparty/symfony/debug/Exception/OutOfMemoryException.php
3853
%%WWWDIR%%/3rdparty/symfony/debug/Exception/SilencedErrorContext.php
3854
%%WWWDIR%%/3rdparty/symfony/debug/Exception/UndefinedFunctionException.php
3855
%%WWWDIR%%/3rdparty/symfony/debug/Exception/UndefinedMethodException.php
3856
%%WWWDIR%%/3rdparty/symfony/debug/ExceptionHandler.php
3857
%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php
3858
%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php
3859
%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php
3860
%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php
3861
%%WWWDIR%%/3rdparty/symfony/debug/LICENSE
3862
%%WWWDIR%%/3rdparty/symfony/debug/README.md
3863
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/README.md
3864
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/config.m4
3865
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/config.w32
3866
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/php_symfony_debug.h
3867
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/symfony_debug.c
3868
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/001.phpt
3869
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/002.phpt
3870
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/002_1.phpt
3871
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/003.phpt
3872
%%WWWDIR%%/3rdparty/symfony/debug/composer.json
3873
%%WWWDIR%%/3rdparty/symfony/debug/phpunit.xml.dist
3874
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/.gitignore
3875
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/CHANGELOG.md
3833
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/ContainerAwareEventDispatcher.php
3876
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/ContainerAwareEventDispatcher.php
3834
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
3877
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
3835
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php
3878
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php
Lines 3842-3847 Link Here
3842
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/GenericEvent.php
3885
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/GenericEvent.php
3843
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/ImmutableEventDispatcher.php
3886
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/ImmutableEventDispatcher.php
3844
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/LICENSE
3887
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/LICENSE
3888
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/README.md
3889
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/composer.json
3890
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/phpunit.xml.dist
3845
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/LICENSE
3891
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/LICENSE
3846
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/Mbstring.php
3892
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/Mbstring.php
3847
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
3893
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
Lines 3859-3864 Link Here
3859
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/Resources/stubs/TypeError.php
3905
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/Resources/stubs/TypeError.php
3860
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/bootstrap.php
3906
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/bootstrap.php
3861
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/composer.json
3907
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/composer.json
3908
%%WWWDIR%%/3rdparty/symfony/process/.gitignore
3909
%%WWWDIR%%/3rdparty/symfony/process/CHANGELOG.md
3862
%%WWWDIR%%/3rdparty/symfony/process/Exception/ExceptionInterface.php
3910
%%WWWDIR%%/3rdparty/symfony/process/Exception/ExceptionInterface.php
3863
%%WWWDIR%%/3rdparty/symfony/process/Exception/InvalidArgumentException.php
3911
%%WWWDIR%%/3rdparty/symfony/process/Exception/InvalidArgumentException.php
3864
%%WWWDIR%%/3rdparty/symfony/process/Exception/LogicException.php
3912
%%WWWDIR%%/3rdparty/symfony/process/Exception/LogicException.php
Lines 3877-3885 Link Here
3877
%%WWWDIR%%/3rdparty/symfony/process/Process.php
3925
%%WWWDIR%%/3rdparty/symfony/process/Process.php
3878
%%WWWDIR%%/3rdparty/symfony/process/ProcessBuilder.php
3926
%%WWWDIR%%/3rdparty/symfony/process/ProcessBuilder.php
3879
%%WWWDIR%%/3rdparty/symfony/process/ProcessUtils.php
3927
%%WWWDIR%%/3rdparty/symfony/process/ProcessUtils.php
3928
%%WWWDIR%%/3rdparty/symfony/process/README.md
3929
%%WWWDIR%%/3rdparty/symfony/process/composer.json
3930
%%WWWDIR%%/3rdparty/symfony/process/phpunit.xml.dist
3880
%%WWWDIR%%/3rdparty/symfony/routing/Annotation/Route.php
3931
%%WWWDIR%%/3rdparty/symfony/routing/Annotation/Route.php
3881
%%WWWDIR%%/3rdparty/symfony/routing/CHANGELOG.md
3932
%%WWWDIR%%/3rdparty/symfony/routing/CHANGELOG.md
3882
%%WWWDIR%%/3rdparty/symfony/routing/CompiledRoute.php
3933
%%WWWDIR%%/3rdparty/symfony/routing/CompiledRoute.php
3934
%%WWWDIR%%/3rdparty/symfony/routing/DependencyInjection/RoutingResolverPass.php
3883
%%WWWDIR%%/3rdparty/symfony/routing/Exception/ExceptionInterface.php
3935
%%WWWDIR%%/3rdparty/symfony/routing/Exception/ExceptionInterface.php
3884
%%WWWDIR%%/3rdparty/symfony/routing/Exception/InvalidParameterException.php
3936
%%WWWDIR%%/3rdparty/symfony/routing/Exception/InvalidParameterException.php
3885
%%WWWDIR%%/3rdparty/symfony/routing/Exception/MethodNotAllowedException.php
3937
%%WWWDIR%%/3rdparty/symfony/routing/Exception/MethodNotAllowedException.php
Lines 3905-3915 Link Here
3905
%%WWWDIR%%/3rdparty/symfony/routing/Loader/YamlFileLoader.php
3957
%%WWWDIR%%/3rdparty/symfony/routing/Loader/YamlFileLoader.php
3906
%%WWWDIR%%/3rdparty/symfony/routing/Loader/schema/routing/routing-1.0.xsd
3958
%%WWWDIR%%/3rdparty/symfony/routing/Loader/schema/routing/routing-1.0.xsd
3907
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/DumperCollection.php
3959
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/DumperCollection.php
3908
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/DumperPrefixCollection.php
3909
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/DumperRoute.php
3960
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/DumperRoute.php
3910
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumper.php
3961
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumper.php
3911
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php
3962
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php
3912
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php
3963
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php
3964
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/StaticPrefixCollection.php
3913
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcher.php
3965
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcher.php
3914
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php
3966
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php
3915
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RequestMatcherInterface.php
3967
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RequestMatcherInterface.php
Lines 3926-3936 Link Here
3926
%%WWWDIR%%/3rdparty/symfony/routing/RouteCompilerInterface.php
3978
%%WWWDIR%%/3rdparty/symfony/routing/RouteCompilerInterface.php
3927
%%WWWDIR%%/3rdparty/symfony/routing/Router.php
3979
%%WWWDIR%%/3rdparty/symfony/routing/Router.php
3928
%%WWWDIR%%/3rdparty/symfony/routing/RouterInterface.php
3980
%%WWWDIR%%/3rdparty/symfony/routing/RouterInterface.php
3981
%%WWWDIR%%/3rdparty/symfony/routing/composer.json
3982
%%WWWDIR%%/3rdparty/symfony/translation/.gitignore
3983
%%WWWDIR%%/3rdparty/symfony/translation/CHANGELOG.md
3984
%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/AbstractOperation.php
3985
%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/MergeOperation.php
3986
%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/OperationInterface.php
3987
%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/TargetOperation.php
3988
%%WWWDIR%%/3rdparty/symfony/translation/Command/XliffLintCommand.php
3989
%%WWWDIR%%/3rdparty/symfony/translation/DataCollector/TranslationDataCollector.php
3990
%%WWWDIR%%/3rdparty/symfony/translation/DataCollectorTranslator.php
3991
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/CsvFileDumper.php
3992
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/DumperInterface.php
3993
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/FileDumper.php
3994
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/IcuResFileDumper.php
3995
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/IniFileDumper.php
3996
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/JsonFileDumper.php
3997
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/MoFileDumper.php
3998
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/PhpFileDumper.php
3999
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/PoFileDumper.php
4000
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/QtFileDumper.php
4001
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/XliffFileDumper.php
4002
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/YamlFileDumper.php
4003
%%WWWDIR%%/3rdparty/symfony/translation/Exception/ExceptionInterface.php
4004
%%WWWDIR%%/3rdparty/symfony/translation/Exception/InvalidArgumentException.php
4005
%%WWWDIR%%/3rdparty/symfony/translation/Exception/InvalidResourceException.php
4006
%%WWWDIR%%/3rdparty/symfony/translation/Exception/LogicException.php
4007
%%WWWDIR%%/3rdparty/symfony/translation/Exception/NotFoundResourceException.php
4008
%%WWWDIR%%/3rdparty/symfony/translation/Exception/RuntimeException.php
4009
%%WWWDIR%%/3rdparty/symfony/translation/Extractor/AbstractFileExtractor.php
4010
%%WWWDIR%%/3rdparty/symfony/translation/Extractor/ChainExtractor.php
4011
%%WWWDIR%%/3rdparty/symfony/translation/Extractor/ExtractorInterface.php
4012
%%WWWDIR%%/3rdparty/symfony/translation/IdentityTranslator.php
4013
%%WWWDIR%%/3rdparty/symfony/translation/Interval.php
4014
%%WWWDIR%%/3rdparty/symfony/translation/LICENSE
4015
%%WWWDIR%%/3rdparty/symfony/translation/Loader/ArrayLoader.php
4016
%%WWWDIR%%/3rdparty/symfony/translation/Loader/CsvFileLoader.php
4017
%%WWWDIR%%/3rdparty/symfony/translation/Loader/FileLoader.php
4018
%%WWWDIR%%/3rdparty/symfony/translation/Loader/IcuDatFileLoader.php
4019
%%WWWDIR%%/3rdparty/symfony/translation/Loader/IcuResFileLoader.php
4020
%%WWWDIR%%/3rdparty/symfony/translation/Loader/IniFileLoader.php
4021
%%WWWDIR%%/3rdparty/symfony/translation/Loader/JsonFileLoader.php
4022
%%WWWDIR%%/3rdparty/symfony/translation/Loader/LoaderInterface.php
4023
%%WWWDIR%%/3rdparty/symfony/translation/Loader/MoFileLoader.php
4024
%%WWWDIR%%/3rdparty/symfony/translation/Loader/PhpFileLoader.php
4025
%%WWWDIR%%/3rdparty/symfony/translation/Loader/PoFileLoader.php
4026
%%WWWDIR%%/3rdparty/symfony/translation/Loader/QtFileLoader.php
4027
%%WWWDIR%%/3rdparty/symfony/translation/Loader/XliffFileLoader.php
4028
%%WWWDIR%%/3rdparty/symfony/translation/Loader/YamlFileLoader.php
4029
%%WWWDIR%%/3rdparty/symfony/translation/Loader/schema/dic/xliff-core/xliff-core-1.2-strict.xsd
4030
%%WWWDIR%%/3rdparty/symfony/translation/Loader/schema/dic/xliff-core/xliff-core-2.0.xsd
4031
%%WWWDIR%%/3rdparty/symfony/translation/Loader/schema/dic/xliff-core/xml.xsd
4032
%%WWWDIR%%/3rdparty/symfony/translation/LoggingTranslator.php
4033
%%WWWDIR%%/3rdparty/symfony/translation/MessageCatalogue.php
4034
%%WWWDIR%%/3rdparty/symfony/translation/MessageCatalogueInterface.php
4035
%%WWWDIR%%/3rdparty/symfony/translation/MessageSelector.php
4036
%%WWWDIR%%/3rdparty/symfony/translation/MetadataAwareInterface.php
4037
%%WWWDIR%%/3rdparty/symfony/translation/PluralizationRules.php
4038
%%WWWDIR%%/3rdparty/symfony/translation/README.md
4039
%%WWWDIR%%/3rdparty/symfony/translation/Resources/schemas/xliff-core-1.2-strict.xsd
4040
%%WWWDIR%%/3rdparty/symfony/translation/Translator.php
4041
%%WWWDIR%%/3rdparty/symfony/translation/TranslatorBagInterface.php
4042
%%WWWDIR%%/3rdparty/symfony/translation/TranslatorInterface.php
4043
%%WWWDIR%%/3rdparty/symfony/translation/Util/ArrayConverter.php
4044
%%WWWDIR%%/3rdparty/symfony/translation/Writer/TranslationWriter.php
4045
%%WWWDIR%%/3rdparty/symfony/translation/composer.json
4046
%%WWWDIR%%/3rdparty/symfony/translation/phpunit.xml.dist
3929
%%WWWDIR%%/AUTHORS
4047
%%WWWDIR%%/AUTHORS
3930
@owner %%NEXTCLOUD_USERNAME%%
4048
@owner %%NEXTCLOUD_USERNAME%%
3931
@group %%NEXTCLOUD_GROUPNAME%%
4049
@group %%NEXTCLOUD_GROUPNAME%%
3932
%%WWWDIR%%/apps/activity/appinfo/app.php
4050
%%WWWDIR%%/apps/activity/appinfo/app.php
3933
%%WWWDIR%%/apps/activity/appinfo/database.xml
3934
%%WWWDIR%%/apps/activity/appinfo/info.xml
4051
%%WWWDIR%%/apps/activity/appinfo/info.xml
3935
%%WWWDIR%%/apps/activity/appinfo/routes.php
4052
%%WWWDIR%%/apps/activity/appinfo/routes.php
3936
%%WWWDIR%%/apps/activity/appinfo/signature.json
4053
%%WWWDIR%%/apps/activity/appinfo/signature.json
Lines 4148-4153 Link Here
4148
%%WWWDIR%%/apps/activity/lib/GroupHelperDisabled.php
4265
%%WWWDIR%%/apps/activity/lib/GroupHelperDisabled.php
4149
%%WWWDIR%%/apps/activity/lib/Hooks.php
4266
%%WWWDIR%%/apps/activity/lib/Hooks.php
4150
%%WWWDIR%%/apps/activity/lib/MailQueueHandler.php
4267
%%WWWDIR%%/apps/activity/lib/MailQueueHandler.php
4268
%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170808154933.php
4269
%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170808155040.php
4270
%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170919095939.php
4151
%%WWWDIR%%/apps/activity/lib/Navigation.php
4271
%%WWWDIR%%/apps/activity/lib/Navigation.php
4152
%%WWWDIR%%/apps/activity/lib/Parameter/Collection.php
4272
%%WWWDIR%%/apps/activity/lib/Parameter/Collection.php
4153
%%WWWDIR%%/apps/activity/lib/Parameter/Factory.php
4273
%%WWWDIR%%/apps/activity/lib/Parameter/Factory.php
Lines 4168-4186 Link Here
4168
%%WWWDIR%%/apps/admin_audit/appinfo/app.php
4288
%%WWWDIR%%/apps/admin_audit/appinfo/app.php
4169
%%WWWDIR%%/apps/admin_audit/appinfo/info.xml
4289
%%WWWDIR%%/apps/admin_audit/appinfo/info.xml
4170
%%WWWDIR%%/apps/admin_audit/appinfo/signature.json
4290
%%WWWDIR%%/apps/admin_audit/appinfo/signature.json
4171
%%WWWDIR%%/apps/admin_audit/lib/actions/action.php
4291
%%WWWDIR%%/apps/admin_audit/composer/autoload.php
4172
%%WWWDIR%%/apps/admin_audit/lib/actions/auth.php
4292
%%WWWDIR%%/apps/admin_audit/composer/composer.json
4173
%%WWWDIR%%/apps/admin_audit/lib/actions/files.php
4293
%%WWWDIR%%/apps/admin_audit/composer/composer/ClassLoader.php
4174
%%WWWDIR%%/apps/admin_audit/lib/actions/groupmanagement.php
4294
%%WWWDIR%%/apps/admin_audit/composer/composer/LICENSE
4175
%%WWWDIR%%/apps/admin_audit/lib/actions/sharing.php
4295
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_classmap.php
4176
%%WWWDIR%%/apps/admin_audit/lib/actions/trashbin.php
4296
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_namespaces.php
4177
%%WWWDIR%%/apps/admin_audit/lib/actions/usermanagement.php
4297
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_psr4.php
4178
%%WWWDIR%%/apps/admin_audit/lib/actions/versions.php
4298
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_real.php
4179
%%WWWDIR%%/apps/admin_audit/lib/auditlogger.php
4299
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_static.php
4300
%%WWWDIR%%/apps/admin_audit/lib/Actions/Action.php
4301
%%WWWDIR%%/apps/admin_audit/lib/Actions/AppManagement.php
4302
%%WWWDIR%%/apps/admin_audit/lib/Actions/Auth.php
4303
%%WWWDIR%%/apps/admin_audit/lib/Actions/Console.php
4304
%%WWWDIR%%/apps/admin_audit/lib/Actions/Files.php
4305
%%WWWDIR%%/apps/admin_audit/lib/Actions/GroupManagement.php
4306
%%WWWDIR%%/apps/admin_audit/lib/Actions/Sharing.php
4307
%%WWWDIR%%/apps/admin_audit/lib/Actions/Trashbin.php
4308
%%WWWDIR%%/apps/admin_audit/lib/Actions/UserManagement.php
4309
%%WWWDIR%%/apps/admin_audit/lib/Actions/Versions.php
4310
%%WWWDIR%%/apps/admin_audit/lib/AppInfo/Application.php
4311
%%WWWDIR%%/apps/comments/.bowerrc
4180
%%WWWDIR%%/apps/comments/appinfo/app.php
4312
%%WWWDIR%%/apps/comments/appinfo/app.php
4181
%%WWWDIR%%/apps/comments/appinfo/info.xml
4313
%%WWWDIR%%/apps/comments/appinfo/info.xml
4182
%%WWWDIR%%/apps/comments/appinfo/routes.php
4314
%%WWWDIR%%/apps/comments/appinfo/routes.php
4183
%%WWWDIR%%/apps/comments/appinfo/signature.json
4315
%%WWWDIR%%/apps/comments/appinfo/signature.json
4316
%%WWWDIR%%/apps/comments/composer/autoload.php
4317
%%WWWDIR%%/apps/comments/composer/composer.json
4318
%%WWWDIR%%/apps/comments/composer/composer/ClassLoader.php
4319
%%WWWDIR%%/apps/comments/composer/composer/LICENSE
4320
%%WWWDIR%%/apps/comments/composer/composer/autoload_classmap.php
4321
%%WWWDIR%%/apps/comments/composer/composer/autoload_namespaces.php
4322
%%WWWDIR%%/apps/comments/composer/composer/autoload_psr4.php
4323
%%WWWDIR%%/apps/comments/composer/composer/autoload_real.php
4324
%%WWWDIR%%/apps/comments/composer/composer/autoload_static.php
4325
%%WWWDIR%%/apps/comments/css/autocomplete.scss
4184
%%WWWDIR%%/apps/comments/css/comments.css
4326
%%WWWDIR%%/apps/comments/css/comments.css
4185
%%WWWDIR%%/apps/comments/img/comments-dark.svg
4327
%%WWWDIR%%/apps/comments/img/comments-dark.svg
4186
%%WWWDIR%%/apps/comments/img/comments.svg
4328
%%WWWDIR%%/apps/comments/img/comments.svg
Lines 4192-4197 Link Here
4192
%%WWWDIR%%/apps/comments/js/commentsummarymodel.js
4334
%%WWWDIR%%/apps/comments/js/commentsummarymodel.js
4193
%%WWWDIR%%/apps/comments/js/filesplugin.js
4335
%%WWWDIR%%/apps/comments/js/filesplugin.js
4194
%%WWWDIR%%/apps/comments/js/merged.json
4336
%%WWWDIR%%/apps/comments/js/merged.json
4337
%%WWWDIR%%/apps/comments/js/vendor/At.js/dist/js/jquery.atwho.min.js
4338
%%WWWDIR%%/apps/comments/js/vendor/Caret.js/dist/jquery.caret.min.js
4195
%%WWWDIR%%/apps/comments/l10n/.gitkeep
4339
%%WWWDIR%%/apps/comments/l10n/.gitkeep
4196
%%WWWDIR%%/apps/comments/l10n/af.js
4340
%%WWWDIR%%/apps/comments/l10n/af.js
4197
%%WWWDIR%%/apps/comments/l10n/af.json
4341
%%WWWDIR%%/apps/comments/l10n/af.json
Lines 4400-4412 Link Here
4400
%%WWWDIR%%/apps/comments/lib/Activity/Provider.php
4544
%%WWWDIR%%/apps/comments/lib/Activity/Provider.php
4401
%%WWWDIR%%/apps/comments/lib/Activity/Setting.php
4545
%%WWWDIR%%/apps/comments/lib/Activity/Setting.php
4402
%%WWWDIR%%/apps/comments/lib/AppInfo/Application.php
4546
%%WWWDIR%%/apps/comments/lib/AppInfo/Application.php
4547
%%WWWDIR%%/apps/comments/lib/Collaboration/CommentersSorter.php
4403
%%WWWDIR%%/apps/comments/lib/Controller/Notifications.php
4548
%%WWWDIR%%/apps/comments/lib/Controller/Notifications.php
4404
%%WWWDIR%%/apps/comments/lib/EventHandler.php
4549
%%WWWDIR%%/apps/comments/lib/EventHandler.php
4550
%%WWWDIR%%/apps/comments/lib/JSSettingsHelper.php
4405
%%WWWDIR%%/apps/comments/lib/Notification/Listener.php
4551
%%WWWDIR%%/apps/comments/lib/Notification/Listener.php
4406
%%WWWDIR%%/apps/comments/lib/Notification/Notifier.php
4552
%%WWWDIR%%/apps/comments/lib/Notification/Notifier.php
4407
%%WWWDIR%%/apps/dav/appinfo/app.php
4553
%%WWWDIR%%/apps/dav/appinfo/app.php
4408
%%WWWDIR%%/apps/dav/appinfo/database.xml
4409
%%WWWDIR%%/apps/dav/appinfo/info.xml
4554
%%WWWDIR%%/apps/dav/appinfo/info.xml
4555
%%WWWDIR%%/apps/dav/appinfo/routes.php
4410
%%WWWDIR%%/apps/dav/appinfo/signature.json
4556
%%WWWDIR%%/apps/dav/appinfo/signature.json
4411
%%WWWDIR%%/apps/dav/appinfo/v1/caldav.php
4557
%%WWWDIR%%/apps/dav/appinfo/v1/caldav.php
4412
%%WWWDIR%%/apps/dav/appinfo/v1/carddav.php
4558
%%WWWDIR%%/apps/dav/appinfo/v1/carddav.php
Lines 4414-4419 Link Here
4414
%%WWWDIR%%/apps/dav/appinfo/v1/webdav.php
4560
%%WWWDIR%%/apps/dav/appinfo/v1/webdav.php
4415
%%WWWDIR%%/apps/dav/appinfo/v2/remote.php
4561
%%WWWDIR%%/apps/dav/appinfo/v2/remote.php
4416
%%WWWDIR%%/apps/dav/bin/chunkperf.php
4562
%%WWWDIR%%/apps/dav/bin/chunkperf.php
4563
%%WWWDIR%%/apps/dav/composer/autoload.php
4564
%%WWWDIR%%/apps/dav/composer/composer.json
4565
%%WWWDIR%%/apps/dav/composer/composer/ClassLoader.php
4566
%%WWWDIR%%/apps/dav/composer/composer/LICENSE
4567
%%WWWDIR%%/apps/dav/composer/composer/autoload_classmap.php
4568
%%WWWDIR%%/apps/dav/composer/composer/autoload_namespaces.php
4569
%%WWWDIR%%/apps/dav/composer/composer/autoload_psr4.php
4570
%%WWWDIR%%/apps/dav/composer/composer/autoload_real.php
4571
%%WWWDIR%%/apps/dav/composer/composer/autoload_static.php
4572
%%WWWDIR%%/apps/dav/js/settings-admin-caldav.js
4417
%%WWWDIR%%/apps/dav/l10n/.gitkeep
4573
%%WWWDIR%%/apps/dav/l10n/.gitkeep
4418
%%WWWDIR%%/apps/dav/l10n/bg.js
4574
%%WWWDIR%%/apps/dav/l10n/bg.js
4419
%%WWWDIR%%/apps/dav/l10n/bg.json
4575
%%WWWDIR%%/apps/dav/l10n/bg.json
Lines 4425-4430 Link Here
4425
%%WWWDIR%%/apps/dav/l10n/cs.json
4581
%%WWWDIR%%/apps/dav/l10n/cs.json
4426
%%WWWDIR%%/apps/dav/l10n/cs_CZ.js
4582
%%WWWDIR%%/apps/dav/l10n/cs_CZ.js
4427
%%WWWDIR%%/apps/dav/l10n/cs_CZ.json
4583
%%WWWDIR%%/apps/dav/l10n/cs_CZ.json
4584
%%WWWDIR%%/apps/dav/l10n/et_EE.js
4585
%%WWWDIR%%/apps/dav/l10n/et_EE.json
4428
%%WWWDIR%%/apps/dav/l10n/da.js
4586
%%WWWDIR%%/apps/dav/l10n/da.js
4429
%%WWWDIR%%/apps/dav/l10n/da.json
4587
%%WWWDIR%%/apps/dav/l10n/da.json
4430
%%WWWDIR%%/apps/dav/l10n/de.js
4588
%%WWWDIR%%/apps/dav/l10n/de.js
Lines 4530-4538 Link Here
4530
%%WWWDIR%%/apps/dav/l10n/zh_TW.js
4688
%%WWWDIR%%/apps/dav/l10n/zh_TW.js
4531
%%WWWDIR%%/apps/dav/l10n/zh_TW.json
4689
%%WWWDIR%%/apps/dav/l10n/zh_TW.json
4532
%%WWWDIR%%/apps/dav/lib/AppInfo/Application.php
4690
%%WWWDIR%%/apps/dav/lib/AppInfo/Application.php
4691
%%WWWDIR%%/apps/dav/lib/AppInfo/PluginManager.php
4533
%%WWWDIR%%/apps/dav/lib/Avatars/AvatarHome.php
4692
%%WWWDIR%%/apps/dav/lib/Avatars/AvatarHome.php
4534
%%WWWDIR%%/apps/dav/lib/Avatars/AvatarNode.php
4693
%%WWWDIR%%/apps/dav/lib/Avatars/AvatarNode.php
4535
%%WWWDIR%%/apps/dav/lib/Avatars/RootCollection.php
4694
%%WWWDIR%%/apps/dav/lib/Avatars/RootCollection.php
4695
%%WWWDIR%%/apps/dav/lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php
4536
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Backend.php
4696
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Backend.php
4537
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Calendar.php
4697
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Calendar.php
4538
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Todo.php
4698
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Todo.php
Lines 4543-4555 Link Here
4543
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Calendar.php
4703
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Calendar.php
4544
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Event.php
4704
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Event.php
4545
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Todo.php
4705
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Todo.php
4706
%%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayCalendar/EnablePlugin.php
4546
%%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayService.php
4707
%%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayService.php
4547
%%WWWDIR%%/apps/dav/lib/CalDAV/CalDavBackend.php
4708
%%WWWDIR%%/apps/dav/lib/CalDAV/CalDavBackend.php
4548
%%WWWDIR%%/apps/dav/lib/CalDAV/Calendar.php
4709
%%WWWDIR%%/apps/dav/lib/CalDAV/Calendar.php
4549
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarHome.php
4710
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarHome.php
4711
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarImpl.php
4712
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarManager.php
4550
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarObject.php
4713
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarObject.php
4551
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarRoot.php
4714
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarRoot.php
4552
%%WWWDIR%%/apps/dav/lib/CalDAV/Plugin.php
4715
%%WWWDIR%%/apps/dav/lib/CalDAV/Plugin.php
4716
%%WWWDIR%%/apps/dav/lib/CalDAV/Principal/Collection.php
4717
%%WWWDIR%%/apps/dav/lib/CalDAV/Principal/User.php
4553
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendar.php
4718
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendar.php
4554
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarObject.php
4719
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarObject.php
4555
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarRoot.php
4720
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarRoot.php
Lines 4594-4599 Link Here
4594
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Auth.php
4759
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/Auth.php
4595
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/BearerAuth.php
4760
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/BearerAuth.php
4596
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php
4761
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php
4762
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CachingTree.php
4597
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ChecksumList.php
4763
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/ChecksumList.php
4598
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CommentPropertiesPlugin.php
4764
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CommentPropertiesPlugin.php
4599
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CopyEtagHeaderPlugin.php
4765
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/CopyEtagHeaderPlugin.php
Lines 4624-4629 Link Here
4624
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/SharesPlugin.php
4790
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/SharesPlugin.php
4625
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/TagList.php
4791
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/TagList.php
4626
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/TagsPlugin.php
4792
%%WWWDIR%%/apps/dav/lib/Connector/Sabre/TagsPlugin.php
4793
%%WWWDIR%%/apps/dav/lib/Controller/BirthdayCalendarController.php
4627
%%WWWDIR%%/apps/dav/lib/DAV/CustomPropertiesBackend.php
4794
%%WWWDIR%%/apps/dav/lib/DAV/CustomPropertiesBackend.php
4628
%%WWWDIR%%/apps/dav/lib/DAV/GroupPrincipalBackend.php
4795
%%WWWDIR%%/apps/dav/lib/DAV/GroupPrincipalBackend.php
4629
%%WWWDIR%%/apps/dav/lib/DAV/PublicAuth.php
4796
%%WWWDIR%%/apps/dav/lib/DAV/PublicAuth.php
Lines 4644-4651 Link Here
4644
%%WWWDIR%%/apps/dav/lib/Migration/BuildCalendarSearchIndexBackgroundJob.php
4811
%%WWWDIR%%/apps/dav/lib/Migration/BuildCalendarSearchIndexBackgroundJob.php
4645
%%WWWDIR%%/apps/dav/lib/Migration/CalDAVRemoveEmptyValue.php
4812
%%WWWDIR%%/apps/dav/lib/Migration/CalDAVRemoveEmptyValue.php
4646
%%WWWDIR%%/apps/dav/lib/Migration/FixBirthdayCalendarComponent.php
4813
%%WWWDIR%%/apps/dav/lib/Migration/FixBirthdayCalendarComponent.php
4814
%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170825134824.php
4815
%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170919104507.php
4816
%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170924124212.php
4817
%%WWWDIR%%/apps/dav/lib/Migration/Version1004Date20170926103422.php
4647
%%WWWDIR%%/apps/dav/lib/RootCollection.php
4818
%%WWWDIR%%/apps/dav/lib/RootCollection.php
4648
%%WWWDIR%%/apps/dav/lib/Server.php
4819
%%WWWDIR%%/apps/dav/lib/Server.php
4820
%%WWWDIR%%/apps/dav/lib/Settings/CalDAVSettings.php
4649
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagMappingNode.php
4821
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagMappingNode.php
4650
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagNode.php
4822
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagNode.php
4651
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagPlugin.php
4823
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagPlugin.php
Lines 4659-4668 Link Here
4659
%%WWWDIR%%/apps/dav/lib/Upload/UploadFolder.php
4831
%%WWWDIR%%/apps/dav/lib/Upload/UploadFolder.php
4660
%%WWWDIR%%/apps/dav/lib/Upload/UploadHome.php
4832
%%WWWDIR%%/apps/dav/lib/Upload/UploadHome.php
4661
%%WWWDIR%%/apps/dav/templates/exception.php
4833
%%WWWDIR%%/apps/dav/templates/exception.php
4834
%%WWWDIR%%/apps/dav/templates/settings-admin-caldav.php
4662
%%WWWDIR%%/apps/encryption/appinfo/app.php
4835
%%WWWDIR%%/apps/encryption/appinfo/app.php
4663
%%WWWDIR%%/apps/encryption/appinfo/info.xml
4836
%%WWWDIR%%/apps/encryption/appinfo/info.xml
4664
%%WWWDIR%%/apps/encryption/appinfo/routes.php
4837
%%WWWDIR%%/apps/encryption/appinfo/routes.php
4665
%%WWWDIR%%/apps/encryption/appinfo/signature.json
4838
%%WWWDIR%%/apps/encryption/appinfo/signature.json
4839
%%WWWDIR%%/apps/encryption/composer/autoload.php
4840
%%WWWDIR%%/apps/encryption/composer/composer.json
4841
%%WWWDIR%%/apps/encryption/composer/composer/ClassLoader.php
4842
%%WWWDIR%%/apps/encryption/composer/composer/LICENSE
4843
%%WWWDIR%%/apps/encryption/composer/composer/autoload_classmap.php
4844
%%WWWDIR%%/apps/encryption/composer/composer/autoload_namespaces.php
4845
%%WWWDIR%%/apps/encryption/composer/composer/autoload_psr4.php
4846
%%WWWDIR%%/apps/encryption/composer/composer/autoload_real.php
4847
%%WWWDIR%%/apps/encryption/composer/composer/autoload_static.php
4666
%%WWWDIR%%/apps/encryption/css/settings-admin.css
4848
%%WWWDIR%%/apps/encryption/css/settings-admin.css
4667
%%WWWDIR%%/apps/encryption/css/settings-personal.css
4849
%%WWWDIR%%/apps/encryption/css/settings-personal.css
4668
%%WWWDIR%%/apps/encryption/img/app.svg
4850
%%WWWDIR%%/apps/encryption/img/app.svg
Lines 4835-4840 Link Here
4835
%%WWWDIR%%/apps/encryption/l10n/zh_TW.js
5017
%%WWWDIR%%/apps/encryption/l10n/zh_TW.js
4836
%%WWWDIR%%/apps/encryption/l10n/zh_TW.json
5018
%%WWWDIR%%/apps/encryption/l10n/zh_TW.json
4837
%%WWWDIR%%/apps/encryption/lib/AppInfo/Application.php
5019
%%WWWDIR%%/apps/encryption/lib/AppInfo/Application.php
5020
%%WWWDIR%%/apps/encryption/lib/Command/DisableMasterKey.php
4838
%%WWWDIR%%/apps/encryption/lib/Command/EnableMasterKey.php
5021
%%WWWDIR%%/apps/encryption/lib/Command/EnableMasterKey.php
4839
%%WWWDIR%%/apps/encryption/lib/Command/MigrateKeys.php
5022
%%WWWDIR%%/apps/encryption/lib/Command/MigrateKeys.php
4840
%%WWWDIR%%/apps/encryption/lib/Controller/RecoveryController.php
5023
%%WWWDIR%%/apps/encryption/lib/Controller/RecoveryController.php
Lines 4853-4864 Link Here
4853
%%WWWDIR%%/apps/encryption/lib/Hooks/UserHooks.php
5036
%%WWWDIR%%/apps/encryption/lib/Hooks/UserHooks.php
4854
%%WWWDIR%%/apps/encryption/lib/KeyManager.php
5037
%%WWWDIR%%/apps/encryption/lib/KeyManager.php
4855
%%WWWDIR%%/apps/encryption/lib/Migration.php
5038
%%WWWDIR%%/apps/encryption/lib/Migration.php
5039
%%WWWDIR%%/apps/encryption/lib/Migration/SetMasterKeyStatus.php
4856
%%WWWDIR%%/apps/encryption/lib/Recovery.php
5040
%%WWWDIR%%/apps/encryption/lib/Recovery.php
4857
%%WWWDIR%%/apps/encryption/lib/Session.php
5041
%%WWWDIR%%/apps/encryption/lib/Session.php
4858
%%WWWDIR%%/apps/encryption/lib/Settings/Admin.php
5042
%%WWWDIR%%/apps/encryption/lib/Settings/Admin.php
5043
%%WWWDIR%%/apps/encryption/lib/Settings/Personal.php
4859
%%WWWDIR%%/apps/encryption/lib/Users/Setup.php
5044
%%WWWDIR%%/apps/encryption/lib/Users/Setup.php
4860
%%WWWDIR%%/apps/encryption/lib/Util.php
5045
%%WWWDIR%%/apps/encryption/lib/Util.php
4861
%%WWWDIR%%/apps/encryption/settings/settings-personal.php
4862
%%WWWDIR%%/apps/encryption/templates/altmail.php
5046
%%WWWDIR%%/apps/encryption/templates/altmail.php
4863
%%WWWDIR%%/apps/encryption/templates/mail.php
5047
%%WWWDIR%%/apps/encryption/templates/mail.php
4864
%%WWWDIR%%/apps/encryption/templates/settings-admin.php
5048
%%WWWDIR%%/apps/encryption/templates/settings-admin.php
Lines 4868-4873 Link Here
4868
%%WWWDIR%%/apps/federatedfilesharing/appinfo/info.xml
5052
%%WWWDIR%%/apps/federatedfilesharing/appinfo/info.xml
4869
%%WWWDIR%%/apps/federatedfilesharing/appinfo/routes.php
5053
%%WWWDIR%%/apps/federatedfilesharing/appinfo/routes.php
4870
%%WWWDIR%%/apps/federatedfilesharing/appinfo/signature.json
5054
%%WWWDIR%%/apps/federatedfilesharing/appinfo/signature.json
5055
%%WWWDIR%%/apps/federatedfilesharing/composer/autoload.php
5056
%%WWWDIR%%/apps/federatedfilesharing/composer/composer.json
5057
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/ClassLoader.php
5058
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/LICENSE
5059
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_classmap.php
5060
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_namespaces.php
5061
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_psr4.php
5062
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_real.php
5063
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_static.php
4871
%%WWWDIR%%/apps/federatedfilesharing/css/settings-personal.css
5064
%%WWWDIR%%/apps/federatedfilesharing/css/settings-personal.css
4872
%%WWWDIR%%/apps/federatedfilesharing/img/social-diaspora.svg
5065
%%WWWDIR%%/apps/federatedfilesharing/img/social-diaspora.svg
4873
%%WWWDIR%%/apps/federatedfilesharing/img/social-facebook.svg
5066
%%WWWDIR%%/apps/federatedfilesharing/img/social-facebook.svg
Lines 5032-5039 Link Here
5032
%%WWWDIR%%/apps/federatedfilesharing/lib/Notifications.php
5225
%%WWWDIR%%/apps/federatedfilesharing/lib/Notifications.php
5033
%%WWWDIR%%/apps/federatedfilesharing/lib/Notifier.php
5226
%%WWWDIR%%/apps/federatedfilesharing/lib/Notifier.php
5034
%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Admin.php
5227
%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Admin.php
5228
%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Personal.php
5229
%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/PersonalSection.php
5035
%%WWWDIR%%/apps/federatedfilesharing/lib/TokenHandler.php
5230
%%WWWDIR%%/apps/federatedfilesharing/lib/TokenHandler.php
5036
%%WWWDIR%%/apps/federatedfilesharing/settings-personal.php
5037
%%WWWDIR%%/apps/federatedfilesharing/templates/settings-admin.php
5231
%%WWWDIR%%/apps/federatedfilesharing/templates/settings-admin.php
5038
%%WWWDIR%%/apps/federatedfilesharing/templates/settings-personal.php
5232
%%WWWDIR%%/apps/federatedfilesharing/templates/settings-personal.php
5039
%%WWWDIR%%/apps/federation/appinfo/app.php
5233
%%WWWDIR%%/apps/federation/appinfo/app.php
Lines 5041-5046 Link Here
5041
%%WWWDIR%%/apps/federation/appinfo/info.xml
5235
%%WWWDIR%%/apps/federation/appinfo/info.xml
5042
%%WWWDIR%%/apps/federation/appinfo/routes.php
5236
%%WWWDIR%%/apps/federation/appinfo/routes.php
5043
%%WWWDIR%%/apps/federation/appinfo/signature.json
5237
%%WWWDIR%%/apps/federation/appinfo/signature.json
5238
%%WWWDIR%%/apps/federation/composer/autoload.php
5239
%%WWWDIR%%/apps/federation/composer/composer.json
5240
%%WWWDIR%%/apps/federation/composer/composer/ClassLoader.php
5241
%%WWWDIR%%/apps/federation/composer/composer/LICENSE
5242
%%WWWDIR%%/apps/federation/composer/composer/autoload_classmap.php
5243
%%WWWDIR%%/apps/federation/composer/composer/autoload_namespaces.php
5244
%%WWWDIR%%/apps/federation/composer/composer/autoload_psr4.php
5245
%%WWWDIR%%/apps/federation/composer/composer/autoload_real.php
5246
%%WWWDIR%%/apps/federation/composer/composer/autoload_static.php
5044
%%WWWDIR%%/apps/federation/css/settings-admin.css
5247
%%WWWDIR%%/apps/federation/css/settings-admin.css
5045
%%WWWDIR%%/apps/federation/img/app.svg
5248
%%WWWDIR%%/apps/federation/img/app.svg
5046
%%WWWDIR%%/apps/federation/js/settings-admin.js
5249
%%WWWDIR%%/apps/federation/js/settings-admin.js
Lines 5203-5208 Link Here
5203
%%WWWDIR%%/apps/files/appinfo/info.xml
5406
%%WWWDIR%%/apps/files/appinfo/info.xml
5204
%%WWWDIR%%/apps/files/appinfo/routes.php
5407
%%WWWDIR%%/apps/files/appinfo/routes.php
5205
%%WWWDIR%%/apps/files/appinfo/signature.json
5408
%%WWWDIR%%/apps/files/appinfo/signature.json
5409
%%WWWDIR%%/apps/files/composer/autoload.php
5410
%%WWWDIR%%/apps/files/composer/composer.json
5411
%%WWWDIR%%/apps/files/composer/composer/ClassLoader.php
5412
%%WWWDIR%%/apps/files/composer/composer/LICENSE
5413
%%WWWDIR%%/apps/files/composer/composer/autoload_classmap.php
5414
%%WWWDIR%%/apps/files/composer/composer/autoload_namespaces.php
5415
%%WWWDIR%%/apps/files/composer/composer/autoload_psr4.php
5416
%%WWWDIR%%/apps/files/composer/composer/autoload_real.php
5417
%%WWWDIR%%/apps/files/composer/composer/autoload_static.php
5206
%%WWWDIR%%/apps/files/css/detailsView.scss
5418
%%WWWDIR%%/apps/files/css/detailsView.scss
5207
%%WWWDIR%%/apps/files/css/files.scss
5419
%%WWWDIR%%/apps/files/css/files.scss
5208
%%WWWDIR%%/apps/files/css/merged.scss
5420
%%WWWDIR%%/apps/files/css/merged.scss
Lines 5220-5225 Link Here
5220
%%WWWDIR%%/apps/files/img/external.svg
5432
%%WWWDIR%%/apps/files/img/external.svg
5221
%%WWWDIR%%/apps/files/img/folder.svg
5433
%%WWWDIR%%/apps/files/img/folder.svg
5222
%%WWWDIR%%/apps/files/img/public.svg
5434
%%WWWDIR%%/apps/files/img/public.svg
5435
%%WWWDIR%%/apps/files/img/quota.svg
5223
%%WWWDIR%%/apps/files/img/recent.svg
5436
%%WWWDIR%%/apps/files/img/recent.svg
5224
%%WWWDIR%%/apps/files/img/share.svg
5437
%%WWWDIR%%/apps/files/img/share.svg
5225
%%WWWDIR%%/apps/files/img/star.svg
5438
%%WWWDIR%%/apps/files/img/star.svg
Lines 5535-5555 Link Here
5535
%%WWWDIR%%/apps/files/templates/recentlist.php
5748
%%WWWDIR%%/apps/files/templates/recentlist.php
5536
%%WWWDIR%%/apps/files/templates/simplelist.php
5749
%%WWWDIR%%/apps/files/templates/simplelist.php
5537
%%WWWDIR%%/apps/files_external/3rdparty/.gitignore
5750
%%WWWDIR%%/apps/files_external/3rdparty/.gitignore
5538
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/API.php
5539
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/Exception.php
5540
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/Exception/Forbidden.php
5541
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/Exception/NotFound.php
5542
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/Exception/OverQuota.php
5543
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/Exception/RequestToken.php
5544
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth.php
5545
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/Consumer/Dropbox.php
5546
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/Curl.php
5547
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/PEAR.php
5548
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/PHP.php
5549
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/Wordpress.php
5550
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/Zend.php
5551
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/OAuth/ca-bundle.pem
5552
%%WWWDIR%%/apps/files_external/3rdparty/Dropbox/autoload.php
5553
%%WWWDIR%%/apps/files_external/3rdparty/autoload.php
5751
%%WWWDIR%%/apps/files_external/3rdparty/autoload.php
5554
%%WWWDIR%%/apps/files_external/3rdparty/composer.json
5752
%%WWWDIR%%/apps/files_external/3rdparty/composer.json
5555
%%WWWDIR%%/apps/files_external/3rdparty/composer.lock
5753
%%WWWDIR%%/apps/files_external/3rdparty/composer.lock
Lines 5561-5705 Link Here
5561
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_real.php
5759
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_real.php
5562
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_static.php
5760
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_static.php
5563
%%WWWDIR%%/apps/files_external/3rdparty/composer/installed.json
5761
%%WWWDIR%%/apps/files_external/3rdparty/composer/installed.json
5564
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/LICENSE
5565
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/README.md
5566
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/Abstract.php
5567
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/AppIdentity.php
5568
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/AssertionCredentials.php
5569
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/ComputeEngine.php
5570
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/Exception.php
5571
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/LoginTicket.php
5572
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/OAuth2.php
5573
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Auth/Simple.php
5574
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Abstract.php
5575
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Apc.php
5576
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Exception.php
5577
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/File.php
5578
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Memcache.php
5579
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Cache/Null.php
5580
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Client.php
5581
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Collection.php
5582
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Config.php
5583
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Exception.php
5584
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/Batch.php
5585
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/CacheParser.php
5586
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/MediaFileUpload.php
5587
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/REST.php
5588
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Http/Request.php
5589
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Abstract.php
5590
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Curl.php
5591
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Exception.php
5592
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/Stream.php
5593
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/IO/cacerts.pem
5594
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Abstract.php
5595
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Exception.php
5596
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/File.php
5597
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Null.php
5598
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Logger/Psr.php
5599
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Model.php
5600
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service.php
5601
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdExchangeBuyer.php
5602
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdExchangeSeller.php
5603
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdSense.php
5604
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AdSenseHost.php
5605
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Admin.php
5606
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Analytics.php
5607
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AndroidEnterprise.php
5608
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AndroidPublisher.php
5609
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/AppState.php
5610
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Appengine.php
5611
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Appsactivity.php
5612
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Audit.php
5613
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Autoscaler.php
5614
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Bigquery.php
5615
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Blogger.php
5616
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Books.php
5617
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Calendar.php
5618
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/CivicInfo.php
5619
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Classroom.php
5620
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/CloudMonitoring.php
5621
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/CloudUserAccounts.php
5622
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudbilling.php
5623
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Clouddebugger.php
5624
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudlatencytest.php
5625
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudresourcemanager.php
5626
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudsearch.php
5627
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Cloudtrace.php
5628
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Compute.php
5629
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Computeaccounts.php
5630
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Container.php
5631
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Coordinate.php
5632
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Customsearch.php
5633
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/DataTransfer.php
5634
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Dataflow.php
5635
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Datastore.php
5636
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/DeploymentManager.php
5637
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Dfareporting.php
5638
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Directory.php
5639
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Dns.php
5640
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/DoubleClickBidManager.php
5641
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Doubleclicksearch.php
5642
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Drive.php
5643
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Exception.php
5644
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Fitness.php
5645
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Freebase.php
5646
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Fusiontables.php
5647
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Games.php
5648
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/GamesConfiguration.php
5649
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/GamesManagement.php
5650
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Genomics.php
5651
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Gmail.php
5652
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/GroupsMigration.php
5653
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Groupssettings.php
5654
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/IdentityToolkit.php
5655
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Licensing.php
5656
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Logging.php
5657
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Manager.php
5658
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/MapsEngine.php
5659
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Mirror.php
5660
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Oauth2.php
5661
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Pagespeedonline.php
5662
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Partners.php
5663
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Playmoviespartner.php
5664
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Plus.php
5665
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/PlusDomains.php
5666
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Prediction.php
5667
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Proximitybeacon.php
5668
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Pubsub.php
5669
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/QPXExpress.php
5670
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Replicapool.php
5671
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Replicapoolupdater.php
5672
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Reports.php
5673
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Reseller.php
5674
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Resource.php
5675
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Resourceviews.php
5676
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/SQLAdmin.php
5677
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Script.php
5678
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/ShoppingContent.php
5679
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/SiteVerification.php
5680
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Spectrum.php
5681
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Storage.php
5682
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Storagetransfer.php
5683
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/TagManager.php
5684
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Taskqueue.php
5685
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Tasks.php
5686
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Translate.php
5687
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Urlshortener.php
5688
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Webfonts.php
5689
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/Webmasters.php
5690
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/YouTube.php
5691
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/YouTubeAnalytics.php
5692
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Service/YouTubeReporting.php
5693
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Signer/Abstract.php
5694
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Signer/P12.php
5695
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Task/Exception.php
5696
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Task/Retryable.php
5697
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Task/Runner.php
5698
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Utils.php
5699
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Utils/URITemplate.php
5700
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Verifier/Abstract.php
5701
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/Verifier/Pem.php
5702
%%WWWDIR%%/apps/files_external/3rdparty/google-api-php-client/src/Google/autoload.php
5703
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/.gitignore
5762
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/.gitignore
5704
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/LICENSE.txt
5763
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/LICENSE.txt
5705
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/README.md
5764
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/README.md
Lines 5720-5725 Link Here
5720
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/ForbiddenException.php
5779
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/ForbiddenException.php
5721
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/HostDownException.php
5780
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/HostDownException.php
5722
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidHostException.php
5781
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidHostException.php
5782
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidParameterException.php
5723
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidPathException.php
5783
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidPathException.php
5724
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidRequestException.php
5784
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidRequestException.php
5725
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidResourceException.php
5785
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidResourceException.php
Lines 5728-5733 Link Here
5728
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NoRouteToHostException.php
5788
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NoRouteToHostException.php
5729
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotEmptyException.php
5789
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotEmptyException.php
5730
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotFoundException.php
5790
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotFoundException.php
5791
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/OutOfSpaceException.php
5792
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/RevisionMismatchException.php
5731
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/TimedOutException.php
5793
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/TimedOutException.php
5732
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/FileInfo.php
5794
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/FileInfo.php
5733
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/IFileInfo.php
5795
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/IFileInfo.php
Lines 5768-5774 Link Here
5768
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/UrlCallBack.php
5830
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/UrlCallBack.php
5769
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Wrapper.php
5831
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Wrapper.php
5770
%%WWWDIR%%/apps/files_external/ajax/applicable.php
5832
%%WWWDIR%%/apps/files_external/ajax/applicable.php
5771
%%WWWDIR%%/apps/files_external/ajax/oauth1.php
5772
%%WWWDIR%%/apps/files_external/ajax/oauth2.php
5833
%%WWWDIR%%/apps/files_external/ajax/oauth2.php
5773
%%WWWDIR%%/apps/files_external/appinfo/app.php
5834
%%WWWDIR%%/apps/files_external/appinfo/app.php
5774
%%WWWDIR%%/apps/files_external/appinfo/database.xml
5835
%%WWWDIR%%/apps/files_external/appinfo/database.xml
Lines 5780-5787 Link Here
5780
%%WWWDIR%%/apps/files_external/img/app-dark.svg
5841
%%WWWDIR%%/apps/files_external/img/app-dark.svg
5781
%%WWWDIR%%/apps/files_external/img/app.svg
5842
%%WWWDIR%%/apps/files_external/img/app.svg
5782
%%WWWDIR%%/apps/files_external/js/app.js
5843
%%WWWDIR%%/apps/files_external/js/app.js
5783
%%WWWDIR%%/apps/files_external/js/dropbox.js
5784
%%WWWDIR%%/apps/files_external/js/gdrive.js
5785
%%WWWDIR%%/apps/files_external/js/mountsfilelist.js
5844
%%WWWDIR%%/apps/files_external/js/mountsfilelist.js
5786
%%WWWDIR%%/apps/files_external/js/oauth1.js
5845
%%WWWDIR%%/apps/files_external/js/oauth1.js
5787
%%WWWDIR%%/apps/files_external/js/oauth2.js
5846
%%WWWDIR%%/apps/files_external/js/oauth2.js
Lines 6014-6019 Link Here
6014
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/AuthMechanism.php
6073
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/AuthMechanism.php
6015
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Builtin.php
6074
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Builtin.php
6016
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/IUserProvided.php
6075
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/IUserProvided.php
6076
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/InvalidAuth.php
6017
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/NullMechanism.php
6077
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/NullMechanism.php
6018
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth1/OAuth1.php
6078
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth1/OAuth1.php
6019
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth2/OAuth2.php
6079
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth2/OAuth2.php
Lines 6028-6036 Link Here
6028
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/AmazonS3.php
6088
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/AmazonS3.php
6029
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Backend.php
6089
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Backend.php
6030
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/DAV.php
6090
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/DAV.php
6031
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Dropbox.php
6032
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/FTP.php
6091
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/FTP.php
6033
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Google.php
6092
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/InvalidBackend.php
6034
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/LegacyBackend.php
6093
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/LegacyBackend.php
6035
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Local.php
6094
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Local.php
6036
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/OwnCloud.php
6095
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/OwnCloud.php
Lines 6053-6061 Link Here
6053
%%WWWDIR%%/apps/files_external/lib/Lib/PriorityTrait.php
6112
%%WWWDIR%%/apps/files_external/lib/Lib/PriorityTrait.php
6054
%%WWWDIR%%/apps/files_external/lib/Lib/SessionStorageWrapper.php
6113
%%WWWDIR%%/apps/files_external/lib/Lib/SessionStorageWrapper.php
6055
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/AmazonS3.php
6114
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/AmazonS3.php
6056
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/Dropbox.php
6057
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/FTP.php
6115
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/FTP.php
6058
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/Google.php
6059
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/OwnCloud.php
6116
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/OwnCloud.php
6060
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SFTP.php
6117
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SFTP.php
6061
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SMB.php
6118
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SMB.php
Lines 6078-6087 Link Here
6078
%%WWWDIR%%/apps/files_external/lib/Service/UserStoragesService.php
6135
%%WWWDIR%%/apps/files_external/lib/Service/UserStoragesService.php
6079
%%WWWDIR%%/apps/files_external/lib/Service/UserTrait.php
6136
%%WWWDIR%%/apps/files_external/lib/Service/UserTrait.php
6080
%%WWWDIR%%/apps/files_external/lib/Settings/Admin.php
6137
%%WWWDIR%%/apps/files_external/lib/Settings/Admin.php
6138
%%WWWDIR%%/apps/files_external/lib/Settings/Personal.php
6139
%%WWWDIR%%/apps/files_external/lib/Settings/PersonalSection.php
6081
%%WWWDIR%%/apps/files_external/lib/Settings/Section.php
6140
%%WWWDIR%%/apps/files_external/lib/Settings/Section.php
6082
%%WWWDIR%%/apps/files_external/lib/config.php
6141
%%WWWDIR%%/apps/files_external/lib/config.php
6083
%%WWWDIR%%/apps/files_external/list.php
6142
%%WWWDIR%%/apps/files_external/list.php
6084
%%WWWDIR%%/apps/files_external/personal.php
6085
%%WWWDIR%%/apps/files_external/templates/list.php
6143
%%WWWDIR%%/apps/files_external/templates/list.php
6086
%%WWWDIR%%/apps/files_external/templates/settings.php
6144
%%WWWDIR%%/apps/files_external/templates/settings.php
6087
%%WWWDIR%%/apps/files_pdfviewer/.github/contributing.md
6145
%%WWWDIR%%/apps/files_pdfviewer/.github/contributing.md
Lines 6466-6477 Link Here
6466
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/zu/viewer.properties
6524
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/zu/viewer.properties
6467
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.css
6525
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.css
6468
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.js
6526
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.js
6469
%%WWWDIR%%/apps/files_sharing/ajax/shareinfo.php
6470
%%WWWDIR%%/apps/files_sharing/appinfo/app.php
6527
%%WWWDIR%%/apps/files_sharing/appinfo/app.php
6471
%%WWWDIR%%/apps/files_sharing/appinfo/database.xml
6528
%%WWWDIR%%/apps/files_sharing/appinfo/database.xml
6472
%%WWWDIR%%/apps/files_sharing/appinfo/info.xml
6529
%%WWWDIR%%/apps/files_sharing/appinfo/info.xml
6473
%%WWWDIR%%/apps/files_sharing/appinfo/routes.php
6530
%%WWWDIR%%/apps/files_sharing/appinfo/routes.php
6474
%%WWWDIR%%/apps/files_sharing/appinfo/signature.json
6531
%%WWWDIR%%/apps/files_sharing/appinfo/signature.json
6532
%%WWWDIR%%/apps/files_sharing/composer/autoload.php
6533
%%WWWDIR%%/apps/files_sharing/composer/composer.json
6534
%%WWWDIR%%/apps/files_sharing/composer/composer/ClassLoader.php
6535
%%WWWDIR%%/apps/files_sharing/composer/composer/LICENSE
6536
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_classmap.php
6537
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_namespaces.php
6538
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_psr4.php
6539
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_real.php
6540
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_static.php
6475
%%WWWDIR%%/apps/files_sharing/css/404.css
6541
%%WWWDIR%%/apps/files_sharing/css/404.css
6476
%%WWWDIR%%/apps/files_sharing/css/authenticate.css
6542
%%WWWDIR%%/apps/files_sharing/css/authenticate.css
6477
%%WWWDIR%%/apps/files_sharing/css/mergedAdditionalStyles.scss
6543
%%WWWDIR%%/apps/files_sharing/css/mergedAdditionalStyles.scss
Lines 6709-6714 Link Here
6709
%%WWWDIR%%/apps/files_sharing/lib/AppInfo/Application.php
6775
%%WWWDIR%%/apps/files_sharing/lib/AppInfo/Application.php
6710
%%WWWDIR%%/apps/files_sharing/lib/Cache.php
6776
%%WWWDIR%%/apps/files_sharing/lib/Cache.php
6711
%%WWWDIR%%/apps/files_sharing/lib/Capabilities.php
6777
%%WWWDIR%%/apps/files_sharing/lib/Capabilities.php
6778
%%WWWDIR%%/apps/files_sharing/lib/Collaboration/ShareRecipientSorter.php
6712
%%WWWDIR%%/apps/files_sharing/lib/Command/CleanupRemoteStorages.php
6779
%%WWWDIR%%/apps/files_sharing/lib/Command/CleanupRemoteStorages.php
6713
%%WWWDIR%%/apps/files_sharing/lib/Controller/ExternalSharesController.php
6780
%%WWWDIR%%/apps/files_sharing/lib/Controller/ExternalSharesController.php
6714
%%WWWDIR%%/apps/files_sharing/lib/Controller/PublicPreviewController.php
6781
%%WWWDIR%%/apps/files_sharing/lib/Controller/PublicPreviewController.php
Lines 6715-6720 Link Here
6715
%%WWWDIR%%/apps/files_sharing/lib/Controller/RemoteController.php
6782
%%WWWDIR%%/apps/files_sharing/lib/Controller/RemoteController.php
6716
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareAPIController.php
6783
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareAPIController.php
6717
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareController.php
6784
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareController.php
6785
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareInfoController.php
6718
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareesAPIController.php
6786
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareesAPIController.php
6719
%%WWWDIR%%/apps/files_sharing/lib/DeleteOrphanedSharesJob.php
6787
%%WWWDIR%%/apps/files_sharing/lib/DeleteOrphanedSharesJob.php
6720
%%WWWDIR%%/apps/files_sharing/lib/Exceptions/BrokenPath.php
6788
%%WWWDIR%%/apps/files_sharing/lib/Exceptions/BrokenPath.php
Lines 6731-6736 Link Here
6731
%%WWWDIR%%/apps/files_sharing/lib/Hooks.php
6799
%%WWWDIR%%/apps/files_sharing/lib/Hooks.php
6732
%%WWWDIR%%/apps/files_sharing/lib/ISharedStorage.php
6800
%%WWWDIR%%/apps/files_sharing/lib/ISharedStorage.php
6733
%%WWWDIR%%/apps/files_sharing/lib/Middleware/OCSShareAPIMiddleware.php
6801
%%WWWDIR%%/apps/files_sharing/lib/Middleware/OCSShareAPIMiddleware.php
6802
%%WWWDIR%%/apps/files_sharing/lib/Middleware/ShareInfoMiddleware.php
6734
%%WWWDIR%%/apps/files_sharing/lib/Middleware/SharingCheckMiddleware.php
6803
%%WWWDIR%%/apps/files_sharing/lib/Middleware/SharingCheckMiddleware.php
6735
%%WWWDIR%%/apps/files_sharing/lib/Migration/OwncloudGuestShareType.php
6804
%%WWWDIR%%/apps/files_sharing/lib/Migration/OwncloudGuestShareType.php
6736
%%WWWDIR%%/apps/files_sharing/lib/Migration/SetPasswordColumn.php
6805
%%WWWDIR%%/apps/files_sharing/lib/Migration/SetPasswordColumn.php
Lines 6750-6760 Link Here
6750
%%WWWDIR%%/apps/files_texteditor/.github/contributing.md
6819
%%WWWDIR%%/apps/files_texteditor/.github/contributing.md
6751
%%WWWDIR%%/apps/files_texteditor/.github/issue_template.md
6820
%%WWWDIR%%/apps/files_texteditor/.github/issue_template.md
6752
%%WWWDIR%%/apps/files_texteditor/appinfo/app.php
6821
%%WWWDIR%%/apps/files_texteditor/appinfo/app.php
6753
%%WWWDIR%%/apps/files_texteditor/appinfo/application.php
6754
%%WWWDIR%%/apps/files_texteditor/appinfo/info.xml
6822
%%WWWDIR%%/apps/files_texteditor/appinfo/info.xml
6755
%%WWWDIR%%/apps/files_texteditor/appinfo/routes.php
6823
%%WWWDIR%%/apps/files_texteditor/appinfo/routes.php
6756
%%WWWDIR%%/apps/files_texteditor/appinfo/signature.json
6824
%%WWWDIR%%/apps/files_texteditor/appinfo/signature.json
6757
%%WWWDIR%%/apps/files_texteditor/controller/filehandlingcontroller.php
6758
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.eot
6825
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.eot
6759
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg
6826
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg
6760
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf
6827
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf
Lines 6763-6768 Link Here
6763
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/stylesheet.scss
6830
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/stylesheet.scss
6764
%%WWWDIR%%/apps/files_texteditor/css/merged.scss
6831
%%WWWDIR%%/apps/files_texteditor/css/merged.scss
6765
%%WWWDIR%%/apps/files_texteditor/css/mobile.scss
6832
%%WWWDIR%%/apps/files_texteditor/css/mobile.scss
6833
%%WWWDIR%%/apps/files_texteditor/css/public-share.css
6766
%%WWWDIR%%/apps/files_texteditor/css/style.scss
6834
%%WWWDIR%%/apps/files_texteditor/css/style.scss
6767
%%WWWDIR%%/apps/files_texteditor/img/app.png
6835
%%WWWDIR%%/apps/files_texteditor/img/app.png
6768
%%WWWDIR%%/apps/files_texteditor/img/app.svg
6836
%%WWWDIR%%/apps/files_texteditor/img/app.svg
Lines 6787-6792 Link Here
6787
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-assembly_x86.js
6855
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-assembly_x86.js
6788
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-autohotkey.js
6856
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-autohotkey.js
6789
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-batchfile.js
6857
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-batchfile.js
6858
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-bro.js
6790
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c9search.js
6859
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c9search.js
6791
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c_cpp.js
6860
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-c_cpp.js
6792
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cirru.js
6861
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-cirru.js
Lines 6818-6823 Link Here
6818
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-glsl.js
6887
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-glsl.js
6819
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gobstones.js
6888
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-gobstones.js
6820
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-golang.js
6889
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-golang.js
6890
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-graphqlschema.js
6821
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-groovy.js
6891
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-groovy.js
6822
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haml.js
6892
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haml.js
6823
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-handlebars.js
6893
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-handlebars.js
Lines 6824-6829 Link Here
6824
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell.js
6894
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell.js
6825
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell_cabal.js
6895
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haskell_cabal.js
6826
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haxe.js
6896
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haxe.js
6897
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-hjson.js
6827
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html.js
6898
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html.js
6828
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_elixir.js
6899
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_elixir.js
6829
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_ruby.js
6900
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-html_ruby.js
Lines 6870-6875 Link Here
6870
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-perl.js
6941
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-perl.js
6871
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pgsql.js
6942
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pgsql.js
6872
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-php.js
6943
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-php.js
6944
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-pig.js
6873
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-plain_text.js
6945
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-plain_text.js
6874
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-powershell.js
6946
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-powershell.js
6875
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-praat.js
6947
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-praat.js
Lines 6895-6900 Link Here
6895
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-snippets.js
6967
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-snippets.js
6896
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-soy_template.js
6968
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-soy_template.js
6897
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-space.js
6969
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-space.js
6970
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sparql.js
6898
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sql.js
6971
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sql.js
6899
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sqlserver.js
6972
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-sqlserver.js
6900
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-stylus.js
6973
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-stylus.js
Lines 6907-6912 Link Here
6907
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-textile.js
6980
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-textile.js
6908
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-toml.js
6981
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-toml.js
6909
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tsx.js
6982
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tsx.js
6983
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-turtle.js
6910
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-twig.js
6984
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-twig.js
6911
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-typescript.js
6985
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-typescript.js
6912
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vala.js
6986
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-vala.js
Lines 6928-6933 Link Here
6928
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/assembly_x86.js
7002
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/assembly_x86.js
6929
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/autohotkey.js
7003
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/autohotkey.js
6930
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/batchfile.js
7004
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/batchfile.js
7005
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/bro.js
6931
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c9search.js
7006
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c9search.js
6932
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c_cpp.js
7007
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/c_cpp.js
6933
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cirru.js
7008
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/cirru.js
Lines 6959-6964 Link Here
6959
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/glsl.js
7034
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/glsl.js
6960
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gobstones.js
7035
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/gobstones.js
6961
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/golang.js
7036
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/golang.js
7037
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/graphqlschema.js
6962
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/groovy.js
7038
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/groovy.js
6963
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haml.js
7039
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haml.js
6964
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/handlebars.js
7040
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/handlebars.js
Lines 6965-6970 Link Here
6965
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell.js
7041
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell.js
6966
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell_cabal.js
7042
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haskell_cabal.js
6967
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haxe.js
7043
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haxe.js
7044
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/hjson.js
6968
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html.js
7045
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html.js
6969
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_elixir.js
7046
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_elixir.js
6970
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_ruby.js
7047
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/html_ruby.js
Lines 7010-7015 Link Here
7010
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/perl.js
7087
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/perl.js
7011
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pgsql.js
7088
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pgsql.js
7012
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/php.js
7089
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/php.js
7090
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/pig.js
7013
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/plain_text.js
7091
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/plain_text.js
7014
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/powershell.js
7092
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/powershell.js
7015
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/praat.js
7093
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/praat.js
Lines 7035-7040 Link Here
7035
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/snippets.js
7113
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/snippets.js
7036
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/soy_template.js
7114
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/soy_template.js
7037
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/space.js
7115
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/space.js
7116
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sparql.js
7038
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sql.js
7117
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sql.js
7039
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sqlserver.js
7118
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/sqlserver.js
7040
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/stylus.js
7119
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/stylus.js
Lines 7047-7052 Link Here
7047
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/textile.js
7126
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/textile.js
7048
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/toml.js
7127
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/toml.js
7049
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tsx.js
7128
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tsx.js
7129
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/turtle.js
7050
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/twig.js
7130
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/twig.js
7051
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/typescript.js
7131
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/typescript.js
7052
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vala.js
7132
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/vala.js
Lines 7070-7075 Link Here
7070
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xquery.js
7150
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xquery.js
7071
%%WWWDIR%%/apps/files_texteditor/js/editor.js
7151
%%WWWDIR%%/apps/files_texteditor/js/editor.js
7072
%%WWWDIR%%/apps/files_texteditor/js/merged.json
7152
%%WWWDIR%%/apps/files_texteditor/js/merged.json
7153
%%WWWDIR%%/apps/files_texteditor/js/public-share.js
7073
%%WWWDIR%%/apps/files_texteditor/js/sidebarpreview.js
7154
%%WWWDIR%%/apps/files_texteditor/js/sidebarpreview.js
7074
%%WWWDIR%%/apps/files_texteditor/l10n/.gitkeep
7155
%%WWWDIR%%/apps/files_texteditor/l10n/.gitkeep
7075
%%WWWDIR%%/apps/files_texteditor/l10n/.tx/config
7156
%%WWWDIR%%/apps/files_texteditor/l10n/.tx/config
Lines 7080-7087 Link Here
7080
%%WWWDIR%%/apps/files_texteditor/l10n/az.json
7161
%%WWWDIR%%/apps/files_texteditor/l10n/az.json
7081
%%WWWDIR%%/apps/files_texteditor/l10n/bg.js
7162
%%WWWDIR%%/apps/files_texteditor/l10n/bg.js
7082
%%WWWDIR%%/apps/files_texteditor/l10n/bg.json
7163
%%WWWDIR%%/apps/files_texteditor/l10n/bg.json
7083
%%WWWDIR%%/apps/files_texteditor/l10n/bg_BG.js
7084
%%WWWDIR%%/apps/files_texteditor/l10n/bg_BG.json
7085
%%WWWDIR%%/apps/files_texteditor/l10n/bn_BD.php
7164
%%WWWDIR%%/apps/files_texteditor/l10n/bn_BD.php
7086
%%WWWDIR%%/apps/files_texteditor/l10n/bs.php
7165
%%WWWDIR%%/apps/files_texteditor/l10n/bs.php
7087
%%WWWDIR%%/apps/files_texteditor/l10n/ca.js
7166
%%WWWDIR%%/apps/files_texteditor/l10n/ca.js
Lines 7088-7095 Link Here
7088
%%WWWDIR%%/apps/files_texteditor/l10n/ca.json
7167
%%WWWDIR%%/apps/files_texteditor/l10n/ca.json
7089
%%WWWDIR%%/apps/files_texteditor/l10n/cs.js
7168
%%WWWDIR%%/apps/files_texteditor/l10n/cs.js
7090
%%WWWDIR%%/apps/files_texteditor/l10n/cs.json
7169
%%WWWDIR%%/apps/files_texteditor/l10n/cs.json
7091
%%WWWDIR%%/apps/files_texteditor/l10n/cs_CZ.js
7092
%%WWWDIR%%/apps/files_texteditor/l10n/cs_CZ.json
7093
%%WWWDIR%%/apps/files_texteditor/l10n/cy_GB.php
7170
%%WWWDIR%%/apps/files_texteditor/l10n/cy_GB.php
7094
%%WWWDIR%%/apps/files_texteditor/l10n/da.js
7171
%%WWWDIR%%/apps/files_texteditor/l10n/da.js
7095
%%WWWDIR%%/apps/files_texteditor/l10n/da.json
7172
%%WWWDIR%%/apps/files_texteditor/l10n/da.json
Lines 7147-7158 Link Here
7147
%%WWWDIR%%/apps/files_texteditor/l10n/fa.json
7224
%%WWWDIR%%/apps/files_texteditor/l10n/fa.json
7148
%%WWWDIR%%/apps/files_texteditor/l10n/fi.js
7225
%%WWWDIR%%/apps/files_texteditor/l10n/fi.js
7149
%%WWWDIR%%/apps/files_texteditor/l10n/fi.json
7226
%%WWWDIR%%/apps/files_texteditor/l10n/fi.json
7150
%%WWWDIR%%/apps/files_texteditor/l10n/fi_FI.js
7151
%%WWWDIR%%/apps/files_texteditor/l10n/fi_FI.json
7152
%%WWWDIR%%/apps/files_texteditor/l10n/fr.js
7227
%%WWWDIR%%/apps/files_texteditor/l10n/fr.js
7153
%%WWWDIR%%/apps/files_texteditor/l10n/fr.json
7228
%%WWWDIR%%/apps/files_texteditor/l10n/fr.json
7154
%%WWWDIR%%/apps/files_texteditor/l10n/gl.js
7155
%%WWWDIR%%/apps/files_texteditor/l10n/gl.json
7156
%%WWWDIR%%/apps/files_texteditor/l10n/he.js
7229
%%WWWDIR%%/apps/files_texteditor/l10n/he.js
7157
%%WWWDIR%%/apps/files_texteditor/l10n/he.json
7230
%%WWWDIR%%/apps/files_texteditor/l10n/he.json
7158
%%WWWDIR%%/apps/files_texteditor/l10n/hi.php
7231
%%WWWDIR%%/apps/files_texteditor/l10n/hi.php
Lines 7159-7166 Link Here
7159
%%WWWDIR%%/apps/files_texteditor/l10n/hr.php
7232
%%WWWDIR%%/apps/files_texteditor/l10n/hr.php
7160
%%WWWDIR%%/apps/files_texteditor/l10n/hu.js
7233
%%WWWDIR%%/apps/files_texteditor/l10n/hu.js
7161
%%WWWDIR%%/apps/files_texteditor/l10n/hu.json
7234
%%WWWDIR%%/apps/files_texteditor/l10n/hu.json
7162
%%WWWDIR%%/apps/files_texteditor/l10n/hu_HU.js
7163
%%WWWDIR%%/apps/files_texteditor/l10n/hu_HU.json
7164
%%WWWDIR%%/apps/files_texteditor/l10n/hy.js
7235
%%WWWDIR%%/apps/files_texteditor/l10n/hy.js
7165
%%WWWDIR%%/apps/files_texteditor/l10n/hy.json
7236
%%WWWDIR%%/apps/files_texteditor/l10n/hy.json
7166
%%WWWDIR%%/apps/files_texteditor/l10n/ia.php
7237
%%WWWDIR%%/apps/files_texteditor/l10n/ia.php
Lines 7186-7193 Link Here
7186
%%WWWDIR%%/apps/files_texteditor/l10n/ms_MY.php
7257
%%WWWDIR%%/apps/files_texteditor/l10n/ms_MY.php
7187
%%WWWDIR%%/apps/files_texteditor/l10n/nb.js
7258
%%WWWDIR%%/apps/files_texteditor/l10n/nb.js
7188
%%WWWDIR%%/apps/files_texteditor/l10n/nb.json
7259
%%WWWDIR%%/apps/files_texteditor/l10n/nb.json
7189
%%WWWDIR%%/apps/files_texteditor/l10n/nb_NO.js
7190
%%WWWDIR%%/apps/files_texteditor/l10n/nb_NO.json
7191
%%WWWDIR%%/apps/files_texteditor/l10n/nl.js
7260
%%WWWDIR%%/apps/files_texteditor/l10n/nl.js
7192
%%WWWDIR%%/apps/files_texteditor/l10n/nl.json
7261
%%WWWDIR%%/apps/files_texteditor/l10n/nl.json
7193
%%WWWDIR%%/apps/files_texteditor/l10n/nn_NO.js
7262
%%WWWDIR%%/apps/files_texteditor/l10n/nn_NO.js
Lines 7208-7215 Link Here
7208
%%WWWDIR%%/apps/files_texteditor/l10n/si_LK.php
7277
%%WWWDIR%%/apps/files_texteditor/l10n/si_LK.php
7209
%%WWWDIR%%/apps/files_texteditor/l10n/sk.js
7278
%%WWWDIR%%/apps/files_texteditor/l10n/sk.js
7210
%%WWWDIR%%/apps/files_texteditor/l10n/sk.json
7279
%%WWWDIR%%/apps/files_texteditor/l10n/sk.json
7211
%%WWWDIR%%/apps/files_texteditor/l10n/sk_SK.js
7212
%%WWWDIR%%/apps/files_texteditor/l10n/sk_SK.json
7213
%%WWWDIR%%/apps/files_texteditor/l10n/sl.js
7280
%%WWWDIR%%/apps/files_texteditor/l10n/sl.js
7214
%%WWWDIR%%/apps/files_texteditor/l10n/sl.json
7281
%%WWWDIR%%/apps/files_texteditor/l10n/sl.json
7215
%%WWWDIR%%/apps/files_texteditor/l10n/sq.js
7282
%%WWWDIR%%/apps/files_texteditor/l10n/sq.js
Lines 7216-7223 Link Here
7216
%%WWWDIR%%/apps/files_texteditor/l10n/sq.json
7283
%%WWWDIR%%/apps/files_texteditor/l10n/sq.json
7217
%%WWWDIR%%/apps/files_texteditor/l10n/sr.js
7284
%%WWWDIR%%/apps/files_texteditor/l10n/sr.js
7218
%%WWWDIR%%/apps/files_texteditor/l10n/sr.json
7285
%%WWWDIR%%/apps/files_texteditor/l10n/sr.json
7219
%%WWWDIR%%/apps/files_texteditor/l10n/sr@latin.js
7220
%%WWWDIR%%/apps/files_texteditor/l10n/sr@latin.json
7221
%%WWWDIR%%/apps/files_texteditor/l10n/sv.js
7286
%%WWWDIR%%/apps/files_texteditor/l10n/sv.js
7222
%%WWWDIR%%/apps/files_texteditor/l10n/sv.json
7287
%%WWWDIR%%/apps/files_texteditor/l10n/sv.json
7223
%%WWWDIR%%/apps/files_texteditor/l10n/ta_LK.php
7288
%%WWWDIR%%/apps/files_texteditor/l10n/ta_LK.php
Lines 7224-7238 Link Here
7224
%%WWWDIR%%/apps/files_texteditor/l10n/te.php
7289
%%WWWDIR%%/apps/files_texteditor/l10n/te.php
7225
%%WWWDIR%%/apps/files_texteditor/l10n/th.js
7290
%%WWWDIR%%/apps/files_texteditor/l10n/th.js
7226
%%WWWDIR%%/apps/files_texteditor/l10n/th.json
7291
%%WWWDIR%%/apps/files_texteditor/l10n/th.json
7227
%%WWWDIR%%/apps/files_texteditor/l10n/th_TH.js
7228
%%WWWDIR%%/apps/files_texteditor/l10n/th_TH.json
7229
%%WWWDIR%%/apps/files_texteditor/l10n/tr.js
7292
%%WWWDIR%%/apps/files_texteditor/l10n/tr.js
7230
%%WWWDIR%%/apps/files_texteditor/l10n/tr.json
7293
%%WWWDIR%%/apps/files_texteditor/l10n/tr.json
7231
%%WWWDIR%%/apps/files_texteditor/l10n/ug.php
7294
%%WWWDIR%%/apps/files_texteditor/l10n/ug.php
7232
%%WWWDIR%%/apps/files_texteditor/l10n/uk.js
7295
%%WWWDIR%%/apps/files_texteditor/l10n/uk.js
7233
%%WWWDIR%%/apps/files_texteditor/l10n/uk.json
7296
%%WWWDIR%%/apps/files_texteditor/l10n/uk.json
7234
%%WWWDIR%%/apps/files_texteditor/l10n/vi.js
7235
%%WWWDIR%%/apps/files_texteditor/l10n/vi.json
7236
%%WWWDIR%%/apps/files_texteditor/l10n/vi.php
7297
%%WWWDIR%%/apps/files_texteditor/l10n/vi.php
7237
%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.js
7298
%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.js
7238
%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.json
7299
%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.json
Lines 7239-7244 Link Here
7239
%%WWWDIR%%/apps/files_texteditor/l10n/zh_HK.php
7300
%%WWWDIR%%/apps/files_texteditor/l10n/zh_HK.php
7240
%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.js
7301
%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.js
7241
%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.json
7302
%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.json
7303
%%WWWDIR%%/apps/files_texteditor/lib/Controller/FileHandlingController.php
7242
%%WWWDIR%%/apps/files_trashbin/ajax/delete.php
7304
%%WWWDIR%%/apps/files_trashbin/ajax/delete.php
7243
%%WWWDIR%%/apps/files_trashbin/ajax/isEmpty.php
7305
%%WWWDIR%%/apps/files_trashbin/ajax/isEmpty.php
7244
%%WWWDIR%%/apps/files_trashbin/ajax/list.php
7306
%%WWWDIR%%/apps/files_trashbin/ajax/list.php
Lines 7248-7254 Link Here
7248
%%WWWDIR%%/apps/files_trashbin/appinfo/info.xml
7310
%%WWWDIR%%/apps/files_trashbin/appinfo/info.xml
7249
%%WWWDIR%%/apps/files_trashbin/appinfo/routes.php
7311
%%WWWDIR%%/apps/files_trashbin/appinfo/routes.php
7250
%%WWWDIR%%/apps/files_trashbin/appinfo/signature.json
7312
%%WWWDIR%%/apps/files_trashbin/appinfo/signature.json
7251
%%WWWDIR%%/apps/files_trashbin/css/trash.css
7313
%%WWWDIR%%/apps/files_trashbin/composer/autoload.php
7314
%%WWWDIR%%/apps/files_trashbin/composer/composer.json
7315
%%WWWDIR%%/apps/files_trashbin/composer/composer/ClassLoader.php
7316
%%WWWDIR%%/apps/files_trashbin/composer/composer/LICENSE
7317
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_classmap.php
7318
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_namespaces.php
7319
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_psr4.php
7320
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_real.php
7321
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_static.php
7322
%%WWWDIR%%/apps/files_trashbin/css/trash.scss
7252
%%WWWDIR%%/apps/files_trashbin/img/app.svg
7323
%%WWWDIR%%/apps/files_trashbin/img/app.svg
7253
%%WWWDIR%%/apps/files_trashbin/js/app.js
7324
%%WWWDIR%%/apps/files_trashbin/js/app.js
7254
%%WWWDIR%%/apps/files_trashbin/js/filelist.js
7325
%%WWWDIR%%/apps/files_trashbin/js/filelist.js
Lines 7460-7465 Link Here
7460
%%WWWDIR%%/apps/files_trashbin/lib/Command/Expire.php
7531
%%WWWDIR%%/apps/files_trashbin/lib/Command/Expire.php
7461
%%WWWDIR%%/apps/files_trashbin/lib/Command/ExpireTrash.php
7532
%%WWWDIR%%/apps/files_trashbin/lib/Command/ExpireTrash.php
7462
%%WWWDIR%%/apps/files_trashbin/lib/Controller/PreviewController.php
7533
%%WWWDIR%%/apps/files_trashbin/lib/Controller/PreviewController.php
7534
%%WWWDIR%%/apps/files_trashbin/lib/Events/MoveToTrashEvent.php
7463
%%WWWDIR%%/apps/files_trashbin/lib/Exceptions/CopyRecursiveException.php
7535
%%WWWDIR%%/apps/files_trashbin/lib/Exceptions/CopyRecursiveException.php
7464
%%WWWDIR%%/apps/files_trashbin/lib/Expiration.php
7536
%%WWWDIR%%/apps/files_trashbin/lib/Expiration.php
7465
%%WWWDIR%%/apps/files_trashbin/lib/Helper.php
7537
%%WWWDIR%%/apps/files_trashbin/lib/Helper.php
Lines 7474-7479 Link Here
7474
%%WWWDIR%%/apps/files_versions/appinfo/info.xml
7546
%%WWWDIR%%/apps/files_versions/appinfo/info.xml
7475
%%WWWDIR%%/apps/files_versions/appinfo/routes.php
7547
%%WWWDIR%%/apps/files_versions/appinfo/routes.php
7476
%%WWWDIR%%/apps/files_versions/appinfo/signature.json
7548
%%WWWDIR%%/apps/files_versions/appinfo/signature.json
7549
%%WWWDIR%%/apps/files_versions/composer/autoload.php
7550
%%WWWDIR%%/apps/files_versions/composer/composer.json
7551
%%WWWDIR%%/apps/files_versions/composer/composer/ClassLoader.php
7552
%%WWWDIR%%/apps/files_versions/composer/composer/LICENSE
7553
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_classmap.php
7554
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_namespaces.php
7555
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_psr4.php
7556
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_real.php
7557
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_static.php
7477
%%WWWDIR%%/apps/files_versions/css/versions.css
7558
%%WWWDIR%%/apps/files_versions/css/versions.css
7478
%%WWWDIR%%/apps/files_versions/download.php
7559
%%WWWDIR%%/apps/files_versions/download.php
7479
%%WWWDIR%%/apps/files_versions/img/app.svg
7560
%%WWWDIR%%/apps/files_versions/img/app.svg
Lines 7674-7679 Link Here
7674
%%WWWDIR%%/apps/files_versions/lib/Command/Expire.php
7755
%%WWWDIR%%/apps/files_versions/lib/Command/Expire.php
7675
%%WWWDIR%%/apps/files_versions/lib/Command/ExpireVersions.php
7756
%%WWWDIR%%/apps/files_versions/lib/Command/ExpireVersions.php
7676
%%WWWDIR%%/apps/files_versions/lib/Controller/PreviewController.php
7757
%%WWWDIR%%/apps/files_versions/lib/Controller/PreviewController.php
7758
%%WWWDIR%%/apps/files_versions/lib/Events/CreateVersionEvent.php
7677
%%WWWDIR%%/apps/files_versions/lib/Expiration.php
7759
%%WWWDIR%%/apps/files_versions/lib/Expiration.php
7678
%%WWWDIR%%/apps/files_versions/lib/Hooks.php
7760
%%WWWDIR%%/apps/files_versions/lib/Hooks.php
7679
%%WWWDIR%%/apps/files_versions/lib/Storage.php
7761
%%WWWDIR%%/apps/files_versions/lib/Storage.php
Lines 7737-7744 Link Here
7737
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.js
7819
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.js
7738
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.json
7820
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.json
7739
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_IN.php
7821
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_IN.php
7740
%%WWWDIR%%/apps/firstrunwizard/l10n/bs.js
7741
%%WWWDIR%%/apps/firstrunwizard/l10n/bs.json
7742
%%WWWDIR%%/apps/firstrunwizard/l10n/ca.js
7822
%%WWWDIR%%/apps/firstrunwizard/l10n/ca.js
7743
%%WWWDIR%%/apps/firstrunwizard/l10n/ca.json
7823
%%WWWDIR%%/apps/firstrunwizard/l10n/ca.json
7744
%%WWWDIR%%/apps/firstrunwizard/l10n/cs.js
7824
%%WWWDIR%%/apps/firstrunwizard/l10n/cs.js
Lines 7801-7808 Link Here
7801
%%WWWDIR%%/apps/firstrunwizard/l10n/fi.json
7881
%%WWWDIR%%/apps/firstrunwizard/l10n/fi.json
7802
%%WWWDIR%%/apps/firstrunwizard/l10n/fr.js
7882
%%WWWDIR%%/apps/firstrunwizard/l10n/fr.js
7803
%%WWWDIR%%/apps/firstrunwizard/l10n/fr.json
7883
%%WWWDIR%%/apps/firstrunwizard/l10n/fr.json
7804
%%WWWDIR%%/apps/firstrunwizard/l10n/gl.js
7805
%%WWWDIR%%/apps/firstrunwizard/l10n/gl.json
7806
%%WWWDIR%%/apps/firstrunwizard/l10n/he.js
7884
%%WWWDIR%%/apps/firstrunwizard/l10n/he.js
7807
%%WWWDIR%%/apps/firstrunwizard/l10n/he.json
7885
%%WWWDIR%%/apps/firstrunwizard/l10n/he.json
7808
%%WWWDIR%%/apps/firstrunwizard/l10n/hr.js
7886
%%WWWDIR%%/apps/firstrunwizard/l10n/hr.js
Lines 7825-7845 Link Here
7825
%%WWWDIR%%/apps/firstrunwizard/l10n/ko.js
7903
%%WWWDIR%%/apps/firstrunwizard/l10n/ko.js
7826
%%WWWDIR%%/apps/firstrunwizard/l10n/ko.json
7904
%%WWWDIR%%/apps/firstrunwizard/l10n/ko.json
7827
%%WWWDIR%%/apps/firstrunwizard/l10n/ku_IQ.php
7905
%%WWWDIR%%/apps/firstrunwizard/l10n/ku_IQ.php
7828
%%WWWDIR%%/apps/firstrunwizard/l10n/lb.js
7829
%%WWWDIR%%/apps/firstrunwizard/l10n/lb.json
7830
%%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.js
7906
%%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.js
7831
%%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.json
7907
%%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.json
7832
%%WWWDIR%%/apps/firstrunwizard/l10n/lv.js
7908
%%WWWDIR%%/apps/firstrunwizard/l10n/lv.js
7833
%%WWWDIR%%/apps/firstrunwizard/l10n/lv.json
7909
%%WWWDIR%%/apps/firstrunwizard/l10n/lv.json
7834
%%WWWDIR%%/apps/firstrunwizard/l10n/mk.js
7835
%%WWWDIR%%/apps/firstrunwizard/l10n/mk.json
7836
%%WWWDIR%%/apps/firstrunwizard/l10n/ms_MY.php
7910
%%WWWDIR%%/apps/firstrunwizard/l10n/ms_MY.php
7837
%%WWWDIR%%/apps/firstrunwizard/l10n/nb.js
7911
%%WWWDIR%%/apps/firstrunwizard/l10n/nb.js
7838
%%WWWDIR%%/apps/firstrunwizard/l10n/nb.json
7912
%%WWWDIR%%/apps/firstrunwizard/l10n/nb.json
7839
%%WWWDIR%%/apps/firstrunwizard/l10n/nl.js
7913
%%WWWDIR%%/apps/firstrunwizard/l10n/nl.js
7840
%%WWWDIR%%/apps/firstrunwizard/l10n/nl.json
7914
%%WWWDIR%%/apps/firstrunwizard/l10n/nl.json
7841
%%WWWDIR%%/apps/firstrunwizard/l10n/nn_NO.js
7842
%%WWWDIR%%/apps/firstrunwizard/l10n/nn_NO.json
7843
%%WWWDIR%%/apps/firstrunwizard/l10n/oc.js
7915
%%WWWDIR%%/apps/firstrunwizard/l10n/oc.js
7844
%%WWWDIR%%/apps/firstrunwizard/l10n/oc.json
7916
%%WWWDIR%%/apps/firstrunwizard/l10n/oc.json
7845
%%WWWDIR%%/apps/firstrunwizard/l10n/pl.js
7917
%%WWWDIR%%/apps/firstrunwizard/l10n/pl.js
Lines 7872-7879 Link Here
7872
%%WWWDIR%%/apps/firstrunwizard/l10n/ug.php
7944
%%WWWDIR%%/apps/firstrunwizard/l10n/ug.php
7873
%%WWWDIR%%/apps/firstrunwizard/l10n/uk.js
7945
%%WWWDIR%%/apps/firstrunwizard/l10n/uk.js
7874
%%WWWDIR%%/apps/firstrunwizard/l10n/uk.json
7946
%%WWWDIR%%/apps/firstrunwizard/l10n/uk.json
7875
%%WWWDIR%%/apps/firstrunwizard/l10n/vi.js
7876
%%WWWDIR%%/apps/firstrunwizard/l10n/vi.json
7877
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.js
7947
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.js
7878
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.json
7948
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.json
7879
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_HK.php
7949
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_HK.php
Lines 7883-7888 Link Here
7883
%%WWWDIR%%/apps/firstrunwizard/lib/Controller/WizardController.php
7953
%%WWWDIR%%/apps/firstrunwizard/lib/Controller/WizardController.php
7884
%%WWWDIR%%/apps/firstrunwizard/lib/Notification/BackgroundJob.php
7954
%%WWWDIR%%/apps/firstrunwizard/lib/Notification/BackgroundJob.php
7885
%%WWWDIR%%/apps/firstrunwizard/lib/Notification/Notifier.php
7955
%%WWWDIR%%/apps/firstrunwizard/lib/Notification/Notifier.php
7956
%%WWWDIR%%/apps/firstrunwizard/lib/Settings/Personal.php
7957
%%WWWDIR%%/apps/firstrunwizard/templates/personal-settings.php
7886
%%WWWDIR%%/apps/firstrunwizard/templates/wizard.php
7958
%%WWWDIR%%/apps/firstrunwizard/templates/wizard.php
7887
%%WWWDIR%%/apps/gallery/.github/issue_template.md
7959
%%WWWDIR%%/apps/gallery/.github/issue_template.md
7888
%%WWWDIR%%/apps/gallery/.github/pull_request_template.md
7960
%%WWWDIR%%/apps/gallery/.github/pull_request_template.md
Lines 7918-7930 Link Here
7918
%%WWWDIR%%/apps/gallery/img/app.svg
7990
%%WWWDIR%%/apps/gallery/img/app.svg
7919
%%WWWDIR%%/apps/gallery/img/dateasc.svg
7991
%%WWWDIR%%/apps/gallery/img/dateasc.svg
7920
%%WWWDIR%%/apps/gallery/img/datedes.svg
7992
%%WWWDIR%%/apps/gallery/img/datedes.svg
7921
%%WWWDIR%%/apps/gallery/img/folder.svg
7922
%%WWWDIR%%/apps/gallery/img/gallery-dark.svg
7993
%%WWWDIR%%/apps/gallery/img/gallery-dark.svg
7923
%%WWWDIR%%/apps/gallery/img/nameasc.svg
7994
%%WWWDIR%%/apps/gallery/img/nameasc.svg
7924
%%WWWDIR%%/apps/gallery/img/namedes.svg
7995
%%WWWDIR%%/apps/gallery/img/namedes.svg
7925
%%WWWDIR%%/apps/gallery/img/share-white.svg
7926
%%WWWDIR%%/apps/gallery/img/toggle.svg
7927
%%WWWDIR%%/apps/gallery/img/view-delete.svg
7928
%%WWWDIR%%/apps/gallery/js/.bowerrc
7996
%%WWWDIR%%/apps/gallery/js/.bowerrc
7929
%%WWWDIR%%/apps/gallery/js/.jshintrc
7997
%%WWWDIR%%/apps/gallery/js/.jshintrc
7930
%%WWWDIR%%/apps/gallery/js/app.js
7998
%%WWWDIR%%/apps/gallery/js/app.js
Lines 8050-8057 Link Here
8050
%%WWWDIR%%/apps/gallery/l10n/fi.json
8118
%%WWWDIR%%/apps/gallery/l10n/fi.json
8051
%%WWWDIR%%/apps/gallery/l10n/fr.js
8119
%%WWWDIR%%/apps/gallery/l10n/fr.js
8052
%%WWWDIR%%/apps/gallery/l10n/fr.json
8120
%%WWWDIR%%/apps/gallery/l10n/fr.json
8053
%%WWWDIR%%/apps/gallery/l10n/gl.js
8054
%%WWWDIR%%/apps/gallery/l10n/gl.json
8055
%%WWWDIR%%/apps/gallery/l10n/he.js
8121
%%WWWDIR%%/apps/gallery/l10n/he.js
8056
%%WWWDIR%%/apps/gallery/l10n/he.json
8122
%%WWWDIR%%/apps/gallery/l10n/he.json
8057
%%WWWDIR%%/apps/gallery/l10n/hi.php
8123
%%WWWDIR%%/apps/gallery/l10n/hi.php
Lines 8335-8342 Link Here
8335
%%WWWDIR%%/apps/logreader/l10n/fi.json
8401
%%WWWDIR%%/apps/logreader/l10n/fi.json
8336
%%WWWDIR%%/apps/logreader/l10n/fr.js
8402
%%WWWDIR%%/apps/logreader/l10n/fr.js
8337
%%WWWDIR%%/apps/logreader/l10n/fr.json
8403
%%WWWDIR%%/apps/logreader/l10n/fr.json
8338
%%WWWDIR%%/apps/logreader/l10n/he.js
8339
%%WWWDIR%%/apps/logreader/l10n/he.json
8340
%%WWWDIR%%/apps/logreader/l10n/hu.js
8404
%%WWWDIR%%/apps/logreader/l10n/hu.js
8341
%%WWWDIR%%/apps/logreader/l10n/hu.json
8405
%%WWWDIR%%/apps/logreader/l10n/hu.json
8342
%%WWWDIR%%/apps/logreader/l10n/is.js
8406
%%WWWDIR%%/apps/logreader/l10n/is.js
Lines 8392-8397 Link Here
8392
%%WWWDIR%%/apps/lookup_server_connector/appinfo/app.php
8456
%%WWWDIR%%/apps/lookup_server_connector/appinfo/app.php
8393
%%WWWDIR%%/apps/lookup_server_connector/appinfo/info.xml
8457
%%WWWDIR%%/apps/lookup_server_connector/appinfo/info.xml
8394
%%WWWDIR%%/apps/lookup_server_connector/appinfo/signature.json
8458
%%WWWDIR%%/apps/lookup_server_connector/appinfo/signature.json
8459
%%WWWDIR%%/apps/lookup_server_connector/composer/autoload.php
8460
%%WWWDIR%%/apps/lookup_server_connector/composer/composer.json
8461
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/ClassLoader.php
8462
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/LICENSE
8463
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_classmap.php
8464
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_namespaces.php
8465
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_psr4.php
8466
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_real.php
8467
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_static.php
8395
%%WWWDIR%%/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
8468
%%WWWDIR%%/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
8396
%%WWWDIR%%/apps/lookup_server_connector/lib/UpdateLookupServer.php
8469
%%WWWDIR%%/apps/lookup_server_connector/lib/UpdateLookupServer.php
8397
%%WWWDIR%%/apps/nextcloud_announcements/.gitattributes
8470
%%WWWDIR%%/apps/nextcloud_announcements/.gitattributes
Lines 8686-8691 Link Here
8686
%%WWWDIR%%/apps/oauth2/appinfo/info.xml
8759
%%WWWDIR%%/apps/oauth2/appinfo/info.xml
8687
%%WWWDIR%%/apps/oauth2/appinfo/routes.php
8760
%%WWWDIR%%/apps/oauth2/appinfo/routes.php
8688
%%WWWDIR%%/apps/oauth2/appinfo/signature.json
8761
%%WWWDIR%%/apps/oauth2/appinfo/signature.json
8762
%%WWWDIR%%/apps/oauth2/composer/autoload.php
8763
%%WWWDIR%%/apps/oauth2/composer/composer.json
8764
%%WWWDIR%%/apps/oauth2/composer/composer/ClassLoader.php
8765
%%WWWDIR%%/apps/oauth2/composer/composer/LICENSE
8766
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_classmap.php
8767
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_namespaces.php
8768
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_psr4.php
8769
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_real.php
8770
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_static.php
8689
%%WWWDIR%%/apps/oauth2/css/setting-admin.css
8771
%%WWWDIR%%/apps/oauth2/css/setting-admin.css
8690
%%WWWDIR%%/apps/oauth2/js/setting-admin.js
8772
%%WWWDIR%%/apps/oauth2/js/setting-admin.js
8691
%%WWWDIR%%/apps/oauth2/l10n/.gitkeep
8773
%%WWWDIR%%/apps/oauth2/l10n/.gitkeep
Lines 8741-8746 Link Here
8741
%%WWWDIR%%/apps/oauth2/l10n/es_SV.json
8823
%%WWWDIR%%/apps/oauth2/l10n/es_SV.json
8742
%%WWWDIR%%/apps/oauth2/l10n/es_UY.js
8824
%%WWWDIR%%/apps/oauth2/l10n/es_UY.js
8743
%%WWWDIR%%/apps/oauth2/l10n/es_UY.json
8825
%%WWWDIR%%/apps/oauth2/l10n/es_UY.json
8826
%%WWWDIR%%/apps/oauth2/l10n/et_EE.js
8827
%%WWWDIR%%/apps/oauth2/l10n/et_EE.json
8744
%%WWWDIR%%/apps/oauth2/l10n/eu.js
8828
%%WWWDIR%%/apps/oauth2/l10n/eu.js
8745
%%WWWDIR%%/apps/oauth2/l10n/eu.json
8829
%%WWWDIR%%/apps/oauth2/l10n/eu.json
8746
%%WWWDIR%%/apps/oauth2/l10n/fi.js
8830
%%WWWDIR%%/apps/oauth2/l10n/fi.js
Lines 8747-8752 Link Here
8747
%%WWWDIR%%/apps/oauth2/l10n/fi.json
8831
%%WWWDIR%%/apps/oauth2/l10n/fi.json
8748
%%WWWDIR%%/apps/oauth2/l10n/fr.js
8832
%%WWWDIR%%/apps/oauth2/l10n/fr.js
8749
%%WWWDIR%%/apps/oauth2/l10n/fr.json
8833
%%WWWDIR%%/apps/oauth2/l10n/fr.json
8834
%%WWWDIR%%/apps/oauth2/l10n/gl.js
8835
%%WWWDIR%%/apps/oauth2/l10n/gl.json
8750
%%WWWDIR%%/apps/oauth2/l10n/hu.js
8836
%%WWWDIR%%/apps/oauth2/l10n/hu.js
8751
%%WWWDIR%%/apps/oauth2/l10n/hu.json
8837
%%WWWDIR%%/apps/oauth2/l10n/hu.json
8752
%%WWWDIR%%/apps/oauth2/l10n/id.js
8838
%%WWWDIR%%/apps/oauth2/l10n/id.js
Lines 8969-8974 Link Here
8969
%%WWWDIR%%/apps/provisioning_api/appinfo/info.xml
9055
%%WWWDIR%%/apps/provisioning_api/appinfo/info.xml
8970
%%WWWDIR%%/apps/provisioning_api/appinfo/routes.php
9056
%%WWWDIR%%/apps/provisioning_api/appinfo/routes.php
8971
%%WWWDIR%%/apps/provisioning_api/appinfo/signature.json
9057
%%WWWDIR%%/apps/provisioning_api/appinfo/signature.json
9058
%%WWWDIR%%/apps/provisioning_api/composer/autoload.php
9059
%%WWWDIR%%/apps/provisioning_api/composer/composer.json
9060
%%WWWDIR%%/apps/provisioning_api/composer/composer/ClassLoader.php
9061
%%WWWDIR%%/apps/provisioning_api/composer/composer/LICENSE
9062
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_classmap.php
9063
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_namespaces.php
9064
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_psr4.php
9065
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_real.php
9066
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_static.php
8972
%%WWWDIR%%/apps/provisioning_api/img/app.svg
9067
%%WWWDIR%%/apps/provisioning_api/img/app.svg
8973
%%WWWDIR%%/apps/provisioning_api/lib/AppInfo/Application.php
9068
%%WWWDIR%%/apps/provisioning_api/lib/AppInfo/Application.php
8974
%%WWWDIR%%/apps/provisioning_api/lib/Controller/AppConfigController.php
9069
%%WWWDIR%%/apps/provisioning_api/lib/Controller/AppConfigController.php
Lines 9123-9128 Link Here
9123
%%WWWDIR%%/apps/sharebymail/appinfo/app.php
9218
%%WWWDIR%%/apps/sharebymail/appinfo/app.php
9124
%%WWWDIR%%/apps/sharebymail/appinfo/info.xml
9219
%%WWWDIR%%/apps/sharebymail/appinfo/info.xml
9125
%%WWWDIR%%/apps/sharebymail/appinfo/signature.json
9220
%%WWWDIR%%/apps/sharebymail/appinfo/signature.json
9221
%%WWWDIR%%/apps/sharebymail/composer/autoload.php
9222
%%WWWDIR%%/apps/sharebymail/composer/composer.json
9223
%%WWWDIR%%/apps/sharebymail/composer/composer/ClassLoader.php
9224
%%WWWDIR%%/apps/sharebymail/composer/composer/LICENSE
9225
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_classmap.php
9226
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_namespaces.php
9227
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_psr4.php
9228
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_real.php
9229
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_static.php
9126
%%WWWDIR%%/apps/sharebymail/css/settings-admin.css
9230
%%WWWDIR%%/apps/sharebymail/css/settings-admin.css
9127
%%WWWDIR%%/apps/sharebymail/img/app.svg
9231
%%WWWDIR%%/apps/sharebymail/img/app.svg
9128
%%WWWDIR%%/apps/sharebymail/js/settings-admin.js
9232
%%WWWDIR%%/apps/sharebymail/js/settings-admin.js
Lines 9361-9366 Link Here
9361
%%WWWDIR%%/apps/systemtags/appinfo/info.xml
9465
%%WWWDIR%%/apps/systemtags/appinfo/info.xml
9362
%%WWWDIR%%/apps/systemtags/appinfo/routes.php
9466
%%WWWDIR%%/apps/systemtags/appinfo/routes.php
9363
%%WWWDIR%%/apps/systemtags/appinfo/signature.json
9467
%%WWWDIR%%/apps/systemtags/appinfo/signature.json
9468
%%WWWDIR%%/apps/systemtags/composer/autoload.php
9469
%%WWWDIR%%/apps/systemtags/composer/composer.json
9470
%%WWWDIR%%/apps/systemtags/composer/composer/ClassLoader.php
9471
%%WWWDIR%%/apps/systemtags/composer/composer/LICENSE
9472
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_classmap.php
9473
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_namespaces.php
9474
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_psr4.php
9475
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_real.php
9476
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_static.php
9364
%%WWWDIR%%/apps/systemtags/css/systemtagsfilelist.css
9477
%%WWWDIR%%/apps/systemtags/css/systemtagsfilelist.css
9365
%%WWWDIR%%/apps/systemtags/img/app.svg
9478
%%WWWDIR%%/apps/systemtags/img/app.svg
9366
%%WWWDIR%%/apps/systemtags/img/tag.svg
9479
%%WWWDIR%%/apps/systemtags/img/tag.svg
Lines 9701-9710 Link Here
9701
%%WWWDIR%%/apps/theming/lib/Util.php
9814
%%WWWDIR%%/apps/theming/lib/Util.php
9702
%%WWWDIR%%/apps/theming/templates/settings-admin.php
9815
%%WWWDIR%%/apps/theming/templates/settings-admin.php
9703
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/app.php
9816
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/app.php
9704
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/database.xml
9705
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/info.xml
9817
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/info.xml
9706
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/routes.php
9818
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/routes.php
9707
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/signature.json
9819
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/signature.json
9820
%%WWWDIR%%/apps/twofactor_backupcodes/composer/autoload.php
9821
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer.json
9822
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/ClassLoader.php
9823
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/LICENSE
9824
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php
9825
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_namespaces.php
9826
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_psr4.php
9827
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_real.php
9828
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_static.php
9708
%%WWWDIR%%/apps/twofactor_backupcodes/css/style.css
9829
%%WWWDIR%%/apps/twofactor_backupcodes/css/style.css
9709
%%WWWDIR%%/apps/twofactor_backupcodes/js/settings.js
9830
%%WWWDIR%%/apps/twofactor_backupcodes/js/settings.js
9710
%%WWWDIR%%/apps/twofactor_backupcodes/js/settingsview.js
9831
%%WWWDIR%%/apps/twofactor_backupcodes/js/settingsview.js
Lines 9816-9825 Link Here
9816
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Controller/SettingsController.php
9937
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Controller/SettingsController.php
9817
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCode.php
9938
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCode.php
9818
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php
9939
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php
9819
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/CopyEntriesFromOldTable.php
9940
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php
9941
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php
9942
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php
9943
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php
9820
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php
9944
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php
9821
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php
9945
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php
9822
%%WWWDIR%%/apps/twofactor_backupcodes/settings/personal.php
9946
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Settings/Personal.php
9823
%%WWWDIR%%/apps/twofactor_backupcodes/templates/challenge.php
9947
%%WWWDIR%%/apps/twofactor_backupcodes/templates/challenge.php
9824
%%WWWDIR%%/apps/twofactor_backupcodes/templates/personal.php
9948
%%WWWDIR%%/apps/twofactor_backupcodes/templates/personal.php
9825
%%WWWDIR%%/apps/updatenotification/appinfo/app.php
9949
%%WWWDIR%%/apps/updatenotification/appinfo/app.php
Lines 9826-9831 Link Here
9826
%%WWWDIR%%/apps/updatenotification/appinfo/info.xml
9950
%%WWWDIR%%/apps/updatenotification/appinfo/info.xml
9827
%%WWWDIR%%/apps/updatenotification/appinfo/routes.php
9951
%%WWWDIR%%/apps/updatenotification/appinfo/routes.php
9828
%%WWWDIR%%/apps/updatenotification/appinfo/signature.json
9952
%%WWWDIR%%/apps/updatenotification/appinfo/signature.json
9953
%%WWWDIR%%/apps/updatenotification/composer/autoload.php
9954
%%WWWDIR%%/apps/updatenotification/composer/composer.json
9955
%%WWWDIR%%/apps/updatenotification/composer/composer/ClassLoader.php
9956
%%WWWDIR%%/apps/updatenotification/composer/composer/LICENSE
9957
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_classmap.php
9958
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_namespaces.php
9959
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_psr4.php
9960
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_real.php
9961
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_static.php
9962
%%WWWDIR%%/apps/updatenotification/css/admin.css
9829
%%WWWDIR%%/apps/updatenotification/img/app.svg
9963
%%WWWDIR%%/apps/updatenotification/img/app.svg
9830
%%WWWDIR%%/apps/updatenotification/img/notification.svg
9964
%%WWWDIR%%/apps/updatenotification/img/notification.svg
9831
%%WWWDIR%%/apps/updatenotification/js/admin.js
9965
%%WWWDIR%%/apps/updatenotification/js/admin.js
Lines 10017-10022 Link Here
10017
%%WWWDIR%%/apps/user_ldap/appinfo/routes.php
10151
%%WWWDIR%%/apps/user_ldap/appinfo/routes.php
10018
%%WWWDIR%%/apps/user_ldap/appinfo/signature.json
10152
%%WWWDIR%%/apps/user_ldap/appinfo/signature.json
10019
%%WWWDIR%%/apps/user_ldap/appinfo/update.php
10153
%%WWWDIR%%/apps/user_ldap/appinfo/update.php
10154
%%WWWDIR%%/apps/user_ldap/composer/autoload.php
10155
%%WWWDIR%%/apps/user_ldap/composer/composer.json
10156
%%WWWDIR%%/apps/user_ldap/composer/composer/ClassLoader.php
10157
%%WWWDIR%%/apps/user_ldap/composer/composer/LICENSE
10158
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_classmap.php
10159
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_namespaces.php
10160
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_psr4.php
10161
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_real.php
10162
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_static.php
10020
%%WWWDIR%%/apps/user_ldap/css/renewPassword.css
10163
%%WWWDIR%%/apps/user_ldap/css/renewPassword.css
10021
%%WWWDIR%%/apps/user_ldap/css/settings.css
10164
%%WWWDIR%%/apps/user_ldap/css/settings.css
10022
%%WWWDIR%%/apps/user_ldap/img/app-dark.svg
10165
%%WWWDIR%%/apps/user_ldap/img/app-dark.svg
Lines 10323-10334 Link Here
10323
%%WWWDIR%%/apps/user_ldap/lib/Exceptions/ConstraintViolationException.php
10466
%%WWWDIR%%/apps/user_ldap/lib/Exceptions/ConstraintViolationException.php
10324
%%WWWDIR%%/apps/user_ldap/lib/Exceptions/NotOnLDAP.php
10467
%%WWWDIR%%/apps/user_ldap/lib/Exceptions/NotOnLDAP.php
10325
%%WWWDIR%%/apps/user_ldap/lib/FilesystemHelper.php
10468
%%WWWDIR%%/apps/user_ldap/lib/FilesystemHelper.php
10469
%%WWWDIR%%/apps/user_ldap/lib/GroupPluginManager.php
10326
%%WWWDIR%%/apps/user_ldap/lib/Group_LDAP.php
10470
%%WWWDIR%%/apps/user_ldap/lib/Group_LDAP.php
10327
%%WWWDIR%%/apps/user_ldap/lib/Group_Proxy.php
10471
%%WWWDIR%%/apps/user_ldap/lib/Group_Proxy.php
10328
%%WWWDIR%%/apps/user_ldap/lib/Helper.php
10472
%%WWWDIR%%/apps/user_ldap/lib/Helper.php
10473
%%WWWDIR%%/apps/user_ldap/lib/IGroupLDAP.php
10474
%%WWWDIR%%/apps/user_ldap/lib/ILDAPGroupPlugin.php
10475
%%WWWDIR%%/apps/user_ldap/lib/ILDAPUserPlugin.php
10329
%%WWWDIR%%/apps/user_ldap/lib/ILDAPWrapper.php
10476
%%WWWDIR%%/apps/user_ldap/lib/ILDAPWrapper.php
10330
%%WWWDIR%%/apps/user_ldap/lib/IUserLDAP.php
10477
%%WWWDIR%%/apps/user_ldap/lib/IUserLDAP.php
10331
%%WWWDIR%%/apps/user_ldap/lib/Jobs/CleanUp.php
10478
%%WWWDIR%%/apps/user_ldap/lib/Jobs/CleanUp.php
10479
%%WWWDIR%%/apps/user_ldap/lib/Jobs/Sync.php
10332
%%WWWDIR%%/apps/user_ldap/lib/Jobs/UpdateGroups.php
10480
%%WWWDIR%%/apps/user_ldap/lib/Jobs/UpdateGroups.php
10333
%%WWWDIR%%/apps/user_ldap/lib/LDAP.php
10481
%%WWWDIR%%/apps/user_ldap/lib/LDAP.php
10334
%%WWWDIR%%/apps/user_ldap/lib/LDAPProvider.php
10482
%%WWWDIR%%/apps/user_ldap/lib/LDAPProvider.php
Lines 10351-10356 Link Here
10351
%%WWWDIR%%/apps/user_ldap/lib/User/Manager.php
10499
%%WWWDIR%%/apps/user_ldap/lib/User/Manager.php
10352
%%WWWDIR%%/apps/user_ldap/lib/User/OfflineUser.php
10500
%%WWWDIR%%/apps/user_ldap/lib/User/OfflineUser.php
10353
%%WWWDIR%%/apps/user_ldap/lib/User/User.php
10501
%%WWWDIR%%/apps/user_ldap/lib/User/User.php
10502
%%WWWDIR%%/apps/user_ldap/lib/UserPluginManager.php
10354
%%WWWDIR%%/apps/user_ldap/lib/User_LDAP.php
10503
%%WWWDIR%%/apps/user_ldap/lib/User_LDAP.php
10355
%%WWWDIR%%/apps/user_ldap/lib/User_Proxy.php
10504
%%WWWDIR%%/apps/user_ldap/lib/User_Proxy.php
10356
%%WWWDIR%%/apps/user_ldap/lib/Wizard.php
10505
%%WWWDIR%%/apps/user_ldap/lib/Wizard.php
Lines 10438-10443 Link Here
10438
%%WWWDIR%%/apps/workflowengine/l10n/es_SV.json
10587
%%WWWDIR%%/apps/workflowengine/l10n/es_SV.json
10439
%%WWWDIR%%/apps/workflowengine/l10n/es_UY.js
10588
%%WWWDIR%%/apps/workflowengine/l10n/es_UY.js
10440
%%WWWDIR%%/apps/workflowengine/l10n/es_UY.json
10589
%%WWWDIR%%/apps/workflowengine/l10n/es_UY.json
10590
%%WWWDIR%%/apps/workflowengine/l10n/et_EE.js
10591
%%WWWDIR%%/apps/workflowengine/l10n/et_EE.json
10441
%%WWWDIR%%/apps/workflowengine/l10n/fa.js
10592
%%WWWDIR%%/apps/workflowengine/l10n/fa.js
10442
%%WWWDIR%%/apps/workflowengine/l10n/fa.json
10593
%%WWWDIR%%/apps/workflowengine/l10n/fa.json
10443
%%WWWDIR%%/apps/workflowengine/l10n/fi.js
10594
%%WWWDIR%%/apps/workflowengine/l10n/fi.js
Lines 10513-10519 Link Here
10513
%%WWWDIR%%/apps/workflowengine/templates/admin.php
10664
%%WWWDIR%%/apps/workflowengine/templates/admin.php
10514
%%WWWDIR%%/config/.htaccess
10665
%%WWWDIR%%/config/.htaccess
10515
%%WWWDIR%%/config/config.sample.php
10666
%%WWWDIR%%/config/config.sample.php
10516
%%WWWDIR%%/config/config.sample.php.bak
10667
@comment %%WWWDIR%%/config/config.sample.php.bak
10517
@owner
10668
@owner
10518
@group
10669
@group
10519
%%WWWDIR%%/console.php
10670
%%WWWDIR%%/console.php
Lines 10522-10527 Link Here
10522
%%WWWDIR%%/core/Command/App/Disable.php
10673
%%WWWDIR%%/core/Command/App/Disable.php
10523
%%WWWDIR%%/core/Command/App/Enable.php
10674
%%WWWDIR%%/core/Command/App/Enable.php
10524
%%WWWDIR%%/core/Command/App/GetPath.php
10675
%%WWWDIR%%/core/Command/App/GetPath.php
10676
%%WWWDIR%%/core/Command/App/Install.php
10525
%%WWWDIR%%/core/Command/App/ListApps.php
10677
%%WWWDIR%%/core/Command/App/ListApps.php
10526
%%WWWDIR%%/core/Command/Background/Ajax.php
10678
%%WWWDIR%%/core/Command/Background/Ajax.php
10527
%%WWWDIR%%/core/Command/Background/Base.php
10679
%%WWWDIR%%/core/Command/Background/Base.php
Lines 10539-10547 Link Here
10539
%%WWWDIR%%/core/Command/Config/System/DeleteConfig.php
10691
%%WWWDIR%%/core/Command/Config/System/DeleteConfig.php
10540
%%WWWDIR%%/core/Command/Config/System/GetConfig.php
10692
%%WWWDIR%%/core/Command/Config/System/GetConfig.php
10541
%%WWWDIR%%/core/Command/Config/System/SetConfig.php
10693
%%WWWDIR%%/core/Command/Config/System/SetConfig.php
10694
%%WWWDIR%%/core/Command/Db/ConvertFilecacheBigInt.php
10542
%%WWWDIR%%/core/Command/Db/ConvertMysqlToMB4.php
10695
%%WWWDIR%%/core/Command/Db/ConvertMysqlToMB4.php
10543
%%WWWDIR%%/core/Command/Db/ConvertType.php
10696
%%WWWDIR%%/core/Command/Db/ConvertType.php
10544
%%WWWDIR%%/core/Command/Db/GenerateChangeScript.php
10697
%%WWWDIR%%/core/Command/Db/Migrations/ExecuteCommand.php
10698
%%WWWDIR%%/core/Command/Db/Migrations/GenerateCommand.php
10699
%%WWWDIR%%/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php
10700
%%WWWDIR%%/core/Command/Db/Migrations/MigrateCommand.php
10701
%%WWWDIR%%/core/Command/Db/Migrations/StatusCommand.php
10545
%%WWWDIR%%/core/Command/Encryption/ChangeKeyStorageRoot.php
10702
%%WWWDIR%%/core/Command/Encryption/ChangeKeyStorageRoot.php
10546
%%WWWDIR%%/core/Command/Encryption/DecryptAll.php
10703
%%WWWDIR%%/core/Command/Encryption/DecryptAll.php
10547
%%WWWDIR%%/core/Command/Encryption/Disable.php
10704
%%WWWDIR%%/core/Command/Encryption/Disable.php
Lines 10569-10574 Link Here
10569
%%WWWDIR%%/core/Command/Maintenance/Mode.php
10726
%%WWWDIR%%/core/Command/Maintenance/Mode.php
10570
%%WWWDIR%%/core/Command/Maintenance/Repair.php
10727
%%WWWDIR%%/core/Command/Maintenance/Repair.php
10571
%%WWWDIR%%/core/Command/Maintenance/UpdateHtaccess.php
10728
%%WWWDIR%%/core/Command/Maintenance/UpdateHtaccess.php
10729
%%WWWDIR%%/core/Command/Maintenance/UpdateTheme.php
10572
%%WWWDIR%%/core/Command/Security/ImportCertificate.php
10730
%%WWWDIR%%/core/Command/Security/ImportCertificate.php
10573
%%WWWDIR%%/core/Command/Security/ListCertificates.php
10731
%%WWWDIR%%/core/Command/Security/ListCertificates.php
10574
%%WWWDIR%%/core/Command/Security/RemoveCertificate.php
10732
%%WWWDIR%%/core/Command/Security/RemoveCertificate.php
Lines 10587-10592 Link Here
10587
%%WWWDIR%%/core/Command/User/Report.php
10745
%%WWWDIR%%/core/Command/User/Report.php
10588
%%WWWDIR%%/core/Command/User/ResetPassword.php
10746
%%WWWDIR%%/core/Command/User/ResetPassword.php
10589
%%WWWDIR%%/core/Command/User/Setting.php
10747
%%WWWDIR%%/core/Command/User/Setting.php
10748
%%WWWDIR%%/core/Controller/AutoCompleteController.php
10590
%%WWWDIR%%/core/Controller/AvatarController.php
10749
%%WWWDIR%%/core/Controller/AvatarController.php
10591
%%WWWDIR%%/core/Controller/ClientFlowLoginController.php
10750
%%WWWDIR%%/core/Controller/ClientFlowLoginController.php
10592
%%WWWDIR%%/core/Controller/ContactsMenuController.php
10751
%%WWWDIR%%/core/Controller/ContactsMenuController.php
Lines 10600-10606 Link Here
10600
%%WWWDIR%%/core/Controller/SetupController.php
10759
%%WWWDIR%%/core/Controller/SetupController.php
10601
%%WWWDIR%%/core/Controller/TwoFactorChallengeController.php
10760
%%WWWDIR%%/core/Controller/TwoFactorChallengeController.php
10602
%%WWWDIR%%/core/Controller/UserController.php
10761
%%WWWDIR%%/core/Controller/UserController.php
10762
%%WWWDIR%%/core/Controller/WalledGardenController.php
10603
%%WWWDIR%%/core/Middleware/TwoFactorMiddleware.php
10763
%%WWWDIR%%/core/Middleware/TwoFactorMiddleware.php
10764
%%WWWDIR%%/core/Migrations/Version13000Date20170705121758.php
10765
%%WWWDIR%%/core/Migrations/Version13000Date20170718121200.php
10766
%%WWWDIR%%/core/Migrations/Version13000Date20170814074715.php
10767
%%WWWDIR%%/core/Migrations/Version13000Date20170919121250.php
10768
%%WWWDIR%%/core/Migrations/Version13000Date20170926101637.php
10604
%%WWWDIR%%/core/ajax/update.php
10769
%%WWWDIR%%/core/ajax/update.php
10605
%%WWWDIR%%/core/css/apps.scss
10770
%%WWWDIR%%/core/css/apps.scss
10606
%%WWWDIR%%/core/css/fixes.scss
10771
%%WWWDIR%%/core/css/fixes.scss
Lines 10609-10628 Link Here
10609
%%WWWDIR%%/core/css/guest.css
10774
%%WWWDIR%%/core/css/guest.css
10610
%%WWWDIR%%/core/css/header.scss
10775
%%WWWDIR%%/core/css/header.scss
10611
%%WWWDIR%%/core/css/icons.scss
10776
%%WWWDIR%%/core/css/icons.scss
10612
%%WWWDIR%%/core/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png
10613
%%WWWDIR%%/core/css/images/ui-bg_diagonals-thick_20_666666_40x40.png
10777
%%WWWDIR%%/core/css/images/ui-bg_diagonals-thick_20_666666_40x40.png
10614
%%WWWDIR%%/core/css/images/ui-bg_flat_100_ffffff_40x100.png
10615
%%WWWDIR%%/core/css/images/ui-bg_flat_10_000000_40x100.png
10778
%%WWWDIR%%/core/css/images/ui-bg_flat_10_000000_40x100.png
10616
%%WWWDIR%%/core/css/images/ui-bg_flat_35_1d2d44_40x100.png
10779
%%WWWDIR%%/core/css/images/ui-bg_flat_35_1d2d44_40x100.png
10617
%%WWWDIR%%/core/css/images/ui-bg_glass_100_f8f8f8_1x400.png
10618
%%WWWDIR%%/core/css/images/ui-bg_highlight-hard_100_f8f8f8_1x100.png
10619
%%WWWDIR%%/core/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
10620
%%WWWDIR%%/core/css/images/ui-icons_1d2d44_256x240.png
10780
%%WWWDIR%%/core/css/images/ui-icons_1d2d44_256x240.png
10621
%%WWWDIR%%/core/css/images/ui-icons_ffd27a_256x240.png
10781
%%WWWDIR%%/core/css/images/ui-icons_ffd27a_256x240.png
10622
%%WWWDIR%%/core/css/images/ui-icons_ffffff_256x240.png
10782
%%WWWDIR%%/core/css/images/ui-icons_ffffff_256x240.png
10623
%%WWWDIR%%/core/css/inputs.scss
10783
%%WWWDIR%%/core/css/inputs.scss
10624
%%WWWDIR%%/core/css/jquery-ui-fixes.css
10784
%%WWWDIR%%/core/css/jquery-ui-fixes.scss
10625
%%WWWDIR%%/core/css/jquery.ocdialog.css
10785
%%WWWDIR%%/core/css/jquery.ocdialog.scss
10626
%%WWWDIR%%/core/css/login/authpicker.css
10786
%%WWWDIR%%/core/css/login/authpicker.css
10627
%%WWWDIR%%/core/css/lostpassword/resetpassword.css
10787
%%WWWDIR%%/core/css/lostpassword/resetpassword.css
10628
%%WWWDIR%%/core/css/mobile.scss
10788
%%WWWDIR%%/core/css/mobile.scss
Lines 10767-10772 Link Here
10767
%%WWWDIR%%/core/doc/admin/_images/users-create.png
10927
%%WWWDIR%%/core/doc/admin/_images/users-create.png
10768
%%WWWDIR%%/core/doc/admin/_images/users-groups.png
10928
%%WWWDIR%%/core/doc/admin/_images/users-groups.png
10769
%%WWWDIR%%/core/doc/admin/_images/webdav.png
10929
%%WWWDIR%%/core/doc/admin/_images/webdav.png
10930
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/bigint_identifiers.txt
10770
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/db_conversion.txt
10931
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/db_conversion.txt
10771
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/index.txt
10932
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/index.txt
10772
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/linux_database_configuration.txt
10933
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/linux_database_configuration.txt
Lines 10817-10822 Link Here
10817
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/theming.txt
10978
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/theming.txt
10818
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/thirdparty_php_configuration.txt
10979
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/thirdparty_php_configuration.txt
10819
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/index.txt
10980
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/index.txt
10981
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/instruction_set_for_apps.txt
10982
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/instruction_set_for_groups.txt
10983
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/instruction_set_for_users.txt
10820
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/reset_admin_password.txt
10984
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/reset_admin_password.txt
10821
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/reset_user_password.txt
10985
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/reset_user_password.txt
10822
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/two_factor-auth.txt
10986
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/two_factor-auth.txt
Lines 10940-10951 Link Here
10940
%%WWWDIR%%/core/doc/admin/_static/social/twitter.svg
11104
%%WWWDIR%%/core/doc/admin/_static/social/twitter.svg
10941
%%WWWDIR%%/core/doc/admin/_static/social/twitterround.png
11105
%%WWWDIR%%/core/doc/admin/_static/social/twitterround.png
10942
%%WWWDIR%%/core/doc/admin/_static/social/youtube.svg
11106
%%WWWDIR%%/core/doc/admin/_static/social/youtube.svg
10943
%%WWWDIR%%/core/doc/admin/_static/style.css
10944
%%WWWDIR%%/core/doc/admin/_static/styles.css
11107
%%WWWDIR%%/core/doc/admin/_static/styles.css
10945
%%WWWDIR%%/core/doc/admin/_static/underscore.js
11108
%%WWWDIR%%/core/doc/admin/_static/underscore.js
10946
%%WWWDIR%%/core/doc/admin/_static/up-pressed.png
11109
%%WWWDIR%%/core/doc/admin/_static/up-pressed.png
10947
%%WWWDIR%%/core/doc/admin/_static/up.png
11110
%%WWWDIR%%/core/doc/admin/_static/up.png
10948
%%WWWDIR%%/core/doc/admin/_static/websupport.js
11111
%%WWWDIR%%/core/doc/admin/_static/websupport.js
11112
%%WWWDIR%%/core/doc/admin/configuration_database/bigint_identifiers.html
10949
%%WWWDIR%%/core/doc/admin/configuration_database/db_conversion.html
11113
%%WWWDIR%%/core/doc/admin/configuration_database/db_conversion.html
10950
%%WWWDIR%%/core/doc/admin/configuration_database/index.html
11114
%%WWWDIR%%/core/doc/admin/configuration_database/index.html
10951
%%WWWDIR%%/core/doc/admin/configuration_database/linux_database_configuration.html
11115
%%WWWDIR%%/core/doc/admin/configuration_database/linux_database_configuration.html
Lines 10996-11001 Link Here
10996
%%WWWDIR%%/core/doc/admin/configuration_server/theming.html
11160
%%WWWDIR%%/core/doc/admin/configuration_server/theming.html
10997
%%WWWDIR%%/core/doc/admin/configuration_server/thirdparty_php_configuration.html
11161
%%WWWDIR%%/core/doc/admin/configuration_server/thirdparty_php_configuration.html
10998
%%WWWDIR%%/core/doc/admin/configuration_user/index.html
11162
%%WWWDIR%%/core/doc/admin/configuration_user/index.html
11163
%%WWWDIR%%/core/doc/admin/configuration_user/instruction_set_for_apps.html
11164
%%WWWDIR%%/core/doc/admin/configuration_user/instruction_set_for_groups.html
11165
%%WWWDIR%%/core/doc/admin/configuration_user/instruction_set_for_users.html
10999
%%WWWDIR%%/core/doc/admin/configuration_user/reset_admin_password.html
11166
%%WWWDIR%%/core/doc/admin/configuration_user/reset_admin_password.html
11000
%%WWWDIR%%/core/doc/admin/configuration_user/reset_user_password.html
11167
%%WWWDIR%%/core/doc/admin/configuration_user/reset_user_password.html
11001
%%WWWDIR%%/core/doc/admin/configuration_user/two_factor-auth.html
11168
%%WWWDIR%%/core/doc/admin/configuration_user/two_factor-auth.html
Lines 11052-11057 Link Here
11052
%%WWWDIR%%/core/doc/user/_images/anonym_uploaded_files.png
11219
%%WWWDIR%%/core/doc/user/_images/anonym_uploaded_files.png
11053
%%WWWDIR%%/core/doc/user/_images/apps_menu.png
11220
%%WWWDIR%%/core/doc/user/_images/apps_menu.png
11054
%%WWWDIR%%/core/doc/user/_images/cardbook_icon.png
11221
%%WWWDIR%%/core/doc/user/_images/cardbook_icon.png
11222
%%WWWDIR%%/core/doc/user/_images/contact_bottombar.png
11223
%%WWWDIR%%/core/doc/user/_images/contact_manageaddressbook.png
11224
%%WWWDIR%%/core/doc/user/_images/contact_new.png
11225
%%WWWDIR%%/core/doc/user/_images/contact_picture.png
11226
%%WWWDIR%%/core/doc/user/_images/contact_picture_options.png
11227
%%WWWDIR%%/core/doc/user/_images/contact_picture_set.png
11228
%%WWWDIR%%/core/doc/user/_images/contact_uploadbutton.png
11229
%%WWWDIR%%/core/doc/user/_images/contacts_empty.png
11055
%%WWWDIR%%/core/doc/user/_images/contacts_link.png
11230
%%WWWDIR%%/core/doc/user/_images/contacts_link.png
11056
%%WWWDIR%%/core/doc/user/_images/contacts_menu.png
11231
%%WWWDIR%%/core/doc/user/_images/contacts_menu.png
11057
%%WWWDIR%%/core/doc/user/_images/contacts_popup.png
11232
%%WWWDIR%%/core/doc/user/_images/contacts_popup.png
Lines 11205-11211 Link Here
11205
%%WWWDIR%%/core/doc/user/_static/social/twitter.svg
11380
%%WWWDIR%%/core/doc/user/_static/social/twitter.svg
11206
%%WWWDIR%%/core/doc/user/_static/social/twitterround.png
11381
%%WWWDIR%%/core/doc/user/_static/social/twitterround.png
11207
%%WWWDIR%%/core/doc/user/_static/social/youtube.svg
11382
%%WWWDIR%%/core/doc/user/_static/social/youtube.svg
11208
%%WWWDIR%%/core/doc/user/_static/style.css
11209
%%WWWDIR%%/core/doc/user/_static/styles.css
11383
%%WWWDIR%%/core/doc/user/_static/styles.css
11210
%%WWWDIR%%/core/doc/user/_static/underscore.js
11384
%%WWWDIR%%/core/doc/user/_static/underscore.js
11211
%%WWWDIR%%/core/doc/user/_static/up-pressed.png
11385
%%WWWDIR%%/core/doc/user/_static/up-pressed.png
Lines 11249-11254 Link Here
11249
%%WWWDIR%%/core/fonts/OpenSans-Regular.woff
11423
%%WWWDIR%%/core/fonts/OpenSans-Regular.woff
11250
%%WWWDIR%%/core/fonts/OpenSans-Semibold.woff
11424
%%WWWDIR%%/core/fonts/OpenSans-Semibold.woff
11251
%%WWWDIR%%/core/img/actions/add.svg
11425
%%WWWDIR%%/core/img/actions/add.svg
11426
%%WWWDIR%%/core/img/actions/address.svg
11427
%%WWWDIR%%/core/img/actions/arrow-left.svg
11428
%%WWWDIR%%/core/img/actions/arrow-right.svg
11252
%%WWWDIR%%/core/img/actions/audio-off-white.svg
11429
%%WWWDIR%%/core/img/actions/audio-off-white.svg
11253
%%WWWDIR%%/core/img/actions/audio-off.svg
11430
%%WWWDIR%%/core/img/actions/audio-off.svg
11254
%%WWWDIR%%/core/img/actions/audio-white.svg
11431
%%WWWDIR%%/core/img/actions/audio-white.svg
Lines 11294-11303 Link Here
11294
%%WWWDIR%%/core/img/actions/more.svg
11471
%%WWWDIR%%/core/img/actions/more.svg
11295
%%WWWDIR%%/core/img/actions/password.png
11472
%%WWWDIR%%/core/img/actions/password.png
11296
%%WWWDIR%%/core/img/actions/password.svg
11473
%%WWWDIR%%/core/img/actions/password.svg
11297
%%WWWDIR%%/core/img/actions/pause-big.svg
11298
%%WWWDIR%%/core/img/actions/pause.svg
11474
%%WWWDIR%%/core/img/actions/pause.svg
11299
%%WWWDIR%%/core/img/actions/play-add.svg
11475
%%WWWDIR%%/core/img/actions/play-add.svg
11300
%%WWWDIR%%/core/img/actions/play-big.svg
11301
%%WWWDIR%%/core/img/actions/play-next.svg
11476
%%WWWDIR%%/core/img/actions/play-next.svg
11302
%%WWWDIR%%/core/img/actions/play-previous.svg
11477
%%WWWDIR%%/core/img/actions/play-previous.svg
11303
%%WWWDIR%%/core/img/actions/play.svg
11478
%%WWWDIR%%/core/img/actions/play.svg
Lines 11324-11329 Link Here
11324
%%WWWDIR%%/core/img/actions/starred.svg
11499
%%WWWDIR%%/core/img/actions/starred.svg
11325
%%WWWDIR%%/core/img/actions/tag.png
11500
%%WWWDIR%%/core/img/actions/tag.png
11326
%%WWWDIR%%/core/img/actions/tag.svg
11501
%%WWWDIR%%/core/img/actions/tag.svg
11502
%%WWWDIR%%/core/img/actions/toggle-background.svg
11327
%%WWWDIR%%/core/img/actions/toggle-filelist.svg
11503
%%WWWDIR%%/core/img/actions/toggle-filelist.svg
11328
%%WWWDIR%%/core/img/actions/toggle-pictures.svg
11504
%%WWWDIR%%/core/img/actions/toggle-pictures.svg
11329
%%WWWDIR%%/core/img/actions/toggle.svg
11505
%%WWWDIR%%/core/img/actions/toggle.svg
Lines 11332-11339 Link Here
11332
%%WWWDIR%%/core/img/actions/triangle-s.svg
11508
%%WWWDIR%%/core/img/actions/triangle-s.svg
11333
%%WWWDIR%%/core/img/actions/upload-white.svg
11509
%%WWWDIR%%/core/img/actions/upload-white.svg
11334
%%WWWDIR%%/core/img/actions/upload.svg
11510
%%WWWDIR%%/core/img/actions/upload.svg
11335
%%WWWDIR%%/core/img/actions/user-plus.svg
11336
%%WWWDIR%%/core/img/actions/user-times.svg
11337
%%WWWDIR%%/core/img/actions/user.svg
11511
%%WWWDIR%%/core/img/actions/user.svg
11338
%%WWWDIR%%/core/img/actions/verified.svg
11512
%%WWWDIR%%/core/img/actions/verified.svg
11339
%%WWWDIR%%/core/img/actions/verify.svg
11513
%%WWWDIR%%/core/img/actions/verify.svg
Lines 11349-11356 Link Here
11349
%%WWWDIR%%/core/img/actions/view-play.svg
11523
%%WWWDIR%%/core/img/actions/view-play.svg
11350
%%WWWDIR%%/core/img/actions/view-previous.svg
11524
%%WWWDIR%%/core/img/actions/view-previous.svg
11351
%%WWWDIR%%/core/img/appstore.svg
11525
%%WWWDIR%%/core/img/appstore.svg
11352
%%WWWDIR%%/core/img/background.jpg
11526
%%WWWDIR%%/core/img/background.png
11527
%%WWWDIR%%/core/img/background.svg
11353
%%WWWDIR%%/core/img/breadcrumb.svg
11528
%%WWWDIR%%/core/img/breadcrumb.svg
11529
%%WWWDIR%%/core/img/categories/auth.svg
11530
%%WWWDIR%%/core/img/categories/bundles.svg
11531
%%WWWDIR%%/core/img/categories/customization.svg
11532
%%WWWDIR%%/core/img/categories/files.svg
11533
%%WWWDIR%%/core/img/categories/games.svg
11534
%%WWWDIR%%/core/img/categories/integration.svg
11535
%%WWWDIR%%/core/img/categories/monitoring.svg
11536
%%WWWDIR%%/core/img/categories/multimedia.svg
11537
%%WWWDIR%%/core/img/categories/office.svg
11538
%%WWWDIR%%/core/img/categories/organization.svg
11539
%%WWWDIR%%/core/img/categories/social.svg
11354
%%WWWDIR%%/core/img/desktopapp.svg
11540
%%WWWDIR%%/core/img/desktopapp.svg
11355
%%WWWDIR%%/core/img/facebook.svg
11541
%%WWWDIR%%/core/img/facebook.svg
11356
%%WWWDIR%%/core/img/favicon-fb.png
11542
%%WWWDIR%%/core/img/favicon-fb.png
Lines 11365-11370 Link Here
11365
%%WWWDIR%%/core/img/filetypes/audio.svg
11551
%%WWWDIR%%/core/img/filetypes/audio.svg
11366
%%WWWDIR%%/core/img/filetypes/file.svg
11552
%%WWWDIR%%/core/img/filetypes/file.svg
11367
%%WWWDIR%%/core/img/filetypes/folder-drag-accept.svg
11553
%%WWWDIR%%/core/img/filetypes/folder-drag-accept.svg
11554
%%WWWDIR%%/core/img/filetypes/folder-encrypted.svg
11368
%%WWWDIR%%/core/img/filetypes/folder-external.svg
11555
%%WWWDIR%%/core/img/filetypes/folder-external.svg
11369
%%WWWDIR%%/core/img/filetypes/folder-public.svg
11556
%%WWWDIR%%/core/img/filetypes/folder-public.svg
11370
%%WWWDIR%%/core/img/filetypes/folder-shared.svg
11557
%%WWWDIR%%/core/img/filetypes/folder-shared.svg
Lines 11371-11376 Link Here
11371
%%WWWDIR%%/core/img/filetypes/folder-starred.svg
11558
%%WWWDIR%%/core/img/filetypes/folder-starred.svg
11372
%%WWWDIR%%/core/img/filetypes/folder.svg
11559
%%WWWDIR%%/core/img/filetypes/folder.svg
11373
%%WWWDIR%%/core/img/filetypes/image.svg
11560
%%WWWDIR%%/core/img/filetypes/image.svg
11561
%%WWWDIR%%/core/img/filetypes/link.svg
11562
%%WWWDIR%%/core/img/filetypes/location.svg
11374
%%WWWDIR%%/core/img/filetypes/package-x-generic.svg
11563
%%WWWDIR%%/core/img/filetypes/package-x-generic.svg
11375
%%WWWDIR%%/core/img/filetypes/text-calendar.svg
11564
%%WWWDIR%%/core/img/filetypes/text-calendar.svg
11376
%%WWWDIR%%/core/img/filetypes/text-code.svg
11565
%%WWWDIR%%/core/img/filetypes/text-code.svg
Lines 11382-11394 Link Here
11382
%%WWWDIR%%/core/img/filetypes/x-office-spreadsheet.svg
11571
%%WWWDIR%%/core/img/filetypes/x-office-spreadsheet.svg
11383
%%WWWDIR%%/core/img/googleplay.png
11572
%%WWWDIR%%/core/img/googleplay.png
11384
%%WWWDIR%%/core/img/googleplus.svg
11573
%%WWWDIR%%/core/img/googleplus.svg
11385
%%WWWDIR%%/core/img/image-optimization.sh
11386
%%WWWDIR%%/core/img/loading-dark.gif
11574
%%WWWDIR%%/core/img/loading-dark.gif
11387
%%WWWDIR%%/core/img/loading-small-dark.gif
11575
%%WWWDIR%%/core/img/loading-small-dark.gif
11388
%%WWWDIR%%/core/img/loading-small.gif
11576
%%WWWDIR%%/core/img/loading-small.gif
11389
%%WWWDIR%%/core/img/loading.gif
11577
%%WWWDIR%%/core/img/loading.gif
11390
%%WWWDIR%%/core/img/logo-icon-175px.png
11578
%%WWWDIR%%/core/img/logo-icon-175px.png
11391
%%WWWDIR%%/core/img/logo-icon.svg
11392
%%WWWDIR%%/core/img/logo-mail.png
11579
%%WWWDIR%%/core/img/logo-mail.png
11393
%%WWWDIR%%/core/img/logo.png
11580
%%WWWDIR%%/core/img/logo.png
11394
%%WWWDIR%%/core/img/logo.svg
11581
%%WWWDIR%%/core/img/logo.svg
Lines 11396-11401 Link Here
11396
%%WWWDIR%%/core/img/manifest.json
11583
%%WWWDIR%%/core/img/manifest.json
11397
%%WWWDIR%%/core/img/places/calendar-dark.png
11584
%%WWWDIR%%/core/img/places/calendar-dark.png
11398
%%WWWDIR%%/core/img/places/calendar-dark.svg
11585
%%WWWDIR%%/core/img/places/calendar-dark.svg
11586
%%WWWDIR%%/core/img/places/calendar.svg
11399
%%WWWDIR%%/core/img/places/contacts-dark.svg
11587
%%WWWDIR%%/core/img/places/contacts-dark.svg
11400
%%WWWDIR%%/core/img/places/contacts.svg
11588
%%WWWDIR%%/core/img/places/contacts.svg
11401
%%WWWDIR%%/core/img/places/default-app-icon.svg
11589
%%WWWDIR%%/core/img/places/default-app-icon.svg
Lines 11724-11730 Link Here
11724
%%WWWDIR%%/core/vendor/zxcvbn/LICENSE.txt
11912
%%WWWDIR%%/core/vendor/zxcvbn/LICENSE.txt
11725
%%WWWDIR%%/core/vendor/zxcvbn/dist/zxcvbn.js
11913
%%WWWDIR%%/core/vendor/zxcvbn/dist/zxcvbn.js
11726
%%WWWDIR%%/cron.php
11914
%%WWWDIR%%/cron.php
11727
%%WWWDIR%%/db_structure.xml
11728
%%WWWDIR%%/index.html
11915
%%WWWDIR%%/index.html
11729
%%WWWDIR%%/index.php
11916
%%WWWDIR%%/index.php
11730
%%WWWDIR%%/l10n/.gitignore
11917
%%WWWDIR%%/l10n/.gitignore
Lines 11788-11793 Link Here
11788
%%WWWDIR%%/lib/l10n/es_SV.json
11975
%%WWWDIR%%/lib/l10n/es_SV.json
11789
%%WWWDIR%%/lib/l10n/es_UY.js
11976
%%WWWDIR%%/lib/l10n/es_UY.js
11790
%%WWWDIR%%/lib/l10n/es_UY.json
11977
%%WWWDIR%%/lib/l10n/es_UY.json
11978
%%WWWDIR%%/lib/l10n/et_EE.js
11979
%%WWWDIR%%/lib/l10n/et_EE.json
11791
%%WWWDIR%%/lib/l10n/fi.js
11980
%%WWWDIR%%/lib/l10n/fi.js
11792
%%WWWDIR%%/lib/l10n/fi.json
11981
%%WWWDIR%%/lib/l10n/fi.json
11793
%%WWWDIR%%/lib/l10n/fr.js
11982
%%WWWDIR%%/lib/l10n/fr.js
Lines 11861-11866 Link Here
11861
%%WWWDIR%%/lib/private/App/CodeChecker/ICheck.php
12050
%%WWWDIR%%/lib/private/App/CodeChecker/ICheck.php
11862
%%WWWDIR%%/lib/private/App/CodeChecker/InfoChecker.php
12051
%%WWWDIR%%/lib/private/App/CodeChecker/InfoChecker.php
11863
%%WWWDIR%%/lib/private/App/CodeChecker/LanguageParseChecker.php
12052
%%WWWDIR%%/lib/private/App/CodeChecker/LanguageParseChecker.php
12053
%%WWWDIR%%/lib/private/App/CodeChecker/MigrationSchemaChecker.php
11864
%%WWWDIR%%/lib/private/App/CodeChecker/NodeVisitor.php
12054
%%WWWDIR%%/lib/private/App/CodeChecker/NodeVisitor.php
11865
%%WWWDIR%%/lib/private/App/CodeChecker/PrivateCheck.php
12055
%%WWWDIR%%/lib/private/App/CodeChecker/PrivateCheck.php
11866
%%WWWDIR%%/lib/private/App/CodeChecker/StrongComparisonCheck.php
12056
%%WWWDIR%%/lib/private/App/CodeChecker/StrongComparisonCheck.php
Lines 11882-11887 Link Here
11882
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/CORSMiddleware.php
12072
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/CORSMiddleware.php
11883
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/AppNotEnabledException.php
12073
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/AppNotEnabledException.php
11884
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/CrossSiteRequestForgeryException.php
12074
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/CrossSiteRequestForgeryException.php
12075
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/LaxSameSiteCookieFailedException.php
11885
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotAdminException.php
12076
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotAdminException.php
11886
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotConfirmedException.php
12077
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotConfirmedException.php
11887
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotLoggedInException.php
12078
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotLoggedInException.php
Lines 11888-11893 Link Here
11888
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/SecurityException.php
12079
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/SecurityException.php
11889
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/StrictCookieMissingException.php
12080
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/StrictCookieMissingException.php
11890
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/RateLimitingMiddleware.php
12081
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/RateLimitingMiddleware.php
12082
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/SameSiteCookieMiddleware.php
11891
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php
12083
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php
11892
%%WWWDIR%%/lib/private/AppFramework/Middleware/SessionMiddleware.php
12084
%%WWWDIR%%/lib/private/AppFramework/Middleware/SessionMiddleware.php
11893
%%WWWDIR%%/lib/private/AppFramework/OCS/BaseResponse.php
12085
%%WWWDIR%%/lib/private/AppFramework/OCS/BaseResponse.php
Lines 11927-11937 Link Here
11927
%%WWWDIR%%/lib/private/BackgroundJob/TimedJob.php
12119
%%WWWDIR%%/lib/private/BackgroundJob/TimedJob.php
11928
%%WWWDIR%%/lib/private/Cache/CappedMemoryCache.php
12120
%%WWWDIR%%/lib/private/Cache/CappedMemoryCache.php
11929
%%WWWDIR%%/lib/private/Cache/File.php
12121
%%WWWDIR%%/lib/private/Cache/File.php
12122
%%WWWDIR%%/lib/private/Calendar/Manager.php
11930
%%WWWDIR%%/lib/private/CapabilitiesManager.php
12123
%%WWWDIR%%/lib/private/CapabilitiesManager.php
12124
%%WWWDIR%%/lib/private/Collaboration/AutoComplete/Manager.php
12125
%%WWWDIR%%/lib/private/Collaboration/Collaborators/GroupPlugin.php
12126
%%WWWDIR%%/lib/private/Collaboration/Collaborators/LookupPlugin.php
12127
%%WWWDIR%%/lib/private/Collaboration/Collaborators/MailPlugin.php
12128
%%WWWDIR%%/lib/private/Collaboration/Collaborators/RemotePlugin.php
12129
%%WWWDIR%%/lib/private/Collaboration/Collaborators/Search.php
12130
%%WWWDIR%%/lib/private/Collaboration/Collaborators/SearchResult.php
12131
%%WWWDIR%%/lib/private/Collaboration/Collaborators/UserPlugin.php
11931
%%WWWDIR%%/lib/private/Command/AsyncBus.php
12132
%%WWWDIR%%/lib/private/Command/AsyncBus.php
11932
%%WWWDIR%%/lib/private/Command/CallableJob.php
12133
%%WWWDIR%%/lib/private/Command/CallableJob.php
11933
%%WWWDIR%%/lib/private/Command/ClosureJob.php
12134
%%WWWDIR%%/lib/private/Command/ClosureJob.php
11934
%%WWWDIR%%/lib/private/Command/CommandJob.php
12135
%%WWWDIR%%/lib/private/Command/CommandJob.php
12136
%%WWWDIR%%/lib/private/Command/CronBus.php
11935
%%WWWDIR%%/lib/private/Command/FileAccess.php
12137
%%WWWDIR%%/lib/private/Command/FileAccess.php
11936
%%WWWDIR%%/lib/private/Command/QueueBus.php
12138
%%WWWDIR%%/lib/private/Command/QueueBus.php
11937
%%WWWDIR%%/lib/private/Comments/Comment.php
12139
%%WWWDIR%%/lib/private/Comments/Comment.php
Lines 11959-11968 Link Here
11959
%%WWWDIR%%/lib/private/DB/MDB2SchemaReader.php
12161
%%WWWDIR%%/lib/private/DB/MDB2SchemaReader.php
11960
%%WWWDIR%%/lib/private/DB/MDB2SchemaWriter.php
12162
%%WWWDIR%%/lib/private/DB/MDB2SchemaWriter.php
11961
%%WWWDIR%%/lib/private/DB/MigrationException.php
12163
%%WWWDIR%%/lib/private/DB/MigrationException.php
12164
%%WWWDIR%%/lib/private/DB/MigrationService.php
11962
%%WWWDIR%%/lib/private/DB/Migrator.php
12165
%%WWWDIR%%/lib/private/DB/Migrator.php
11963
%%WWWDIR%%/lib/private/DB/MySQLMigrator.php
12166
%%WWWDIR%%/lib/private/DB/MySQLMigrator.php
11964
%%WWWDIR%%/lib/private/DB/MySqlTools.php
12167
%%WWWDIR%%/lib/private/DB/MySqlTools.php
11965
%%WWWDIR%%/lib/private/DB/NoCheckMigrator.php
11966
%%WWWDIR%%/lib/private/DB/OCSqlitePlatform.php
12168
%%WWWDIR%%/lib/private/DB/OCSqlitePlatform.php
11967
%%WWWDIR%%/lib/private/DB/OracleConnection.php
12169
%%WWWDIR%%/lib/private/DB/OracleConnection.php
11968
%%WWWDIR%%/lib/private/DB/OracleMigrator.php
12170
%%WWWDIR%%/lib/private/DB/OracleMigrator.php
Lines 11985-11990 Link Here
11985
%%WWWDIR%%/lib/private/DB/QueryBuilder/QuoteHelper.php
12187
%%WWWDIR%%/lib/private/DB/QueryBuilder/QuoteHelper.php
11986
%%WWWDIR%%/lib/private/DB/SQLiteMigrator.php
12188
%%WWWDIR%%/lib/private/DB/SQLiteMigrator.php
11987
%%WWWDIR%%/lib/private/DB/SQLiteSessionInit.php
12189
%%WWWDIR%%/lib/private/DB/SQLiteSessionInit.php
12190
%%WWWDIR%%/lib/private/DB/SchemaWrapper.php
11988
%%WWWDIR%%/lib/private/DatabaseException.php
12191
%%WWWDIR%%/lib/private/DatabaseException.php
11989
%%WWWDIR%%/lib/private/DatabaseSetupException.php
12192
%%WWWDIR%%/lib/private/DatabaseSetupException.php
11990
%%WWWDIR%%/lib/private/DateTimeFormatter.php
12193
%%WWWDIR%%/lib/private/DateTimeFormatter.php
Lines 12030-12035 Link Here
12030
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/CachePermissionsMask.php
12233
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/CachePermissionsMask.php
12031
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/CacheWrapper.php
12234
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/CacheWrapper.php
12032
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/JailPropagator.php
12235
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/JailPropagator.php
12236
%%WWWDIR%%/lib/private/Files/Config/CachedMountFileInfo.php
12033
%%WWWDIR%%/lib/private/Files/Config/CachedMountInfo.php
12237
%%WWWDIR%%/lib/private/Files/Config/CachedMountInfo.php
12034
%%WWWDIR%%/lib/private/Files/Config/LazyStorageMountInfo.php
12238
%%WWWDIR%%/lib/private/Files/Config/LazyStorageMountInfo.php
12035
%%WWWDIR%%/lib/private/Files/Config/MountProviderCollection.php
12239
%%WWWDIR%%/lib/private/Files/Config/MountProviderCollection.php
Lines 12122-12127 Link Here
12122
%%WWWDIR%%/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php
12326
%%WWWDIR%%/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php
12123
%%WWWDIR%%/lib/private/L10N/Factory.php
12327
%%WWWDIR%%/lib/private/L10N/Factory.php
12124
%%WWWDIR%%/lib/private/L10N/L10N.php
12328
%%WWWDIR%%/lib/private/L10N/L10N.php
12329
%%WWWDIR%%/lib/private/L10N/L10NString.php
12125
%%WWWDIR%%/lib/private/L10N/LanguageNotFoundException.php
12330
%%WWWDIR%%/lib/private/L10N/LanguageNotFoundException.php
12126
%%WWWDIR%%/lib/private/LargeFileHelper.php
12331
%%WWWDIR%%/lib/private/LargeFileHelper.php
12127
%%WWWDIR%%/lib/private/Lock/AbstractLockingProvider.php
12332
%%WWWDIR%%/lib/private/Lock/AbstractLockingProvider.php
Lines 12137-12142 Link Here
12137
%%WWWDIR%%/lib/private/Log/File.php
12342
%%WWWDIR%%/lib/private/Log/File.php
12138
%%WWWDIR%%/lib/private/Log/Rotate.php
12343
%%WWWDIR%%/lib/private/Log/Rotate.php
12139
%%WWWDIR%%/lib/private/Log/Syslog.php
12344
%%WWWDIR%%/lib/private/Log/Syslog.php
12345
%%WWWDIR%%/lib/private/Mail/Attachment.php
12140
%%WWWDIR%%/lib/private/Mail/EMailTemplate.php
12346
%%WWWDIR%%/lib/private/Mail/EMailTemplate.php
12141
%%WWWDIR%%/lib/private/Mail/Mailer.php
12347
%%WWWDIR%%/lib/private/Mail/Mailer.php
12142
%%WWWDIR%%/lib/private/Mail/Message.php
12348
%%WWWDIR%%/lib/private/Mail/Message.php
Lines 12152-12157 Link Here
12152
%%WWWDIR%%/lib/private/Memcache/XCache.php
12358
%%WWWDIR%%/lib/private/Memcache/XCache.php
12153
%%WWWDIR%%/lib/private/Migration/BackgroundRepair.php
12359
%%WWWDIR%%/lib/private/Migration/BackgroundRepair.php
12154
%%WWWDIR%%/lib/private/Migration/ConsoleOutput.php
12360
%%WWWDIR%%/lib/private/Migration/ConsoleOutput.php
12361
%%WWWDIR%%/lib/private/Migration/SimpleOutput.php
12155
%%WWWDIR%%/lib/private/NaturalSort.php
12362
%%WWWDIR%%/lib/private/NaturalSort.php
12156
%%WWWDIR%%/lib/private/NaturalSort_DefaultCollator.php
12363
%%WWWDIR%%/lib/private/NaturalSort_DefaultCollator.php
12157
%%WWWDIR%%/lib/private/NavigationManager.php
12364
%%WWWDIR%%/lib/private/NavigationManager.php
Lines 12163-12169 Link Here
12163
%%WWWDIR%%/lib/private/OCS/CoreCapabilities.php
12370
%%WWWDIR%%/lib/private/OCS/CoreCapabilities.php
12164
%%WWWDIR%%/lib/private/OCS/DiscoveryService.php
12371
%%WWWDIR%%/lib/private/OCS/DiscoveryService.php
12165
%%WWWDIR%%/lib/private/OCS/Exception.php
12372
%%WWWDIR%%/lib/private/OCS/Exception.php
12166
%%WWWDIR%%/lib/private/OCS/PrivateData.php
12167
%%WWWDIR%%/lib/private/OCS/Provider.php
12373
%%WWWDIR%%/lib/private/OCS/Provider.php
12168
%%WWWDIR%%/lib/private/OCS/Result.php
12374
%%WWWDIR%%/lib/private/OCS/Result.php
12169
%%WWWDIR%%/lib/private/Preview/BMP.php
12375
%%WWWDIR%%/lib/private/Preview/BMP.php
Lines 12198-12203 Link Here
12198
%%WWWDIR%%/lib/private/PreviewManager.php
12404
%%WWWDIR%%/lib/private/PreviewManager.php
12199
%%WWWDIR%%/lib/private/PreviewNotAvailableException.php
12405
%%WWWDIR%%/lib/private/PreviewNotAvailableException.php
12200
%%WWWDIR%%/lib/private/RedisFactory.php
12406
%%WWWDIR%%/lib/private/RedisFactory.php
12407
%%WWWDIR%%/lib/private/Remote/Api/ApiBase.php
12408
%%WWWDIR%%/lib/private/Remote/Api/ApiCollection.php
12409
%%WWWDIR%%/lib/private/Remote/Api/ApiFactory.php
12410
%%WWWDIR%%/lib/private/Remote/Api/NotFoundException.php
12411
%%WWWDIR%%/lib/private/Remote/Api/OCS.php
12412
%%WWWDIR%%/lib/private/Remote/Credentials.php
12413
%%WWWDIR%%/lib/private/Remote/Instance.php
12414
%%WWWDIR%%/lib/private/Remote/InstanceFactory.php
12415
%%WWWDIR%%/lib/private/Remote/User.php
12201
%%WWWDIR%%/lib/private/Repair.php
12416
%%WWWDIR%%/lib/private/Repair.php
12202
%%WWWDIR%%/lib/private/Repair/CleanTags.php
12417
%%WWWDIR%%/lib/private/Repair/CleanTags.php
12203
%%WWWDIR%%/lib/private/Repair/Collation.php
12418
%%WWWDIR%%/lib/private/Repair/Collation.php
Lines 12210-12215 Link Here
12210
%%WWWDIR%%/lib/private/Repair/NC12/InstallCoreBundle.php
12425
%%WWWDIR%%/lib/private/Repair/NC12/InstallCoreBundle.php
12211
%%WWWDIR%%/lib/private/Repair/NC12/RepairIdentityProofKeyFolders.php
12426
%%WWWDIR%%/lib/private/Repair/NC12/RepairIdentityProofKeyFolders.php
12212
%%WWWDIR%%/lib/private/Repair/NC12/UpdateLanguageCodes.php
12427
%%WWWDIR%%/lib/private/Repair/NC12/UpdateLanguageCodes.php
12428
%%WWWDIR%%/lib/private/Repair/NC13/AddLogRotateJob.php
12213
%%WWWDIR%%/lib/private/Repair/NC13/RepairInvalidPaths.php
12429
%%WWWDIR%%/lib/private/Repair/NC13/RepairInvalidPaths.php
12214
%%WWWDIR%%/lib/private/Repair/OldGroupMembershipShares.php
12430
%%WWWDIR%%/lib/private/Repair/OldGroupMembershipShares.php
12215
%%WWWDIR%%/lib/private/Repair/Owncloud/DropAccountTermsTable.php
12431
%%WWWDIR%%/lib/private/Repair/Owncloud/DropAccountTermsTable.php
Lines 12229-12234 Link Here
12229
%%WWWDIR%%/lib/private/Search/Result/File.php
12445
%%WWWDIR%%/lib/private/Search/Result/File.php
12230
%%WWWDIR%%/lib/private/Search/Result/Folder.php
12446
%%WWWDIR%%/lib/private/Search/Result/Folder.php
12231
%%WWWDIR%%/lib/private/Search/Result/Image.php
12447
%%WWWDIR%%/lib/private/Search/Result/Image.php
12448
%%WWWDIR%%/lib/private/Security/Bruteforce/Capabilities.php
12232
%%WWWDIR%%/lib/private/Security/Bruteforce/Throttler.php
12449
%%WWWDIR%%/lib/private/Security/Bruteforce/Throttler.php
12233
%%WWWDIR%%/lib/private/Security/CSP/ContentSecurityPolicy.php
12450
%%WWWDIR%%/lib/private/Security/CSP/ContentSecurityPolicy.php
12234
%%WWWDIR%%/lib/private/Security/CSP/ContentSecurityPolicyManager.php
12451
%%WWWDIR%%/lib/private/Security/CSP/ContentSecurityPolicyManager.php
Lines 12269-12274 Link Here
12269
%%WWWDIR%%/lib/private/Settings/Admin/TipsTricks.php
12486
%%WWWDIR%%/lib/private/Settings/Admin/TipsTricks.php
12270
%%WWWDIR%%/lib/private/Settings/Manager.php
12487
%%WWWDIR%%/lib/private/Settings/Manager.php
12271
%%WWWDIR%%/lib/private/Settings/Mapper.php
12488
%%WWWDIR%%/lib/private/Settings/Mapper.php
12489
%%WWWDIR%%/lib/private/Settings/Personal/Additional.php
12490
%%WWWDIR%%/lib/private/Settings/Personal/PersonalInfo.php
12491
%%WWWDIR%%/lib/private/Settings/Personal/Security.php
12272
%%WWWDIR%%/lib/private/Settings/RemoveOrphaned.php
12492
%%WWWDIR%%/lib/private/Settings/RemoveOrphaned.php
12273
%%WWWDIR%%/lib/private/Settings/Section.php
12493
%%WWWDIR%%/lib/private/Settings/Section.php
12274
%%WWWDIR%%/lib/private/Setup.php
12494
%%WWWDIR%%/lib/private/Setup.php
Lines 12293-12298 Link Here
12293
%%WWWDIR%%/lib/private/Share20/ShareHelper.php
12513
%%WWWDIR%%/lib/private/Share20/ShareHelper.php
12294
%%WWWDIR%%/lib/private/Streamer.php
12514
%%WWWDIR%%/lib/private/Streamer.php
12295
%%WWWDIR%%/lib/private/SubAdmin.php
12515
%%WWWDIR%%/lib/private/SubAdmin.php
12516
%%WWWDIR%%/lib/private/Support/CrashReport/Registry.php
12296
%%WWWDIR%%/lib/private/SystemConfig.php
12517
%%WWWDIR%%/lib/private/SystemConfig.php
12297
%%WWWDIR%%/lib/private/SystemTag/ManagerFactory.php
12518
%%WWWDIR%%/lib/private/SystemTag/ManagerFactory.php
12298
%%WWWDIR%%/lib/private/SystemTag/SystemTag.php
12519
%%WWWDIR%%/lib/private/SystemTag/SystemTag.php
Lines 12336-12350 Link Here
12336
%%WWWDIR%%/lib/private/legacy/hook.php
12557
%%WWWDIR%%/lib/private/legacy/hook.php
12337
%%WWWDIR%%/lib/private/legacy/image.php
12558
%%WWWDIR%%/lib/private/legacy/image.php
12338
%%WWWDIR%%/lib/private/legacy/json.php
12559
%%WWWDIR%%/lib/private/legacy/json.php
12339
%%WWWDIR%%/lib/private/legacy/l10n/string.php
12340
%%WWWDIR%%/lib/private/legacy/ocs/privatedata.php
12341
%%WWWDIR%%/lib/private/legacy/ocs/result.php
12342
%%WWWDIR%%/lib/private/legacy/response.php
12560
%%WWWDIR%%/lib/private/legacy/response.php
12343
%%WWWDIR%%/lib/private/legacy/template.php
12561
%%WWWDIR%%/lib/private/legacy/template.php
12344
%%WWWDIR%%/lib/private/legacy/template/functions.php
12562
%%WWWDIR%%/lib/private/legacy/template/functions.php
12345
%%WWWDIR%%/lib/private/legacy/user.php
12563
%%WWWDIR%%/lib/private/legacy/user.php
12346
%%WWWDIR%%/lib/private/legacy/user/backend.php
12347
%%WWWDIR%%/lib/private/legacy/user/interface.php
12348
%%WWWDIR%%/lib/private/legacy/util.php
12564
%%WWWDIR%%/lib/private/legacy/util.php
12349
%%WWWDIR%%/lib/public/API.php
12565
%%WWWDIR%%/lib/public/API.php
12350
%%WWWDIR%%/lib/public/Activity/IConsumer.php
12566
%%WWWDIR%%/lib/public/Activity/IConsumer.php
Lines 12400-12411 Link Here
12400
%%WWWDIR%%/lib/public/Authentication/LoginCredentials/ICredentials.php
12616
%%WWWDIR%%/lib/public/Authentication/LoginCredentials/ICredentials.php
12401
%%WWWDIR%%/lib/public/Authentication/LoginCredentials/IStore.php
12617
%%WWWDIR%%/lib/public/Authentication/LoginCredentials/IStore.php
12402
%%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/IProvider.php
12618
%%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/IProvider.php
12619
%%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/IProvidesCustomCSP.php
12403
%%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/TwoFactorException.php
12620
%%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/TwoFactorException.php
12404
%%WWWDIR%%/lib/public/AutoloadNotAllowedException.php
12621
%%WWWDIR%%/lib/public/AutoloadNotAllowedException.php
12405
%%WWWDIR%%/lib/public/BackgroundJob.php
12622
%%WWWDIR%%/lib/public/BackgroundJob.php
12406
%%WWWDIR%%/lib/public/BackgroundJob/IJob.php
12623
%%WWWDIR%%/lib/public/BackgroundJob/IJob.php
12407
%%WWWDIR%%/lib/public/BackgroundJob/IJobList.php
12624
%%WWWDIR%%/lib/public/BackgroundJob/IJobList.php
12625
%%WWWDIR%%/lib/public/Calendar/ICalendar.php
12626
%%WWWDIR%%/lib/public/Calendar/IManager.php
12408
%%WWWDIR%%/lib/public/Capabilities/ICapability.php
12627
%%WWWDIR%%/lib/public/Capabilities/ICapability.php
12628
%%WWWDIR%%/lib/public/Capabilities/IPublicCapability.php
12629
%%WWWDIR%%/lib/public/Collaboration/AutoComplete/IManager.php
12630
%%WWWDIR%%/lib/public/Collaboration/AutoComplete/ISorter.php
12631
%%WWWDIR%%/lib/public/Collaboration/Collaborators/ISearch.php
12632
%%WWWDIR%%/lib/public/Collaboration/Collaborators/ISearchPlugin.php
12633
%%WWWDIR%%/lib/public/Collaboration/Collaborators/ISearchResult.php
12634
%%WWWDIR%%/lib/public/Collaboration/Collaborators/SearchResultType.php
12409
%%WWWDIR%%/lib/public/Command/IBus.php
12635
%%WWWDIR%%/lib/public/Command/IBus.php
12410
%%WWWDIR%%/lib/public/Command/ICommand.php
12636
%%WWWDIR%%/lib/public/Command/ICommand.php
12411
%%WWWDIR%%/lib/public/Comments/CommentsEntityEvent.php
12637
%%WWWDIR%%/lib/public/Comments/CommentsEntityEvent.php
Lines 12423-12428 Link Here
12423
%%WWWDIR%%/lib/public/Contacts.php
12649
%%WWWDIR%%/lib/public/Contacts.php
12424
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IAction.php
12650
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IAction.php
12425
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IActionFactory.php
12651
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IActionFactory.php
12652
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IContactsStore.php
12426
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IEntry.php
12653
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IEntry.php
12427
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/ILinkAction.php
12654
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/ILinkAction.php
12428
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IProvider.php
12655
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IProvider.php
Lines 12455-12460 Link Here
12455
%%WWWDIR%%/lib/public/Files/Cache/IScanner.php
12682
%%WWWDIR%%/lib/public/Files/Cache/IScanner.php
12456
%%WWWDIR%%/lib/public/Files/Cache/IUpdater.php
12683
%%WWWDIR%%/lib/public/Files/Cache/IUpdater.php
12457
%%WWWDIR%%/lib/public/Files/Cache/IWatcher.php
12684
%%WWWDIR%%/lib/public/Files/Cache/IWatcher.php
12685
%%WWWDIR%%/lib/public/Files/Config/ICachedMountFileInfo.php
12458
%%WWWDIR%%/lib/public/Files/Config/ICachedMountInfo.php
12686
%%WWWDIR%%/lib/public/Files/Config/ICachedMountInfo.php
12459
%%WWWDIR%%/lib/public/Files/Config/IHomeMountProvider.php
12687
%%WWWDIR%%/lib/public/Files/Config/IHomeMountProvider.php
12460
%%WWWDIR%%/lib/public/Files/Config/IMountProvider.php
12688
%%WWWDIR%%/lib/public/Files/Config/IMountProvider.php
Lines 12558-12567 Link Here
12558
%%WWWDIR%%/lib/public/Lock/ILockingProvider.php
12786
%%WWWDIR%%/lib/public/Lock/ILockingProvider.php
12559
%%WWWDIR%%/lib/public/Lock/LockedException.php
12787
%%WWWDIR%%/lib/public/Lock/LockedException.php
12560
%%WWWDIR%%/lib/public/Lockdown/ILockdownManager.php
12788
%%WWWDIR%%/lib/public/Lockdown/ILockdownManager.php
12789
%%WWWDIR%%/lib/public/Mail/IAttachment.php
12561
%%WWWDIR%%/lib/public/Mail/IEMailTemplate.php
12790
%%WWWDIR%%/lib/public/Mail/IEMailTemplate.php
12562
%%WWWDIR%%/lib/public/Mail/IMailer.php
12791
%%WWWDIR%%/lib/public/Mail/IMailer.php
12792
%%WWWDIR%%/lib/public/Mail/IMessage.php
12793
%%WWWDIR%%/lib/public/Migration/BigIntMigration.php
12794
%%WWWDIR%%/lib/public/Migration/IMigrationStep.php
12563
%%WWWDIR%%/lib/public/Migration/IOutput.php
12795
%%WWWDIR%%/lib/public/Migration/IOutput.php
12564
%%WWWDIR%%/lib/public/Migration/IRepairStep.php
12796
%%WWWDIR%%/lib/public/Migration/IRepairStep.php
12797
%%WWWDIR%%/lib/public/Migration/SimpleMigrationStep.php
12565
%%WWWDIR%%/lib/public/Notification/IAction.php
12798
%%WWWDIR%%/lib/public/Notification/IAction.php
12566
%%WWWDIR%%/lib/public/Notification/IApp.php
12799
%%WWWDIR%%/lib/public/Notification/IApp.php
12567
%%WWWDIR%%/lib/public/Notification/IManager.php
12800
%%WWWDIR%%/lib/public/Notification/IManager.php
Lines 12570-12575 Link Here
12570
%%WWWDIR%%/lib/public/OCS/IDiscoveryService.php
12803
%%WWWDIR%%/lib/public/OCS/IDiscoveryService.php
12571
%%WWWDIR%%/lib/public/PreConditionNotMetException.php
12804
%%WWWDIR%%/lib/public/PreConditionNotMetException.php
12572
%%WWWDIR%%/lib/public/Preview/IProvider.php
12805
%%WWWDIR%%/lib/public/Preview/IProvider.php
12806
%%WWWDIR%%/lib/public/Remote/Api/IApiCollection.php
12807
%%WWWDIR%%/lib/public/Remote/Api/IApiFactory.php
12808
%%WWWDIR%%/lib/public/Remote/Api/ICapabilitiesApi.php
12809
%%WWWDIR%%/lib/public/Remote/Api/IUserApi.php
12810
%%WWWDIR%%/lib/public/Remote/ICredentials.php
12811
%%WWWDIR%%/lib/public/Remote/IInstance.php
12812
%%WWWDIR%%/lib/public/Remote/IInstanceFactory.php
12813
%%WWWDIR%%/lib/public/Remote/IUser.php
12573
%%WWWDIR%%/lib/public/Response.php
12814
%%WWWDIR%%/lib/public/Response.php
12574
%%WWWDIR%%/lib/public/RichObjectStrings/Definitions.php
12815
%%WWWDIR%%/lib/public/RichObjectStrings/Definitions.php
12575
%%WWWDIR%%/lib/public/RichObjectStrings/IValidator.php
12816
%%WWWDIR%%/lib/public/RichObjectStrings/IValidator.php
Lines 12604-12609 Link Here
12604
%%WWWDIR%%/lib/public/Share_Backend.php
12845
%%WWWDIR%%/lib/public/Share_Backend.php
12605
%%WWWDIR%%/lib/public/Share_Backend_Collection.php
12846
%%WWWDIR%%/lib/public/Share_Backend_Collection.php
12606
%%WWWDIR%%/lib/public/Share_Backend_File_Dependent.php
12847
%%WWWDIR%%/lib/public/Share_Backend_File_Dependent.php
12848
%%WWWDIR%%/lib/public/Support/CrashReport/IRegistry.php
12849
%%WWWDIR%%/lib/public/Support/CrashReport/IReporter.php
12607
%%WWWDIR%%/lib/public/SystemTag/ISystemTag.php
12850
%%WWWDIR%%/lib/public/SystemTag/ISystemTag.php
12608
%%WWWDIR%%/lib/public/SystemTag/ISystemTagManager.php
12851
%%WWWDIR%%/lib/public/SystemTag/ISystemTagManager.php
12609
%%WWWDIR%%/lib/public/SystemTag/ISystemTagManagerFactory.php
12852
%%WWWDIR%%/lib/public/SystemTag/ISystemTagManagerFactory.php
Lines 12620-12629 Link Here
12620
%%WWWDIR%%/lib/public/WorkflowEngine/ICheck.php
12863
%%WWWDIR%%/lib/public/WorkflowEngine/ICheck.php
12621
%%WWWDIR%%/lib/public/WorkflowEngine/IManager.php
12864
%%WWWDIR%%/lib/public/WorkflowEngine/IManager.php
12622
%%WWWDIR%%/lib/public/WorkflowEngine/IOperation.php
12865
%%WWWDIR%%/lib/public/WorkflowEngine/IOperation.php
12866
%%WWWDIR%%/lib/versioncheck.php
12623
%%WWWDIR%%/occ
12867
%%WWWDIR%%/occ
12624
%%WWWDIR%%/ocs-provider/index.php
12868
%%WWWDIR%%/ocs-provider/index.php
12625
%%WWWDIR%%/ocs/providers.php
12869
%%WWWDIR%%/ocs/providers.php
12626
%%WWWDIR%%/ocs/routes.php
12627
%%WWWDIR%%/ocs/v1.php
12870
%%WWWDIR%%/ocs/v1.php
12628
%%WWWDIR%%/ocs/v2.php
12871
%%WWWDIR%%/ocs/v2.php
12629
%%WWWDIR%%/public.php
12872
%%WWWDIR%%/public.php
Lines 12648-12657 Link Here
12648
%%WWWDIR%%/settings/Controller/CertificateController.php
12891
%%WWWDIR%%/settings/Controller/CertificateController.php
12649
%%WWWDIR%%/settings/Controller/ChangePasswordController.php
12892
%%WWWDIR%%/settings/Controller/ChangePasswordController.php
12650
%%WWWDIR%%/settings/Controller/CheckSetupController.php
12893
%%WWWDIR%%/settings/Controller/CheckSetupController.php
12894
%%WWWDIR%%/settings/Controller/CommonSettingsTrait.php
12651
%%WWWDIR%%/settings/Controller/EncryptionController.php
12895
%%WWWDIR%%/settings/Controller/EncryptionController.php
12652
%%WWWDIR%%/settings/Controller/GroupsController.php
12896
%%WWWDIR%%/settings/Controller/GroupsController.php
12653
%%WWWDIR%%/settings/Controller/LogSettingsController.php
12897
%%WWWDIR%%/settings/Controller/LogSettingsController.php
12654
%%WWWDIR%%/settings/Controller/MailSettingsController.php
12898
%%WWWDIR%%/settings/Controller/MailSettingsController.php
12899
%%WWWDIR%%/settings/Controller/PersonalSettingsController.php
12655
%%WWWDIR%%/settings/Controller/SecuritySettingsController.php
12900
%%WWWDIR%%/settings/Controller/SecuritySettingsController.php
12656
%%WWWDIR%%/settings/Controller/UsersController.php
12901
%%WWWDIR%%/settings/Controller/UsersController.php
12657
%%WWWDIR%%/settings/Hooks.php
12902
%%WWWDIR%%/settings/Hooks.php
Lines 12664-12670 Link Here
12664
%%WWWDIR%%/settings/ajax/togglesubadmins.php
12909
%%WWWDIR%%/settings/ajax/togglesubadmins.php
12665
%%WWWDIR%%/settings/ajax/uninstallapp.php
12910
%%WWWDIR%%/settings/ajax/uninstallapp.php
12666
%%WWWDIR%%/settings/ajax/updateapp.php
12911
%%WWWDIR%%/settings/ajax/updateapp.php
12667
%%WWWDIR%%/settings/css/settings.css
12912
%%WWWDIR%%/settings/css/settings.scss
12668
%%WWWDIR%%/settings/help.php
12913
%%WWWDIR%%/settings/help.php
12669
%%WWWDIR%%/settings/img/admin.svg
12914
%%WWWDIR%%/settings/img/admin.svg
12670
%%WWWDIR%%/settings/img/apps.svg
12915
%%WWWDIR%%/settings/img/apps.svg
Lines 12685-12692 Link Here
12685
%%WWWDIR%%/settings/js/federationscopemenu.js
12930
%%WWWDIR%%/settings/js/federationscopemenu.js
12686
%%WWWDIR%%/settings/js/federationsettingsview.js
12931
%%WWWDIR%%/settings/js/federationsettingsview.js
12687
%%WWWDIR%%/settings/js/log.js
12932
%%WWWDIR%%/settings/js/log.js
12688
%%WWWDIR%%/settings/js/personal.js
12689
%%WWWDIR%%/settings/js/settings.js
12933
%%WWWDIR%%/settings/js/settings.js
12934
%%WWWDIR%%/settings/js/settings/authtoken-init.js
12935
%%WWWDIR%%/settings/js/settings/personalInfo.js
12690
%%WWWDIR%%/settings/js/users/deleteHandler.js
12936
%%WWWDIR%%/settings/js/users/deleteHandler.js
12691
%%WWWDIR%%/settings/js/users/filter.js
12937
%%WWWDIR%%/settings/js/users/filter.js
12692
%%WWWDIR%%/settings/js/users/groups.js
12938
%%WWWDIR%%/settings/js/users/groups.js
Lines 12854-12875 Link Here
12854
%%WWWDIR%%/settings/l10n/zh_HK.json
13100
%%WWWDIR%%/settings/l10n/zh_HK.json
12855
%%WWWDIR%%/settings/l10n/zh_TW.js
13101
%%WWWDIR%%/settings/l10n/zh_TW.js
12856
%%WWWDIR%%/settings/l10n/zh_TW.json
13102
%%WWWDIR%%/settings/l10n/zh_TW.json
12857
%%WWWDIR%%/settings/personal.php
12858
%%WWWDIR%%/settings/routes.php
13103
%%WWWDIR%%/settings/routes.php
12859
%%WWWDIR%%/settings/templates/admin/additional-mail.php
12860
%%WWWDIR%%/settings/templates/admin/additional.php
12861
%%WWWDIR%%/settings/templates/admin/encryption.php
12862
%%WWWDIR%%/settings/templates/admin/frame.php
12863
%%WWWDIR%%/settings/templates/admin/server.development.notice.php
12864
%%WWWDIR%%/settings/templates/admin/server.php
12865
%%WWWDIR%%/settings/templates/admin/sharing.php
12866
%%WWWDIR%%/settings/templates/admin/tipstricks.php
12867
%%WWWDIR%%/settings/templates/apps.php
13104
%%WWWDIR%%/settings/templates/apps.php
12868
%%WWWDIR%%/settings/templates/certificates.php
13105
%%WWWDIR%%/settings/templates/certificates.php
12869
%%WWWDIR%%/settings/templates/help.php
13106
%%WWWDIR%%/settings/templates/help.php
12870
%%WWWDIR%%/settings/templates/personal.php
12871
%%WWWDIR%%/settings/templates/settings.development.notice.php
13107
%%WWWDIR%%/settings/templates/settings.development.notice.php
12872
%%WWWDIR%%/settings/templates/settings.php
13108
%%WWWDIR%%/settings/templates/settings.php
13109
%%WWWDIR%%/settings/templates/settings/additional.php
13110
%%WWWDIR%%/settings/templates/settings/admin/additional-mail.php
13111
%%WWWDIR%%/settings/templates/settings/admin/encryption.php
13112
%%WWWDIR%%/settings/templates/settings/admin/server.development.notice.php
13113
%%WWWDIR%%/settings/templates/settings/admin/server.php
13114
%%WWWDIR%%/settings/templates/settings/admin/sharing.php
13115
%%WWWDIR%%/settings/templates/settings/admin/tipstricks.php
13116
%%WWWDIR%%/settings/templates/settings/empty.php
13117
%%WWWDIR%%/settings/templates/settings/frame.php
13118
%%WWWDIR%%/settings/templates/settings/personal/personal.info.php
13119
%%WWWDIR%%/settings/templates/settings/personal/security.php
12873
%%WWWDIR%%/settings/templates/users/main.php
13120
%%WWWDIR%%/settings/templates/users/main.php
12874
%%WWWDIR%%/settings/templates/users/part.createuser.php
13121
%%WWWDIR%%/settings/templates/users/part.createuser.php
12875
%%WWWDIR%%/settings/templates/users/part.grouplist.php
13122
%%WWWDIR%%/settings/templates/users/part.grouplist.php
Lines 12894-12902 Link Here
12894
%%WWWDIR%%/themes/example/core/img/logo.png
13141
%%WWWDIR%%/themes/example/core/img/logo.png
12895
%%WWWDIR%%/themes/example/core/img/logo.svg
13142
%%WWWDIR%%/themes/example/core/img/logo.svg
12896
%%WWWDIR%%/themes/example/defaults.php
13143
%%WWWDIR%%/themes/example/defaults.php
13144
%%WWWDIR%%/updater/index.php
12897
@owner
13145
@owner
12898
@group
13146
@group
12899
%%WWWDIR%%/updater/index.php
12900
%%WWWDIR%%/version.php
13147
%%WWWDIR%%/version.php
12901
@dir %%WWWDIR%%/apps/gallery/documentation/wiki
13148
@dir %%WWWDIR%%/apps/gallery/documentation/wiki
12902
@dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/apps
13149
@dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/apps

Return to bug 223778