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.0RC1
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 = 1516002849
2
SHA256 (nextcloud-12.0.4.tar.bz2) = 654161a74ceaf9a60c7731d7d6702e6710a972633a97955d16f01abeb09d09b6
2
SHA256 (nextcloud-13.0.0RC1.tar.bz2) = d2174243eba23063edf2177e0eb164dbb0e47dc21d1a17546060a060dafcf39e
3
SIZE (nextcloud-12.0.4.tar.bz2) = 43583313
3
SIZE (nextcloud-13.0.0RC1.tar.bz2) = 43876113
(-)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 (-270 / +586 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 1762-1768 Link Here
1762
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Node.php
1760
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Node.php
1763
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Node/Number.php
1761
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Node/Number.php
1764
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Parser.php
1762
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Parser.php
1765
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Server.php
1766
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Type.php
1763
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Type.php
1767
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Util.php
1764
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Util.php
1768
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Version.php
1765
%%WWWDIR%%/3rdparty/leafo/scssphp/src/Version.php
Lines 3760-3770 Link Here
3760
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swift_required.php
3757
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swift_required.php
3761
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swift_required_pear.php
3758
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swift_required_pear.php
3762
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php
3759
%%WWWDIR%%/3rdparty/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php
3760
%%WWWDIR%%/3rdparty/symfony/console/.gitignore
3763
%%WWWDIR%%/3rdparty/symfony/console/Application.php
3761
%%WWWDIR%%/3rdparty/symfony/console/Application.php
3762
%%WWWDIR%%/3rdparty/symfony/console/CHANGELOG.md
3764
%%WWWDIR%%/3rdparty/symfony/console/Command/Command.php
3763
%%WWWDIR%%/3rdparty/symfony/console/Command/Command.php
3765
%%WWWDIR%%/3rdparty/symfony/console/Command/HelpCommand.php
3764
%%WWWDIR%%/3rdparty/symfony/console/Command/HelpCommand.php
3766
%%WWWDIR%%/3rdparty/symfony/console/Command/ListCommand.php
3765
%%WWWDIR%%/3rdparty/symfony/console/Command/ListCommand.php
3766
%%WWWDIR%%/3rdparty/symfony/console/Command/LockableTrait.php
3767
%%WWWDIR%%/3rdparty/symfony/console/ConsoleEvents.php
3767
%%WWWDIR%%/3rdparty/symfony/console/ConsoleEvents.php
3768
%%WWWDIR%%/3rdparty/symfony/console/DependencyInjection/AddConsoleCommandPass.php
3768
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/ApplicationDescription.php
3769
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/ApplicationDescription.php
3769
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/Descriptor.php
3770
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/Descriptor.php
3770
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/DescriptorInterface.php
3771
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/DescriptorInterface.php
Lines 3773-3781 Link Here
3773
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/TextDescriptor.php
3774
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/TextDescriptor.php
3774
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/XmlDescriptor.php
3775
%%WWWDIR%%/3rdparty/symfony/console/Descriptor/XmlDescriptor.php
3775
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleCommandEvent.php
3776
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleCommandEvent.php
3777
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleErrorEvent.php
3776
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleEvent.php
3778
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleEvent.php
3777
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleExceptionEvent.php
3779
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleExceptionEvent.php
3778
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleTerminateEvent.php
3780
%%WWWDIR%%/3rdparty/symfony/console/Event/ConsoleTerminateEvent.php
3781
%%WWWDIR%%/3rdparty/symfony/console/EventListener/ErrorListener.php
3779
%%WWWDIR%%/3rdparty/symfony/console/Exception/CommandNotFoundException.php
3782
%%WWWDIR%%/3rdparty/symfony/console/Exception/CommandNotFoundException.php
3780
%%WWWDIR%%/3rdparty/symfony/console/Exception/ExceptionInterface.php
3783
%%WWWDIR%%/3rdparty/symfony/console/Exception/ExceptionInterface.php
3781
%%WWWDIR%%/3rdparty/symfony/console/Exception/InvalidArgumentException.php
3784
%%WWWDIR%%/3rdparty/symfony/console/Exception/InvalidArgumentException.php
Lines 3811-3816 Link Here
3811
%%WWWDIR%%/3rdparty/symfony/console/Input/InputDefinition.php
3814
%%WWWDIR%%/3rdparty/symfony/console/Input/InputDefinition.php
3812
%%WWWDIR%%/3rdparty/symfony/console/Input/InputInterface.php
3815
%%WWWDIR%%/3rdparty/symfony/console/Input/InputInterface.php
3813
%%WWWDIR%%/3rdparty/symfony/console/Input/InputOption.php
3816
%%WWWDIR%%/3rdparty/symfony/console/Input/InputOption.php
3817
%%WWWDIR%%/3rdparty/symfony/console/Input/StreamableInputInterface.php
3814
%%WWWDIR%%/3rdparty/symfony/console/Input/StringInput.php
3818
%%WWWDIR%%/3rdparty/symfony/console/Input/StringInput.php
3815
%%WWWDIR%%/3rdparty/symfony/console/LICENSE
3819
%%WWWDIR%%/3rdparty/symfony/console/LICENSE
3816
%%WWWDIR%%/3rdparty/symfony/console/Logger/ConsoleLogger.php
3820
%%WWWDIR%%/3rdparty/symfony/console/Logger/ConsoleLogger.php
Lines 3824-3835 Link Here
3824
%%WWWDIR%%/3rdparty/symfony/console/Question/ChoiceQuestion.php
3828
%%WWWDIR%%/3rdparty/symfony/console/Question/ChoiceQuestion.php
3825
%%WWWDIR%%/3rdparty/symfony/console/Question/ConfirmationQuestion.php
3829
%%WWWDIR%%/3rdparty/symfony/console/Question/ConfirmationQuestion.php
3826
%%WWWDIR%%/3rdparty/symfony/console/Question/Question.php
3830
%%WWWDIR%%/3rdparty/symfony/console/Question/Question.php
3831
%%WWWDIR%%/3rdparty/symfony/console/README.md
3827
%%WWWDIR%%/3rdparty/symfony/console/Style/OutputStyle.php
3832
%%WWWDIR%%/3rdparty/symfony/console/Style/OutputStyle.php
3828
%%WWWDIR%%/3rdparty/symfony/console/Style/StyleInterface.php
3833
%%WWWDIR%%/3rdparty/symfony/console/Style/StyleInterface.php
3829
%%WWWDIR%%/3rdparty/symfony/console/Style/SymfonyStyle.php
3834
%%WWWDIR%%/3rdparty/symfony/console/Style/SymfonyStyle.php
3835
%%WWWDIR%%/3rdparty/symfony/console/Terminal.php
3830
%%WWWDIR%%/3rdparty/symfony/console/Tester/ApplicationTester.php
3836
%%WWWDIR%%/3rdparty/symfony/console/Tester/ApplicationTester.php
3831
%%WWWDIR%%/3rdparty/symfony/console/Tester/CommandTester.php
3837
%%WWWDIR%%/3rdparty/symfony/console/Tester/CommandTester.php
3832
%%WWWDIR%%/3rdparty/symfony/console/composer.json
3838
%%WWWDIR%%/3rdparty/symfony/console/composer.json
3839
%%WWWDIR%%/3rdparty/symfony/console/phpunit.xml.dist
3840
%%WWWDIR%%/3rdparty/symfony/debug/.gitignore
3841
%%WWWDIR%%/3rdparty/symfony/debug/BufferingLogger.php
3842
%%WWWDIR%%/3rdparty/symfony/debug/CHANGELOG.md
3843
%%WWWDIR%%/3rdparty/symfony/debug/Debug.php
3844
%%WWWDIR%%/3rdparty/symfony/debug/DebugClassLoader.php
3845
%%WWWDIR%%/3rdparty/symfony/debug/ErrorHandler.php
3846
%%WWWDIR%%/3rdparty/symfony/debug/Exception/ClassNotFoundException.php
3847
%%WWWDIR%%/3rdparty/symfony/debug/Exception/ContextErrorException.php
3848
%%WWWDIR%%/3rdparty/symfony/debug/Exception/FatalErrorException.php
3849
%%WWWDIR%%/3rdparty/symfony/debug/Exception/FatalThrowableError.php
3850
%%WWWDIR%%/3rdparty/symfony/debug/Exception/FlattenException.php
3851
%%WWWDIR%%/3rdparty/symfony/debug/Exception/OutOfMemoryException.php
3852
%%WWWDIR%%/3rdparty/symfony/debug/Exception/SilencedErrorContext.php
3853
%%WWWDIR%%/3rdparty/symfony/debug/Exception/UndefinedFunctionException.php
3854
%%WWWDIR%%/3rdparty/symfony/debug/Exception/UndefinedMethodException.php
3855
%%WWWDIR%%/3rdparty/symfony/debug/ExceptionHandler.php
3856
%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php
3857
%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php
3858
%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php
3859
%%WWWDIR%%/3rdparty/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php
3860
%%WWWDIR%%/3rdparty/symfony/debug/LICENSE
3861
%%WWWDIR%%/3rdparty/symfony/debug/README.md
3862
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/README.md
3863
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/config.m4
3864
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/config.w32
3865
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/php_symfony_debug.h
3866
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/symfony_debug.c
3867
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/001.phpt
3868
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/002.phpt
3869
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/002_1.phpt
3870
%%WWWDIR%%/3rdparty/symfony/debug/Resources/ext/tests/003.phpt
3871
%%WWWDIR%%/3rdparty/symfony/debug/composer.json
3872
%%WWWDIR%%/3rdparty/symfony/debug/phpunit.xml.dist
3873
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/.gitignore
3874
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/CHANGELOG.md
3833
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/ContainerAwareEventDispatcher.php
3875
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/ContainerAwareEventDispatcher.php
3834
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
3876
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
3835
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php
3877
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php
Lines 3842-3847 Link Here
3842
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/GenericEvent.php
3884
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/GenericEvent.php
3843
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/ImmutableEventDispatcher.php
3885
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/ImmutableEventDispatcher.php
3844
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/LICENSE
3886
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/LICENSE
3887
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/README.md
3888
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/composer.json
3889
%%WWWDIR%%/3rdparty/symfony/event-dispatcher/phpunit.xml.dist
3845
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/LICENSE
3890
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/LICENSE
3846
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/Mbstring.php
3891
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/Mbstring.php
3847
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
3892
%%WWWDIR%%/3rdparty/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
Lines 3859-3864 Link Here
3859
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/Resources/stubs/TypeError.php
3904
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/Resources/stubs/TypeError.php
3860
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/bootstrap.php
3905
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/bootstrap.php
3861
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/composer.json
3906
%%WWWDIR%%/3rdparty/symfony/polyfill-php70/composer.json
3907
%%WWWDIR%%/3rdparty/symfony/process/.gitignore
3908
%%WWWDIR%%/3rdparty/symfony/process/CHANGELOG.md
3862
%%WWWDIR%%/3rdparty/symfony/process/Exception/ExceptionInterface.php
3909
%%WWWDIR%%/3rdparty/symfony/process/Exception/ExceptionInterface.php
3863
%%WWWDIR%%/3rdparty/symfony/process/Exception/InvalidArgumentException.php
3910
%%WWWDIR%%/3rdparty/symfony/process/Exception/InvalidArgumentException.php
3864
%%WWWDIR%%/3rdparty/symfony/process/Exception/LogicException.php
3911
%%WWWDIR%%/3rdparty/symfony/process/Exception/LogicException.php
Lines 3877-3885 Link Here
3877
%%WWWDIR%%/3rdparty/symfony/process/Process.php
3924
%%WWWDIR%%/3rdparty/symfony/process/Process.php
3878
%%WWWDIR%%/3rdparty/symfony/process/ProcessBuilder.php
3925
%%WWWDIR%%/3rdparty/symfony/process/ProcessBuilder.php
3879
%%WWWDIR%%/3rdparty/symfony/process/ProcessUtils.php
3926
%%WWWDIR%%/3rdparty/symfony/process/ProcessUtils.php
3927
%%WWWDIR%%/3rdparty/symfony/process/README.md
3928
%%WWWDIR%%/3rdparty/symfony/process/composer.json
3929
%%WWWDIR%%/3rdparty/symfony/process/phpunit.xml.dist
3880
%%WWWDIR%%/3rdparty/symfony/routing/Annotation/Route.php
3930
%%WWWDIR%%/3rdparty/symfony/routing/Annotation/Route.php
3881
%%WWWDIR%%/3rdparty/symfony/routing/CHANGELOG.md
3931
%%WWWDIR%%/3rdparty/symfony/routing/CHANGELOG.md
3882
%%WWWDIR%%/3rdparty/symfony/routing/CompiledRoute.php
3932
%%WWWDIR%%/3rdparty/symfony/routing/CompiledRoute.php
3933
%%WWWDIR%%/3rdparty/symfony/routing/DependencyInjection/RoutingResolverPass.php
3883
%%WWWDIR%%/3rdparty/symfony/routing/Exception/ExceptionInterface.php
3934
%%WWWDIR%%/3rdparty/symfony/routing/Exception/ExceptionInterface.php
3884
%%WWWDIR%%/3rdparty/symfony/routing/Exception/InvalidParameterException.php
3935
%%WWWDIR%%/3rdparty/symfony/routing/Exception/InvalidParameterException.php
3885
%%WWWDIR%%/3rdparty/symfony/routing/Exception/MethodNotAllowedException.php
3936
%%WWWDIR%%/3rdparty/symfony/routing/Exception/MethodNotAllowedException.php
Lines 3905-3915 Link Here
3905
%%WWWDIR%%/3rdparty/symfony/routing/Loader/YamlFileLoader.php
3956
%%WWWDIR%%/3rdparty/symfony/routing/Loader/YamlFileLoader.php
3906
%%WWWDIR%%/3rdparty/symfony/routing/Loader/schema/routing/routing-1.0.xsd
3957
%%WWWDIR%%/3rdparty/symfony/routing/Loader/schema/routing/routing-1.0.xsd
3907
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/DumperCollection.php
3958
%%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
3959
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/DumperRoute.php
3910
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumper.php
3960
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumper.php
3911
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php
3961
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php
3912
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php
3962
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php
3963
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/Dumper/StaticPrefixCollection.php
3913
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcher.php
3964
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcher.php
3914
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php
3965
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php
3915
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RequestMatcherInterface.php
3966
%%WWWDIR%%/3rdparty/symfony/routing/Matcher/RequestMatcherInterface.php
Lines 3926-3936 Link Here
3926
%%WWWDIR%%/3rdparty/symfony/routing/RouteCompilerInterface.php
3977
%%WWWDIR%%/3rdparty/symfony/routing/RouteCompilerInterface.php
3927
%%WWWDIR%%/3rdparty/symfony/routing/Router.php
3978
%%WWWDIR%%/3rdparty/symfony/routing/Router.php
3928
%%WWWDIR%%/3rdparty/symfony/routing/RouterInterface.php
3979
%%WWWDIR%%/3rdparty/symfony/routing/RouterInterface.php
3980
%%WWWDIR%%/3rdparty/symfony/routing/composer.json
3981
%%WWWDIR%%/3rdparty/symfony/translation/.gitignore
3982
%%WWWDIR%%/3rdparty/symfony/translation/CHANGELOG.md
3983
%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/AbstractOperation.php
3984
%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/MergeOperation.php
3985
%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/OperationInterface.php
3986
%%WWWDIR%%/3rdparty/symfony/translation/Catalogue/TargetOperation.php
3987
%%WWWDIR%%/3rdparty/symfony/translation/Command/XliffLintCommand.php
3988
%%WWWDIR%%/3rdparty/symfony/translation/DataCollector/TranslationDataCollector.php
3989
%%WWWDIR%%/3rdparty/symfony/translation/DataCollectorTranslator.php
3990
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/CsvFileDumper.php
3991
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/DumperInterface.php
3992
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/FileDumper.php
3993
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/IcuResFileDumper.php
3994
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/IniFileDumper.php
3995
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/JsonFileDumper.php
3996
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/MoFileDumper.php
3997
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/PhpFileDumper.php
3998
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/PoFileDumper.php
3999
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/QtFileDumper.php
4000
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/XliffFileDumper.php
4001
%%WWWDIR%%/3rdparty/symfony/translation/Dumper/YamlFileDumper.php
4002
%%WWWDIR%%/3rdparty/symfony/translation/Exception/ExceptionInterface.php
4003
%%WWWDIR%%/3rdparty/symfony/translation/Exception/InvalidArgumentException.php
4004
%%WWWDIR%%/3rdparty/symfony/translation/Exception/InvalidResourceException.php
4005
%%WWWDIR%%/3rdparty/symfony/translation/Exception/LogicException.php
4006
%%WWWDIR%%/3rdparty/symfony/translation/Exception/NotFoundResourceException.php
4007
%%WWWDIR%%/3rdparty/symfony/translation/Exception/RuntimeException.php
4008
%%WWWDIR%%/3rdparty/symfony/translation/Extractor/AbstractFileExtractor.php
4009
%%WWWDIR%%/3rdparty/symfony/translation/Extractor/ChainExtractor.php
4010
%%WWWDIR%%/3rdparty/symfony/translation/Extractor/ExtractorInterface.php
4011
%%WWWDIR%%/3rdparty/symfony/translation/IdentityTranslator.php
4012
%%WWWDIR%%/3rdparty/symfony/translation/Interval.php
4013
%%WWWDIR%%/3rdparty/symfony/translation/LICENSE
4014
%%WWWDIR%%/3rdparty/symfony/translation/Loader/ArrayLoader.php
4015
%%WWWDIR%%/3rdparty/symfony/translation/Loader/CsvFileLoader.php
4016
%%WWWDIR%%/3rdparty/symfony/translation/Loader/FileLoader.php
4017
%%WWWDIR%%/3rdparty/symfony/translation/Loader/IcuDatFileLoader.php
4018
%%WWWDIR%%/3rdparty/symfony/translation/Loader/IcuResFileLoader.php
4019
%%WWWDIR%%/3rdparty/symfony/translation/Loader/IniFileLoader.php
4020
%%WWWDIR%%/3rdparty/symfony/translation/Loader/JsonFileLoader.php
4021
%%WWWDIR%%/3rdparty/symfony/translation/Loader/LoaderInterface.php
4022
%%WWWDIR%%/3rdparty/symfony/translation/Loader/MoFileLoader.php
4023
%%WWWDIR%%/3rdparty/symfony/translation/Loader/PhpFileLoader.php
4024
%%WWWDIR%%/3rdparty/symfony/translation/Loader/PoFileLoader.php
4025
%%WWWDIR%%/3rdparty/symfony/translation/Loader/QtFileLoader.php
4026
%%WWWDIR%%/3rdparty/symfony/translation/Loader/XliffFileLoader.php
4027
%%WWWDIR%%/3rdparty/symfony/translation/Loader/YamlFileLoader.php
4028
%%WWWDIR%%/3rdparty/symfony/translation/Loader/schema/dic/xliff-core/xliff-core-1.2-strict.xsd
4029
%%WWWDIR%%/3rdparty/symfony/translation/Loader/schema/dic/xliff-core/xliff-core-2.0.xsd
4030
%%WWWDIR%%/3rdparty/symfony/translation/Loader/schema/dic/xliff-core/xml.xsd
4031
%%WWWDIR%%/3rdparty/symfony/translation/LoggingTranslator.php
4032
%%WWWDIR%%/3rdparty/symfony/translation/MessageCatalogue.php
4033
%%WWWDIR%%/3rdparty/symfony/translation/MessageCatalogueInterface.php
4034
%%WWWDIR%%/3rdparty/symfony/translation/MessageSelector.php
4035
%%WWWDIR%%/3rdparty/symfony/translation/MetadataAwareInterface.php
4036
%%WWWDIR%%/3rdparty/symfony/translation/PluralizationRules.php
4037
%%WWWDIR%%/3rdparty/symfony/translation/README.md
4038
%%WWWDIR%%/3rdparty/symfony/translation/Resources/schemas/xliff-core-1.2-strict.xsd
4039
%%WWWDIR%%/3rdparty/symfony/translation/Translator.php
4040
%%WWWDIR%%/3rdparty/symfony/translation/TranslatorBagInterface.php
4041
%%WWWDIR%%/3rdparty/symfony/translation/TranslatorInterface.php
4042
%%WWWDIR%%/3rdparty/symfony/translation/Util/ArrayConverter.php
4043
%%WWWDIR%%/3rdparty/symfony/translation/Writer/TranslationWriter.php
4044
%%WWWDIR%%/3rdparty/symfony/translation/composer.json
4045
%%WWWDIR%%/3rdparty/symfony/translation/phpunit.xml.dist
3929
%%WWWDIR%%/AUTHORS
4046
%%WWWDIR%%/AUTHORS
3930
@owner %%NEXTCLOUD_USERNAME%%
4047
@owner %%NEXTCLOUD_USERNAME%%
3931
@group %%NEXTCLOUD_GROUPNAME%%
4048
@group %%NEXTCLOUD_GROUPNAME%%
3932
%%WWWDIR%%/apps/activity/appinfo/app.php
4049
%%WWWDIR%%/apps/activity/appinfo/app.php
3933
%%WWWDIR%%/apps/activity/appinfo/database.xml
3934
%%WWWDIR%%/apps/activity/appinfo/info.xml
4050
%%WWWDIR%%/apps/activity/appinfo/info.xml
3935
%%WWWDIR%%/apps/activity/appinfo/routes.php
4051
%%WWWDIR%%/apps/activity/appinfo/routes.php
3936
%%WWWDIR%%/apps/activity/appinfo/signature.json
4052
%%WWWDIR%%/apps/activity/appinfo/signature.json
Lines 4148-4153 Link Here
4148
%%WWWDIR%%/apps/activity/lib/GroupHelperDisabled.php
4264
%%WWWDIR%%/apps/activity/lib/GroupHelperDisabled.php
4149
%%WWWDIR%%/apps/activity/lib/Hooks.php
4265
%%WWWDIR%%/apps/activity/lib/Hooks.php
4150
%%WWWDIR%%/apps/activity/lib/MailQueueHandler.php
4266
%%WWWDIR%%/apps/activity/lib/MailQueueHandler.php
4267
%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170808154933.php
4268
%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170808155040.php
4269
%%WWWDIR%%/apps/activity/lib/Migration/Version2006Date20170919095939.php
4151
%%WWWDIR%%/apps/activity/lib/Navigation.php
4270
%%WWWDIR%%/apps/activity/lib/Navigation.php
4152
%%WWWDIR%%/apps/activity/lib/Parameter/Collection.php
4271
%%WWWDIR%%/apps/activity/lib/Parameter/Collection.php
4153
%%WWWDIR%%/apps/activity/lib/Parameter/Factory.php
4272
%%WWWDIR%%/apps/activity/lib/Parameter/Factory.php
Lines 4168-4186 Link Here
4168
%%WWWDIR%%/apps/admin_audit/appinfo/app.php
4287
%%WWWDIR%%/apps/admin_audit/appinfo/app.php
4169
%%WWWDIR%%/apps/admin_audit/appinfo/info.xml
4288
%%WWWDIR%%/apps/admin_audit/appinfo/info.xml
4170
%%WWWDIR%%/apps/admin_audit/appinfo/signature.json
4289
%%WWWDIR%%/apps/admin_audit/appinfo/signature.json
4171
%%WWWDIR%%/apps/admin_audit/lib/actions/action.php
4290
%%WWWDIR%%/apps/admin_audit/composer/autoload.php
4172
%%WWWDIR%%/apps/admin_audit/lib/actions/auth.php
4291
%%WWWDIR%%/apps/admin_audit/composer/composer.json
4173
%%WWWDIR%%/apps/admin_audit/lib/actions/files.php
4292
%%WWWDIR%%/apps/admin_audit/composer/composer/ClassLoader.php
4174
%%WWWDIR%%/apps/admin_audit/lib/actions/groupmanagement.php
4293
%%WWWDIR%%/apps/admin_audit/composer/composer/LICENSE
4175
%%WWWDIR%%/apps/admin_audit/lib/actions/sharing.php
4294
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_classmap.php
4176
%%WWWDIR%%/apps/admin_audit/lib/actions/trashbin.php
4295
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_namespaces.php
4177
%%WWWDIR%%/apps/admin_audit/lib/actions/usermanagement.php
4296
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_psr4.php
4178
%%WWWDIR%%/apps/admin_audit/lib/actions/versions.php
4297
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_real.php
4179
%%WWWDIR%%/apps/admin_audit/lib/auditlogger.php
4298
%%WWWDIR%%/apps/admin_audit/composer/composer/autoload_static.php
4299
%%WWWDIR%%/apps/admin_audit/lib/Actions/Action.php
4300
%%WWWDIR%%/apps/admin_audit/lib/Actions/AppManagement.php
4301
%%WWWDIR%%/apps/admin_audit/lib/Actions/Auth.php
4302
%%WWWDIR%%/apps/admin_audit/lib/Actions/Console.php
4303
%%WWWDIR%%/apps/admin_audit/lib/Actions/Files.php
4304
%%WWWDIR%%/apps/admin_audit/lib/Actions/GroupManagement.php
4305
%%WWWDIR%%/apps/admin_audit/lib/Actions/Sharing.php
4306
%%WWWDIR%%/apps/admin_audit/lib/Actions/Trashbin.php
4307
%%WWWDIR%%/apps/admin_audit/lib/Actions/UserManagement.php
4308
%%WWWDIR%%/apps/admin_audit/lib/Actions/Versions.php
4309
%%WWWDIR%%/apps/admin_audit/lib/AppInfo/Application.php
4310
%%WWWDIR%%/apps/comments/.bowerrc
4180
%%WWWDIR%%/apps/comments/appinfo/app.php
4311
%%WWWDIR%%/apps/comments/appinfo/app.php
4181
%%WWWDIR%%/apps/comments/appinfo/info.xml
4312
%%WWWDIR%%/apps/comments/appinfo/info.xml
4182
%%WWWDIR%%/apps/comments/appinfo/routes.php
4313
%%WWWDIR%%/apps/comments/appinfo/routes.php
4183
%%WWWDIR%%/apps/comments/appinfo/signature.json
4314
%%WWWDIR%%/apps/comments/appinfo/signature.json
4315
%%WWWDIR%%/apps/comments/composer/autoload.php
4316
%%WWWDIR%%/apps/comments/composer/composer.json
4317
%%WWWDIR%%/apps/comments/composer/composer/ClassLoader.php
4318
%%WWWDIR%%/apps/comments/composer/composer/LICENSE
4319
%%WWWDIR%%/apps/comments/composer/composer/autoload_classmap.php
4320
%%WWWDIR%%/apps/comments/composer/composer/autoload_namespaces.php
4321
%%WWWDIR%%/apps/comments/composer/composer/autoload_psr4.php
4322
%%WWWDIR%%/apps/comments/composer/composer/autoload_real.php
4323
%%WWWDIR%%/apps/comments/composer/composer/autoload_static.php
4324
%%WWWDIR%%/apps/comments/css/autocomplete.scss
4184
%%WWWDIR%%/apps/comments/css/comments.css
4325
%%WWWDIR%%/apps/comments/css/comments.css
4185
%%WWWDIR%%/apps/comments/img/comments-dark.svg
4326
%%WWWDIR%%/apps/comments/img/comments-dark.svg
4186
%%WWWDIR%%/apps/comments/img/comments.svg
4327
%%WWWDIR%%/apps/comments/img/comments.svg
Lines 4192-4197 Link Here
4192
%%WWWDIR%%/apps/comments/js/commentsummarymodel.js
4333
%%WWWDIR%%/apps/comments/js/commentsummarymodel.js
4193
%%WWWDIR%%/apps/comments/js/filesplugin.js
4334
%%WWWDIR%%/apps/comments/js/filesplugin.js
4194
%%WWWDIR%%/apps/comments/js/merged.json
4335
%%WWWDIR%%/apps/comments/js/merged.json
4336
%%WWWDIR%%/apps/comments/js/vendor/At.js/dist/js/jquery.atwho.min.js
4337
%%WWWDIR%%/apps/comments/js/vendor/Caret.js/dist/jquery.caret.min.js
4195
%%WWWDIR%%/apps/comments/l10n/.gitkeep
4338
%%WWWDIR%%/apps/comments/l10n/.gitkeep
4196
%%WWWDIR%%/apps/comments/l10n/af.js
4339
%%WWWDIR%%/apps/comments/l10n/af.js
4197
%%WWWDIR%%/apps/comments/l10n/af.json
4340
%%WWWDIR%%/apps/comments/l10n/af.json
Lines 4400-4412 Link Here
4400
%%WWWDIR%%/apps/comments/lib/Activity/Provider.php
4543
%%WWWDIR%%/apps/comments/lib/Activity/Provider.php
4401
%%WWWDIR%%/apps/comments/lib/Activity/Setting.php
4544
%%WWWDIR%%/apps/comments/lib/Activity/Setting.php
4402
%%WWWDIR%%/apps/comments/lib/AppInfo/Application.php
4545
%%WWWDIR%%/apps/comments/lib/AppInfo/Application.php
4546
%%WWWDIR%%/apps/comments/lib/Collaboration/CommentersSorter.php
4403
%%WWWDIR%%/apps/comments/lib/Controller/Notifications.php
4547
%%WWWDIR%%/apps/comments/lib/Controller/Notifications.php
4404
%%WWWDIR%%/apps/comments/lib/EventHandler.php
4548
%%WWWDIR%%/apps/comments/lib/EventHandler.php
4549
%%WWWDIR%%/apps/comments/lib/JSSettingsHelper.php
4405
%%WWWDIR%%/apps/comments/lib/Notification/Listener.php
4550
%%WWWDIR%%/apps/comments/lib/Notification/Listener.php
4406
%%WWWDIR%%/apps/comments/lib/Notification/Notifier.php
4551
%%WWWDIR%%/apps/comments/lib/Notification/Notifier.php
4407
%%WWWDIR%%/apps/dav/appinfo/app.php
4552
%%WWWDIR%%/apps/dav/appinfo/app.php
4408
%%WWWDIR%%/apps/dav/appinfo/database.xml
4409
%%WWWDIR%%/apps/dav/appinfo/info.xml
4553
%%WWWDIR%%/apps/dav/appinfo/info.xml
4554
%%WWWDIR%%/apps/dav/appinfo/routes.php
4410
%%WWWDIR%%/apps/dav/appinfo/signature.json
4555
%%WWWDIR%%/apps/dav/appinfo/signature.json
4411
%%WWWDIR%%/apps/dav/appinfo/v1/caldav.php
4556
%%WWWDIR%%/apps/dav/appinfo/v1/caldav.php
4412
%%WWWDIR%%/apps/dav/appinfo/v1/carddav.php
4557
%%WWWDIR%%/apps/dav/appinfo/v1/carddav.php
Lines 4414-4419 Link Here
4414
%%WWWDIR%%/apps/dav/appinfo/v1/webdav.php
4559
%%WWWDIR%%/apps/dav/appinfo/v1/webdav.php
4415
%%WWWDIR%%/apps/dav/appinfo/v2/remote.php
4560
%%WWWDIR%%/apps/dav/appinfo/v2/remote.php
4416
%%WWWDIR%%/apps/dav/bin/chunkperf.php
4561
%%WWWDIR%%/apps/dav/bin/chunkperf.php
4562
%%WWWDIR%%/apps/dav/composer/autoload.php
4563
%%WWWDIR%%/apps/dav/composer/composer.json
4564
%%WWWDIR%%/apps/dav/composer/composer/ClassLoader.php
4565
%%WWWDIR%%/apps/dav/composer/composer/LICENSE
4566
%%WWWDIR%%/apps/dav/composer/composer/autoload_classmap.php
4567
%%WWWDIR%%/apps/dav/composer/composer/autoload_namespaces.php
4568
%%WWWDIR%%/apps/dav/composer/composer/autoload_psr4.php
4569
%%WWWDIR%%/apps/dav/composer/composer/autoload_real.php
4570
%%WWWDIR%%/apps/dav/composer/composer/autoload_static.php
4571
%%WWWDIR%%/apps/dav/js/settings-admin-caldav.js
4417
%%WWWDIR%%/apps/dav/l10n/.gitkeep
4572
%%WWWDIR%%/apps/dav/l10n/.gitkeep
4418
%%WWWDIR%%/apps/dav/l10n/bg.js
4573
%%WWWDIR%%/apps/dav/l10n/bg.js
4419
%%WWWDIR%%/apps/dav/l10n/bg.json
4574
%%WWWDIR%%/apps/dav/l10n/bg.json
Lines 4437-4442 Link Here
4437
%%WWWDIR%%/apps/dav/l10n/en_GB.json
4592
%%WWWDIR%%/apps/dav/l10n/en_GB.json
4438
%%WWWDIR%%/apps/dav/l10n/es.js
4593
%%WWWDIR%%/apps/dav/l10n/es.js
4439
%%WWWDIR%%/apps/dav/l10n/es.json
4594
%%WWWDIR%%/apps/dav/l10n/es.json
4595
%%WWWDIR%%/apps/dav/l10n/es_419.js
4596
%%WWWDIR%%/apps/dav/l10n/es_419.json
4440
%%WWWDIR%%/apps/dav/l10n/es_AR.js
4597
%%WWWDIR%%/apps/dav/l10n/es_AR.js
4441
%%WWWDIR%%/apps/dav/l10n/es_AR.json
4598
%%WWWDIR%%/apps/dav/l10n/es_AR.json
4442
%%WWWDIR%%/apps/dav/l10n/es_CL.js
4599
%%WWWDIR%%/apps/dav/l10n/es_CL.js
Lines 4469-4474 Link Here
4469
%%WWWDIR%%/apps/dav/l10n/es_SV.json
4626
%%WWWDIR%%/apps/dav/l10n/es_SV.json
4470
%%WWWDIR%%/apps/dav/l10n/es_UY.js
4627
%%WWWDIR%%/apps/dav/l10n/es_UY.js
4471
%%WWWDIR%%/apps/dav/l10n/es_UY.json
4628
%%WWWDIR%%/apps/dav/l10n/es_UY.json
4629
%%WWWDIR%%/apps/dav/l10n/et_EE.js
4630
%%WWWDIR%%/apps/dav/l10n/et_EE.json
4472
%%WWWDIR%%/apps/dav/l10n/eu.js
4631
%%WWWDIR%%/apps/dav/l10n/eu.js
4473
%%WWWDIR%%/apps/dav/l10n/eu.json
4632
%%WWWDIR%%/apps/dav/l10n/eu.json
4474
%%WWWDIR%%/apps/dav/l10n/fi.js
4633
%%WWWDIR%%/apps/dav/l10n/fi.js
Lines 4530-4538 Link Here
4530
%%WWWDIR%%/apps/dav/l10n/zh_TW.js
4689
%%WWWDIR%%/apps/dav/l10n/zh_TW.js
4531
%%WWWDIR%%/apps/dav/l10n/zh_TW.json
4690
%%WWWDIR%%/apps/dav/l10n/zh_TW.json
4532
%%WWWDIR%%/apps/dav/lib/AppInfo/Application.php
4691
%%WWWDIR%%/apps/dav/lib/AppInfo/Application.php
4692
%%WWWDIR%%/apps/dav/lib/AppInfo/PluginManager.php
4533
%%WWWDIR%%/apps/dav/lib/Avatars/AvatarHome.php
4693
%%WWWDIR%%/apps/dav/lib/Avatars/AvatarHome.php
4534
%%WWWDIR%%/apps/dav/lib/Avatars/AvatarNode.php
4694
%%WWWDIR%%/apps/dav/lib/Avatars/AvatarNode.php
4535
%%WWWDIR%%/apps/dav/lib/Avatars/RootCollection.php
4695
%%WWWDIR%%/apps/dav/lib/Avatars/RootCollection.php
4696
%%WWWDIR%%/apps/dav/lib/BackgroundJob/GenerateBirthdayCalendarBackgroundJob.php
4536
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Backend.php
4697
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Backend.php
4537
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Calendar.php
4698
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Calendar.php
4538
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Todo.php
4699
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Filter/Todo.php
Lines 4543-4555 Link Here
4543
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Calendar.php
4704
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Calendar.php
4544
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Event.php
4705
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Event.php
4545
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Todo.php
4706
%%WWWDIR%%/apps/dav/lib/CalDAV/Activity/Setting/Todo.php
4707
%%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayCalendar/EnablePlugin.php
4546
%%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayService.php
4708
%%WWWDIR%%/apps/dav/lib/CalDAV/BirthdayService.php
4547
%%WWWDIR%%/apps/dav/lib/CalDAV/CalDavBackend.php
4709
%%WWWDIR%%/apps/dav/lib/CalDAV/CalDavBackend.php
4548
%%WWWDIR%%/apps/dav/lib/CalDAV/Calendar.php
4710
%%WWWDIR%%/apps/dav/lib/CalDAV/Calendar.php
4549
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarHome.php
4711
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarHome.php
4712
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarImpl.php
4713
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarManager.php
4550
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarObject.php
4714
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarObject.php
4551
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarRoot.php
4715
%%WWWDIR%%/apps/dav/lib/CalDAV/CalendarRoot.php
4552
%%WWWDIR%%/apps/dav/lib/CalDAV/Plugin.php
4716
%%WWWDIR%%/apps/dav/lib/CalDAV/Plugin.php
4717
%%WWWDIR%%/apps/dav/lib/CalDAV/Principal/Collection.php
4718
%%WWWDIR%%/apps/dav/lib/CalDAV/Principal/User.php
4553
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendar.php
4719
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendar.php
4554
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarObject.php
4720
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarObject.php
4555
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarRoot.php
4721
%%WWWDIR%%/apps/dav/lib/CalDAV/PublicCalendarRoot.php
Lines 4575-4581 Link Here
4575
%%WWWDIR%%/apps/dav/lib/CardDAV/ImageExportPlugin.php
4741
%%WWWDIR%%/apps/dav/lib/CardDAV/ImageExportPlugin.php
4576
%%WWWDIR%%/apps/dav/lib/CardDAV/PhotoCache.php
4742
%%WWWDIR%%/apps/dav/lib/CardDAV/PhotoCache.php
4577
%%WWWDIR%%/apps/dav/lib/CardDAV/Plugin.php
4743
%%WWWDIR%%/apps/dav/lib/CardDAV/Plugin.php
4578
%%WWWDIR%%/apps/dav/lib/CardDAV/SyncJob.php
4579
%%WWWDIR%%/apps/dav/lib/CardDAV/SyncService.php
4744
%%WWWDIR%%/apps/dav/lib/CardDAV/SyncService.php
4580
%%WWWDIR%%/apps/dav/lib/CardDAV/UserAddressBooks.php
4745
%%WWWDIR%%/apps/dav/lib/CardDAV/UserAddressBooks.php
4581
%%WWWDIR%%/apps/dav/lib/CardDAV/Xml/Groups.php
4746
%%WWWDIR%%/apps/dav/lib/CardDAV/Xml/Groups.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 4654-4668 Link Here
4654
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php
4826
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php
4655
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php
4827
%%WWWDIR%%/apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php
4656
%%WWWDIR%%/apps/dav/lib/Upload/AssemblyStream.php
4828
%%WWWDIR%%/apps/dav/lib/Upload/AssemblyStream.php
4829
%%WWWDIR%%/apps/dav/lib/Upload/ChunkingPlugin.php
4657
%%WWWDIR%%/apps/dav/lib/Upload/FutureFile.php
4830
%%WWWDIR%%/apps/dav/lib/Upload/FutureFile.php
4658
%%WWWDIR%%/apps/dav/lib/Upload/RootCollection.php
4831
%%WWWDIR%%/apps/dav/lib/Upload/RootCollection.php
4659
%%WWWDIR%%/apps/dav/lib/Upload/UploadFolder.php
4832
%%WWWDIR%%/apps/dav/lib/Upload/UploadFolder.php
4660
%%WWWDIR%%/apps/dav/lib/Upload/UploadHome.php
4833
%%WWWDIR%%/apps/dav/lib/Upload/UploadHome.php
4661
%%WWWDIR%%/apps/dav/templates/exception.php
4834
%%WWWDIR%%/apps/dav/templates/exception.php
4835
%%WWWDIR%%/apps/dav/templates/settings-admin-caldav.php
4662
%%WWWDIR%%/apps/encryption/appinfo/app.php
4836
%%WWWDIR%%/apps/encryption/appinfo/app.php
4663
%%WWWDIR%%/apps/encryption/appinfo/info.xml
4837
%%WWWDIR%%/apps/encryption/appinfo/info.xml
4664
%%WWWDIR%%/apps/encryption/appinfo/routes.php
4838
%%WWWDIR%%/apps/encryption/appinfo/routes.php
4665
%%WWWDIR%%/apps/encryption/appinfo/signature.json
4839
%%WWWDIR%%/apps/encryption/appinfo/signature.json
4840
%%WWWDIR%%/apps/encryption/composer/autoload.php
4841
%%WWWDIR%%/apps/encryption/composer/composer.json
4842
%%WWWDIR%%/apps/encryption/composer/composer/ClassLoader.php
4843
%%WWWDIR%%/apps/encryption/composer/composer/LICENSE
4844
%%WWWDIR%%/apps/encryption/composer/composer/autoload_classmap.php
4845
%%WWWDIR%%/apps/encryption/composer/composer/autoload_namespaces.php
4846
%%WWWDIR%%/apps/encryption/composer/composer/autoload_psr4.php
4847
%%WWWDIR%%/apps/encryption/composer/composer/autoload_real.php
4848
%%WWWDIR%%/apps/encryption/composer/composer/autoload_static.php
4666
%%WWWDIR%%/apps/encryption/css/settings-admin.css
4849
%%WWWDIR%%/apps/encryption/css/settings-admin.css
4667
%%WWWDIR%%/apps/encryption/css/settings-personal.css
4850
%%WWWDIR%%/apps/encryption/css/settings-personal.css
4668
%%WWWDIR%%/apps/encryption/img/app.svg
4851
%%WWWDIR%%/apps/encryption/img/app.svg
Lines 4704-4709 Link Here
4704
%%WWWDIR%%/apps/encryption/l10n/eo.json
4887
%%WWWDIR%%/apps/encryption/l10n/eo.json
4705
%%WWWDIR%%/apps/encryption/l10n/es.js
4888
%%WWWDIR%%/apps/encryption/l10n/es.js
4706
%%WWWDIR%%/apps/encryption/l10n/es.json
4889
%%WWWDIR%%/apps/encryption/l10n/es.json
4890
%%WWWDIR%%/apps/encryption/l10n/es_419.js
4891
%%WWWDIR%%/apps/encryption/l10n/es_419.json
4707
%%WWWDIR%%/apps/encryption/l10n/es_AR.js
4892
%%WWWDIR%%/apps/encryption/l10n/es_AR.js
4708
%%WWWDIR%%/apps/encryption/l10n/es_AR.json
4893
%%WWWDIR%%/apps/encryption/l10n/es_AR.json
4709
%%WWWDIR%%/apps/encryption/l10n/es_CL.js
4894
%%WWWDIR%%/apps/encryption/l10n/es_CL.js
Lines 4835-4840 Link Here
4835
%%WWWDIR%%/apps/encryption/l10n/zh_TW.js
5020
%%WWWDIR%%/apps/encryption/l10n/zh_TW.js
4836
%%WWWDIR%%/apps/encryption/l10n/zh_TW.json
5021
%%WWWDIR%%/apps/encryption/l10n/zh_TW.json
4837
%%WWWDIR%%/apps/encryption/lib/AppInfo/Application.php
5022
%%WWWDIR%%/apps/encryption/lib/AppInfo/Application.php
5023
%%WWWDIR%%/apps/encryption/lib/Command/DisableMasterKey.php
4838
%%WWWDIR%%/apps/encryption/lib/Command/EnableMasterKey.php
5024
%%WWWDIR%%/apps/encryption/lib/Command/EnableMasterKey.php
4839
%%WWWDIR%%/apps/encryption/lib/Command/MigrateKeys.php
5025
%%WWWDIR%%/apps/encryption/lib/Command/MigrateKeys.php
4840
%%WWWDIR%%/apps/encryption/lib/Controller/RecoveryController.php
5026
%%WWWDIR%%/apps/encryption/lib/Controller/RecoveryController.php
Lines 4853-4864 Link Here
4853
%%WWWDIR%%/apps/encryption/lib/Hooks/UserHooks.php
5039
%%WWWDIR%%/apps/encryption/lib/Hooks/UserHooks.php
4854
%%WWWDIR%%/apps/encryption/lib/KeyManager.php
5040
%%WWWDIR%%/apps/encryption/lib/KeyManager.php
4855
%%WWWDIR%%/apps/encryption/lib/Migration.php
5041
%%WWWDIR%%/apps/encryption/lib/Migration.php
5042
%%WWWDIR%%/apps/encryption/lib/Migration/SetMasterKeyStatus.php
4856
%%WWWDIR%%/apps/encryption/lib/Recovery.php
5043
%%WWWDIR%%/apps/encryption/lib/Recovery.php
4857
%%WWWDIR%%/apps/encryption/lib/Session.php
5044
%%WWWDIR%%/apps/encryption/lib/Session.php
4858
%%WWWDIR%%/apps/encryption/lib/Settings/Admin.php
5045
%%WWWDIR%%/apps/encryption/lib/Settings/Admin.php
5046
%%WWWDIR%%/apps/encryption/lib/Settings/Personal.php
4859
%%WWWDIR%%/apps/encryption/lib/Users/Setup.php
5047
%%WWWDIR%%/apps/encryption/lib/Users/Setup.php
4860
%%WWWDIR%%/apps/encryption/lib/Util.php
5048
%%WWWDIR%%/apps/encryption/lib/Util.php
4861
%%WWWDIR%%/apps/encryption/settings/settings-personal.php
4862
%%WWWDIR%%/apps/encryption/templates/altmail.php
5049
%%WWWDIR%%/apps/encryption/templates/altmail.php
4863
%%WWWDIR%%/apps/encryption/templates/mail.php
5050
%%WWWDIR%%/apps/encryption/templates/mail.php
4864
%%WWWDIR%%/apps/encryption/templates/settings-admin.php
5051
%%WWWDIR%%/apps/encryption/templates/settings-admin.php
Lines 4868-4873 Link Here
4868
%%WWWDIR%%/apps/federatedfilesharing/appinfo/info.xml
5055
%%WWWDIR%%/apps/federatedfilesharing/appinfo/info.xml
4869
%%WWWDIR%%/apps/federatedfilesharing/appinfo/routes.php
5056
%%WWWDIR%%/apps/federatedfilesharing/appinfo/routes.php
4870
%%WWWDIR%%/apps/federatedfilesharing/appinfo/signature.json
5057
%%WWWDIR%%/apps/federatedfilesharing/appinfo/signature.json
5058
%%WWWDIR%%/apps/federatedfilesharing/composer/autoload.php
5059
%%WWWDIR%%/apps/federatedfilesharing/composer/composer.json
5060
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/ClassLoader.php
5061
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/LICENSE
5062
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_classmap.php
5063
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_namespaces.php
5064
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_psr4.php
5065
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_real.php
5066
%%WWWDIR%%/apps/federatedfilesharing/composer/composer/autoload_static.php
4871
%%WWWDIR%%/apps/federatedfilesharing/css/settings-personal.css
5067
%%WWWDIR%%/apps/federatedfilesharing/css/settings-personal.css
4872
%%WWWDIR%%/apps/federatedfilesharing/img/social-diaspora.svg
5068
%%WWWDIR%%/apps/federatedfilesharing/img/social-diaspora.svg
4873
%%WWWDIR%%/apps/federatedfilesharing/img/social-facebook.svg
5069
%%WWWDIR%%/apps/federatedfilesharing/img/social-facebook.svg
Lines 4905-4910 Link Here
4905
%%WWWDIR%%/apps/federatedfilesharing/l10n/eo.json
5101
%%WWWDIR%%/apps/federatedfilesharing/l10n/eo.json
4906
%%WWWDIR%%/apps/federatedfilesharing/l10n/es.js
5102
%%WWWDIR%%/apps/federatedfilesharing/l10n/es.js
4907
%%WWWDIR%%/apps/federatedfilesharing/l10n/es.json
5103
%%WWWDIR%%/apps/federatedfilesharing/l10n/es.json
5104
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_419.js
5105
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_419.json
4908
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_AR.js
5106
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_AR.js
4909
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_AR.json
5107
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_AR.json
4910
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CL.js
5108
%%WWWDIR%%/apps/federatedfilesharing/l10n/es_CL.js
Lines 5032-5039 Link Here
5032
%%WWWDIR%%/apps/federatedfilesharing/lib/Notifications.php
5230
%%WWWDIR%%/apps/federatedfilesharing/lib/Notifications.php
5033
%%WWWDIR%%/apps/federatedfilesharing/lib/Notifier.php
5231
%%WWWDIR%%/apps/federatedfilesharing/lib/Notifier.php
5034
%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Admin.php
5232
%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Admin.php
5233
%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/Personal.php
5234
%%WWWDIR%%/apps/federatedfilesharing/lib/Settings/PersonalSection.php
5035
%%WWWDIR%%/apps/federatedfilesharing/lib/TokenHandler.php
5235
%%WWWDIR%%/apps/federatedfilesharing/lib/TokenHandler.php
5036
%%WWWDIR%%/apps/federatedfilesharing/settings-personal.php
5037
%%WWWDIR%%/apps/federatedfilesharing/templates/settings-admin.php
5236
%%WWWDIR%%/apps/federatedfilesharing/templates/settings-admin.php
5038
%%WWWDIR%%/apps/federatedfilesharing/templates/settings-personal.php
5237
%%WWWDIR%%/apps/federatedfilesharing/templates/settings-personal.php
5039
%%WWWDIR%%/apps/federation/appinfo/app.php
5238
%%WWWDIR%%/apps/federation/appinfo/app.php
Lines 5041-5046 Link Here
5041
%%WWWDIR%%/apps/federation/appinfo/info.xml
5240
%%WWWDIR%%/apps/federation/appinfo/info.xml
5042
%%WWWDIR%%/apps/federation/appinfo/routes.php
5241
%%WWWDIR%%/apps/federation/appinfo/routes.php
5043
%%WWWDIR%%/apps/federation/appinfo/signature.json
5242
%%WWWDIR%%/apps/federation/appinfo/signature.json
5243
%%WWWDIR%%/apps/federation/composer/autoload.php
5244
%%WWWDIR%%/apps/federation/composer/composer.json
5245
%%WWWDIR%%/apps/federation/composer/composer/ClassLoader.php
5246
%%WWWDIR%%/apps/federation/composer/composer/LICENSE
5247
%%WWWDIR%%/apps/federation/composer/composer/autoload_classmap.php
5248
%%WWWDIR%%/apps/federation/composer/composer/autoload_namespaces.php
5249
%%WWWDIR%%/apps/federation/composer/composer/autoload_psr4.php
5250
%%WWWDIR%%/apps/federation/composer/composer/autoload_real.php
5251
%%WWWDIR%%/apps/federation/composer/composer/autoload_static.php
5044
%%WWWDIR%%/apps/federation/css/settings-admin.css
5252
%%WWWDIR%%/apps/federation/css/settings-admin.css
5045
%%WWWDIR%%/apps/federation/img/app.svg
5253
%%WWWDIR%%/apps/federation/img/app.svg
5046
%%WWWDIR%%/apps/federation/js/settings-admin.js
5254
%%WWWDIR%%/apps/federation/js/settings-admin.js
Lines 5071-5076 Link Here
5071
%%WWWDIR%%/apps/federation/l10n/eo.json
5279
%%WWWDIR%%/apps/federation/l10n/eo.json
5072
%%WWWDIR%%/apps/federation/l10n/es.js
5280
%%WWWDIR%%/apps/federation/l10n/es.js
5073
%%WWWDIR%%/apps/federation/l10n/es.json
5281
%%WWWDIR%%/apps/federation/l10n/es.json
5282
%%WWWDIR%%/apps/federation/l10n/es_419.js
5283
%%WWWDIR%%/apps/federation/l10n/es_419.json
5074
%%WWWDIR%%/apps/federation/l10n/es_AR.js
5284
%%WWWDIR%%/apps/federation/l10n/es_AR.js
5075
%%WWWDIR%%/apps/federation/l10n/es_AR.json
5285
%%WWWDIR%%/apps/federation/l10n/es_AR.json
5076
%%WWWDIR%%/apps/federation/l10n/es_CL.js
5286
%%WWWDIR%%/apps/federation/l10n/es_CL.js
Lines 5203-5208 Link Here
5203
%%WWWDIR%%/apps/files/appinfo/info.xml
5413
%%WWWDIR%%/apps/files/appinfo/info.xml
5204
%%WWWDIR%%/apps/files/appinfo/routes.php
5414
%%WWWDIR%%/apps/files/appinfo/routes.php
5205
%%WWWDIR%%/apps/files/appinfo/signature.json
5415
%%WWWDIR%%/apps/files/appinfo/signature.json
5416
%%WWWDIR%%/apps/files/composer/autoload.php
5417
%%WWWDIR%%/apps/files/composer/composer.json
5418
%%WWWDIR%%/apps/files/composer/composer/ClassLoader.php
5419
%%WWWDIR%%/apps/files/composer/composer/LICENSE
5420
%%WWWDIR%%/apps/files/composer/composer/autoload_classmap.php
5421
%%WWWDIR%%/apps/files/composer/composer/autoload_namespaces.php
5422
%%WWWDIR%%/apps/files/composer/composer/autoload_psr4.php
5423
%%WWWDIR%%/apps/files/composer/composer/autoload_real.php
5424
%%WWWDIR%%/apps/files/composer/composer/autoload_static.php
5206
%%WWWDIR%%/apps/files/css/detailsView.scss
5425
%%WWWDIR%%/apps/files/css/detailsView.scss
5207
%%WWWDIR%%/apps/files/css/files.scss
5426
%%WWWDIR%%/apps/files/css/files.scss
5208
%%WWWDIR%%/apps/files/css/merged.scss
5427
%%WWWDIR%%/apps/files/css/merged.scss
Lines 5220-5225 Link Here
5220
%%WWWDIR%%/apps/files/img/external.svg
5439
%%WWWDIR%%/apps/files/img/external.svg
5221
%%WWWDIR%%/apps/files/img/folder.svg
5440
%%WWWDIR%%/apps/files/img/folder.svg
5222
%%WWWDIR%%/apps/files/img/public.svg
5441
%%WWWDIR%%/apps/files/img/public.svg
5442
%%WWWDIR%%/apps/files/img/quota.svg
5223
%%WWWDIR%%/apps/files/img/recent.svg
5443
%%WWWDIR%%/apps/files/img/recent.svg
5224
%%WWWDIR%%/apps/files/img/share.svg
5444
%%WWWDIR%%/apps/files/img/share.svg
5225
%%WWWDIR%%/apps/files/img/star.svg
5445
%%WWWDIR%%/apps/files/img/star.svg
Lines 5306-5311 Link Here
5306
%%WWWDIR%%/apps/files/l10n/eo.json
5526
%%WWWDIR%%/apps/files/l10n/eo.json
5307
%%WWWDIR%%/apps/files/l10n/es.js
5527
%%WWWDIR%%/apps/files/l10n/es.js
5308
%%WWWDIR%%/apps/files/l10n/es.json
5528
%%WWWDIR%%/apps/files/l10n/es.json
5529
%%WWWDIR%%/apps/files/l10n/es_419.js
5530
%%WWWDIR%%/apps/files/l10n/es_419.json
5309
%%WWWDIR%%/apps/files/l10n/es_AR.js
5531
%%WWWDIR%%/apps/files/l10n/es_AR.js
5310
%%WWWDIR%%/apps/files/l10n/es_AR.json
5532
%%WWWDIR%%/apps/files/l10n/es_AR.json
5311
%%WWWDIR%%/apps/files/l10n/es_CL.js
5533
%%WWWDIR%%/apps/files/l10n/es_CL.js
Lines 5535-5555 Link Here
5535
%%WWWDIR%%/apps/files/templates/recentlist.php
5757
%%WWWDIR%%/apps/files/templates/recentlist.php
5536
%%WWWDIR%%/apps/files/templates/simplelist.php
5758
%%WWWDIR%%/apps/files/templates/simplelist.php
5537
%%WWWDIR%%/apps/files_external/3rdparty/.gitignore
5759
%%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
5760
%%WWWDIR%%/apps/files_external/3rdparty/autoload.php
5554
%%WWWDIR%%/apps/files_external/3rdparty/composer.json
5761
%%WWWDIR%%/apps/files_external/3rdparty/composer.json
5555
%%WWWDIR%%/apps/files_external/3rdparty/composer.lock
5762
%%WWWDIR%%/apps/files_external/3rdparty/composer.lock
Lines 5561-5705 Link Here
5561
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_real.php
5768
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_real.php
5562
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_static.php
5769
%%WWWDIR%%/apps/files_external/3rdparty/composer/autoload_static.php
5563
%%WWWDIR%%/apps/files_external/3rdparty/composer/installed.json
5770
%%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
5771
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/.gitignore
5704
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/LICENSE.txt
5772
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/LICENSE.txt
5705
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/README.md
5773
%%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
5788
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/ForbiddenException.php
5721
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/HostDownException.php
5789
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/HostDownException.php
5722
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidHostException.php
5790
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidHostException.php
5791
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidParameterException.php
5723
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidPathException.php
5792
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidPathException.php
5724
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidRequestException.php
5793
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidRequestException.php
5725
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidResourceException.php
5794
%%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
5797
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NoRouteToHostException.php
5729
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotEmptyException.php
5798
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotEmptyException.php
5730
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotFoundException.php
5799
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/NotFoundException.php
5800
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/OutOfSpaceException.php
5801
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/RevisionMismatchException.php
5731
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/TimedOutException.php
5802
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/Exception/TimedOutException.php
5732
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/FileInfo.php
5803
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/FileInfo.php
5733
%%WWWDIR%%/apps/files_external/3rdparty/icewind/smb/src/IFileInfo.php
5804
%%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
5839
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/UrlCallBack.php
5769
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Wrapper.php
5840
%%WWWDIR%%/apps/files_external/3rdparty/icewind/streams/src/Wrapper.php
5770
%%WWWDIR%%/apps/files_external/ajax/applicable.php
5841
%%WWWDIR%%/apps/files_external/ajax/applicable.php
5771
%%WWWDIR%%/apps/files_external/ajax/oauth1.php
5772
%%WWWDIR%%/apps/files_external/ajax/oauth2.php
5842
%%WWWDIR%%/apps/files_external/ajax/oauth2.php
5773
%%WWWDIR%%/apps/files_external/appinfo/app.php
5843
%%WWWDIR%%/apps/files_external/appinfo/app.php
5774
%%WWWDIR%%/apps/files_external/appinfo/database.xml
5844
%%WWWDIR%%/apps/files_external/appinfo/database.xml
Lines 5780-5787 Link Here
5780
%%WWWDIR%%/apps/files_external/img/app-dark.svg
5850
%%WWWDIR%%/apps/files_external/img/app-dark.svg
5781
%%WWWDIR%%/apps/files_external/img/app.svg
5851
%%WWWDIR%%/apps/files_external/img/app.svg
5782
%%WWWDIR%%/apps/files_external/js/app.js
5852
%%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
5853
%%WWWDIR%%/apps/files_external/js/mountsfilelist.js
5786
%%WWWDIR%%/apps/files_external/js/oauth1.js
5854
%%WWWDIR%%/apps/files_external/js/oauth1.js
5787
%%WWWDIR%%/apps/files_external/js/oauth2.js
5855
%%WWWDIR%%/apps/files_external/js/oauth2.js
Lines 5830-5835 Link Here
5830
%%WWWDIR%%/apps/files_external/l10n/eo.json
5898
%%WWWDIR%%/apps/files_external/l10n/eo.json
5831
%%WWWDIR%%/apps/files_external/l10n/es.js
5899
%%WWWDIR%%/apps/files_external/l10n/es.js
5832
%%WWWDIR%%/apps/files_external/l10n/es.json
5900
%%WWWDIR%%/apps/files_external/l10n/es.json
5901
%%WWWDIR%%/apps/files_external/l10n/es_419.js
5902
%%WWWDIR%%/apps/files_external/l10n/es_419.json
5833
%%WWWDIR%%/apps/files_external/l10n/es_AR.js
5903
%%WWWDIR%%/apps/files_external/l10n/es_AR.js
5834
%%WWWDIR%%/apps/files_external/l10n/es_AR.json
5904
%%WWWDIR%%/apps/files_external/l10n/es_AR.json
5835
%%WWWDIR%%/apps/files_external/l10n/es_CL.js
5905
%%WWWDIR%%/apps/files_external/l10n/es_CL.js
Lines 6014-6019 Link Here
6014
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/AuthMechanism.php
6084
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/AuthMechanism.php
6015
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Builtin.php
6085
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/Builtin.php
6016
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/IUserProvided.php
6086
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/IUserProvided.php
6087
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/InvalidAuth.php
6017
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/NullMechanism.php
6088
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/NullMechanism.php
6018
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth1/OAuth1.php
6089
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth1/OAuth1.php
6019
%%WWWDIR%%/apps/files_external/lib/Lib/Auth/OAuth2/OAuth2.php
6090
%%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
6099
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/AmazonS3.php
6029
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Backend.php
6100
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Backend.php
6030
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/DAV.php
6101
%%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
6102
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/FTP.php
6033
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Google.php
6103
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/InvalidBackend.php
6034
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/LegacyBackend.php
6104
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/LegacyBackend.php
6035
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Local.php
6105
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/Local.php
6036
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/OwnCloud.php
6106
%%WWWDIR%%/apps/files_external/lib/Lib/Backend/OwnCloud.php
Lines 6053-6061 Link Here
6053
%%WWWDIR%%/apps/files_external/lib/Lib/PriorityTrait.php
6123
%%WWWDIR%%/apps/files_external/lib/Lib/PriorityTrait.php
6054
%%WWWDIR%%/apps/files_external/lib/Lib/SessionStorageWrapper.php
6124
%%WWWDIR%%/apps/files_external/lib/Lib/SessionStorageWrapper.php
6055
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/AmazonS3.php
6125
%%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
6126
%%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
6127
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/OwnCloud.php
6060
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SFTP.php
6128
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SFTP.php
6061
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SMB.php
6129
%%WWWDIR%%/apps/files_external/lib/Lib/Storage/SMB.php
Lines 6078-6087 Link Here
6078
%%WWWDIR%%/apps/files_external/lib/Service/UserStoragesService.php
6146
%%WWWDIR%%/apps/files_external/lib/Service/UserStoragesService.php
6079
%%WWWDIR%%/apps/files_external/lib/Service/UserTrait.php
6147
%%WWWDIR%%/apps/files_external/lib/Service/UserTrait.php
6080
%%WWWDIR%%/apps/files_external/lib/Settings/Admin.php
6148
%%WWWDIR%%/apps/files_external/lib/Settings/Admin.php
6149
%%WWWDIR%%/apps/files_external/lib/Settings/Personal.php
6150
%%WWWDIR%%/apps/files_external/lib/Settings/PersonalSection.php
6081
%%WWWDIR%%/apps/files_external/lib/Settings/Section.php
6151
%%WWWDIR%%/apps/files_external/lib/Settings/Section.php
6082
%%WWWDIR%%/apps/files_external/lib/config.php
6152
%%WWWDIR%%/apps/files_external/lib/config.php
6083
%%WWWDIR%%/apps/files_external/list.php
6153
%%WWWDIR%%/apps/files_external/list.php
6084
%%WWWDIR%%/apps/files_external/personal.php
6085
%%WWWDIR%%/apps/files_external/templates/list.php
6154
%%WWWDIR%%/apps/files_external/templates/list.php
6086
%%WWWDIR%%/apps/files_external/templates/settings.php
6155
%%WWWDIR%%/apps/files_external/templates/settings.php
6087
%%WWWDIR%%/apps/files_pdfviewer/.github/contributing.md
6156
%%WWWDIR%%/apps/files_pdfviewer/.github/contributing.md
Lines 6466-6477 Link Here
6466
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/zu/viewer.properties
6535
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/locale/zu/viewer.properties
6467
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.css
6536
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.css
6468
%%WWWDIR%%/apps/files_pdfviewer/vendor/pdfjs/web/viewer.js
6537
%%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
6538
%%WWWDIR%%/apps/files_sharing/appinfo/app.php
6471
%%WWWDIR%%/apps/files_sharing/appinfo/database.xml
6539
%%WWWDIR%%/apps/files_sharing/appinfo/database.xml
6472
%%WWWDIR%%/apps/files_sharing/appinfo/info.xml
6540
%%WWWDIR%%/apps/files_sharing/appinfo/info.xml
6473
%%WWWDIR%%/apps/files_sharing/appinfo/routes.php
6541
%%WWWDIR%%/apps/files_sharing/appinfo/routes.php
6474
%%WWWDIR%%/apps/files_sharing/appinfo/signature.json
6542
%%WWWDIR%%/apps/files_sharing/appinfo/signature.json
6543
%%WWWDIR%%/apps/files_sharing/composer/autoload.php
6544
%%WWWDIR%%/apps/files_sharing/composer/composer.json
6545
%%WWWDIR%%/apps/files_sharing/composer/composer/ClassLoader.php
6546
%%WWWDIR%%/apps/files_sharing/composer/composer/LICENSE
6547
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_classmap.php
6548
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_namespaces.php
6549
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_psr4.php
6550
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_real.php
6551
%%WWWDIR%%/apps/files_sharing/composer/composer/autoload_static.php
6475
%%WWWDIR%%/apps/files_sharing/css/404.css
6552
%%WWWDIR%%/apps/files_sharing/css/404.css
6476
%%WWWDIR%%/apps/files_sharing/css/authenticate.css
6553
%%WWWDIR%%/apps/files_sharing/css/authenticate.css
6477
%%WWWDIR%%/apps/files_sharing/css/mergedAdditionalStyles.scss
6554
%%WWWDIR%%/apps/files_sharing/css/mergedAdditionalStyles.scss
Lines 6532-6537 Link Here
6532
%%WWWDIR%%/apps/files_sharing/l10n/eo.json
6609
%%WWWDIR%%/apps/files_sharing/l10n/eo.json
6533
%%WWWDIR%%/apps/files_sharing/l10n/es.js
6610
%%WWWDIR%%/apps/files_sharing/l10n/es.js
6534
%%WWWDIR%%/apps/files_sharing/l10n/es.json
6611
%%WWWDIR%%/apps/files_sharing/l10n/es.json
6612
%%WWWDIR%%/apps/files_sharing/l10n/es_419.js
6613
%%WWWDIR%%/apps/files_sharing/l10n/es_419.json
6535
%%WWWDIR%%/apps/files_sharing/l10n/es_AR.js
6614
%%WWWDIR%%/apps/files_sharing/l10n/es_AR.js
6536
%%WWWDIR%%/apps/files_sharing/l10n/es_AR.json
6615
%%WWWDIR%%/apps/files_sharing/l10n/es_AR.json
6537
%%WWWDIR%%/apps/files_sharing/l10n/es_CL.js
6616
%%WWWDIR%%/apps/files_sharing/l10n/es_CL.js
Lines 6709-6714 Link Here
6709
%%WWWDIR%%/apps/files_sharing/lib/AppInfo/Application.php
6788
%%WWWDIR%%/apps/files_sharing/lib/AppInfo/Application.php
6710
%%WWWDIR%%/apps/files_sharing/lib/Cache.php
6789
%%WWWDIR%%/apps/files_sharing/lib/Cache.php
6711
%%WWWDIR%%/apps/files_sharing/lib/Capabilities.php
6790
%%WWWDIR%%/apps/files_sharing/lib/Capabilities.php
6791
%%WWWDIR%%/apps/files_sharing/lib/Collaboration/ShareRecipientSorter.php
6712
%%WWWDIR%%/apps/files_sharing/lib/Command/CleanupRemoteStorages.php
6792
%%WWWDIR%%/apps/files_sharing/lib/Command/CleanupRemoteStorages.php
6713
%%WWWDIR%%/apps/files_sharing/lib/Controller/ExternalSharesController.php
6793
%%WWWDIR%%/apps/files_sharing/lib/Controller/ExternalSharesController.php
6714
%%WWWDIR%%/apps/files_sharing/lib/Controller/PublicPreviewController.php
6794
%%WWWDIR%%/apps/files_sharing/lib/Controller/PublicPreviewController.php
Lines 6715-6720 Link Here
6715
%%WWWDIR%%/apps/files_sharing/lib/Controller/RemoteController.php
6795
%%WWWDIR%%/apps/files_sharing/lib/Controller/RemoteController.php
6716
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareAPIController.php
6796
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareAPIController.php
6717
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareController.php
6797
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareController.php
6798
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareInfoController.php
6718
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareesAPIController.php
6799
%%WWWDIR%%/apps/files_sharing/lib/Controller/ShareesAPIController.php
6719
%%WWWDIR%%/apps/files_sharing/lib/DeleteOrphanedSharesJob.php
6800
%%WWWDIR%%/apps/files_sharing/lib/DeleteOrphanedSharesJob.php
6720
%%WWWDIR%%/apps/files_sharing/lib/Exceptions/BrokenPath.php
6801
%%WWWDIR%%/apps/files_sharing/lib/Exceptions/BrokenPath.php
Lines 6731-6736 Link Here
6731
%%WWWDIR%%/apps/files_sharing/lib/Hooks.php
6812
%%WWWDIR%%/apps/files_sharing/lib/Hooks.php
6732
%%WWWDIR%%/apps/files_sharing/lib/ISharedStorage.php
6813
%%WWWDIR%%/apps/files_sharing/lib/ISharedStorage.php
6733
%%WWWDIR%%/apps/files_sharing/lib/Middleware/OCSShareAPIMiddleware.php
6814
%%WWWDIR%%/apps/files_sharing/lib/Middleware/OCSShareAPIMiddleware.php
6815
%%WWWDIR%%/apps/files_sharing/lib/Middleware/ShareInfoMiddleware.php
6734
%%WWWDIR%%/apps/files_sharing/lib/Middleware/SharingCheckMiddleware.php
6816
%%WWWDIR%%/apps/files_sharing/lib/Middleware/SharingCheckMiddleware.php
6735
%%WWWDIR%%/apps/files_sharing/lib/Migration/OwncloudGuestShareType.php
6817
%%WWWDIR%%/apps/files_sharing/lib/Migration/OwncloudGuestShareType.php
6736
%%WWWDIR%%/apps/files_sharing/lib/Migration/SetPasswordColumn.php
6818
%%WWWDIR%%/apps/files_sharing/lib/Migration/SetPasswordColumn.php
Lines 6750-6760 Link Here
6750
%%WWWDIR%%/apps/files_texteditor/.github/contributing.md
6832
%%WWWDIR%%/apps/files_texteditor/.github/contributing.md
6751
%%WWWDIR%%/apps/files_texteditor/.github/issue_template.md
6833
%%WWWDIR%%/apps/files_texteditor/.github/issue_template.md
6752
%%WWWDIR%%/apps/files_texteditor/appinfo/app.php
6834
%%WWWDIR%%/apps/files_texteditor/appinfo/app.php
6753
%%WWWDIR%%/apps/files_texteditor/appinfo/application.php
6754
%%WWWDIR%%/apps/files_texteditor/appinfo/info.xml
6835
%%WWWDIR%%/apps/files_texteditor/appinfo/info.xml
6755
%%WWWDIR%%/apps/files_texteditor/appinfo/routes.php
6836
%%WWWDIR%%/apps/files_texteditor/appinfo/routes.php
6756
%%WWWDIR%%/apps/files_texteditor/appinfo/signature.json
6837
%%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
6838
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.eot
6759
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg
6839
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg
6760
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf
6840
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf
Lines 6763-6768 Link Here
6763
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/stylesheet.scss
6843
%%WWWDIR%%/apps/files_texteditor/css/DroidSansMono/stylesheet.scss
6764
%%WWWDIR%%/apps/files_texteditor/css/merged.scss
6844
%%WWWDIR%%/apps/files_texteditor/css/merged.scss
6765
%%WWWDIR%%/apps/files_texteditor/css/mobile.scss
6845
%%WWWDIR%%/apps/files_texteditor/css/mobile.scss
6846
%%WWWDIR%%/apps/files_texteditor/css/public-share.css
6766
%%WWWDIR%%/apps/files_texteditor/css/style.scss
6847
%%WWWDIR%%/apps/files_texteditor/css/style.scss
6767
%%WWWDIR%%/apps/files_texteditor/img/app.png
6848
%%WWWDIR%%/apps/files_texteditor/img/app.png
6768
%%WWWDIR%%/apps/files_texteditor/img/app.svg
6849
%%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
6868
%%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
6869
%%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
6870
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-batchfile.js
6871
%%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
6872
%%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
6873
%%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
6874
%%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
6900
%%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
6901
%%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
6902
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-golang.js
6903
%%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
6904
%%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
6905
%%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
6906
%%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
6907
%%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
6908
%%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
6909
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-haxe.js
6910
%%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
6911
%%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
6912
%%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
6913
%%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
6954
%%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
6955
%%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
6956
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-php.js
6957
%%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
6958
%%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
6959
%%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
6960
%%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
6980
%%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
6981
%%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
6982
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-space.js
6983
%%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
6984
%%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
6985
%%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
6986
%%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
6993
%%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
6994
%%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
6995
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/mode-tsx.js
6996
%%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
6997
%%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
6998
%%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
6999
%%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
7015
%%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
7016
%%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
7017
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/batchfile.js
7018
%%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
7019
%%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
7020
%%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
7021
%%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
7047
%%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
7048
%%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
7049
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/golang.js
7050
%%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
7051
%%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
7052
%%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
7053
%%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
7054
%%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
7055
%%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
7056
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/haxe.js
7057
%%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
7058
%%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
7059
%%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
7060
%%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
7100
%%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
7101
%%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
7102
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/php.js
7103
%%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
7104
%%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
7105
%%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
7106
%%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
7126
%%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
7127
%%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
7128
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/space.js
7129
%%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
7130
%%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
7131
%%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
7132
%%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
7139
%%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
7140
%%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
7141
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/snippets/tsx.js
7142
%%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
7143
%%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
7144
%%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
7145
%%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
7163
%%WWWDIR%%/apps/files_texteditor/js/core/vendor/ace-builds/src-noconflict/worker-xquery.js
7071
%%WWWDIR%%/apps/files_texteditor/js/editor.js
7164
%%WWWDIR%%/apps/files_texteditor/js/editor.js
7072
%%WWWDIR%%/apps/files_texteditor/js/merged.json
7165
%%WWWDIR%%/apps/files_texteditor/js/merged.json
7166
%%WWWDIR%%/apps/files_texteditor/js/public-share.js
7073
%%WWWDIR%%/apps/files_texteditor/js/sidebarpreview.js
7167
%%WWWDIR%%/apps/files_texteditor/js/sidebarpreview.js
7074
%%WWWDIR%%/apps/files_texteditor/l10n/.gitkeep
7168
%%WWWDIR%%/apps/files_texteditor/l10n/.gitkeep
7075
%%WWWDIR%%/apps/files_texteditor/l10n/.tx/config
7169
%%WWWDIR%%/apps/files_texteditor/l10n/.tx/config
Lines 7080-7087 Link Here
7080
%%WWWDIR%%/apps/files_texteditor/l10n/az.json
7174
%%WWWDIR%%/apps/files_texteditor/l10n/az.json
7081
%%WWWDIR%%/apps/files_texteditor/l10n/bg.js
7175
%%WWWDIR%%/apps/files_texteditor/l10n/bg.js
7082
%%WWWDIR%%/apps/files_texteditor/l10n/bg.json
7176
%%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
7177
%%WWWDIR%%/apps/files_texteditor/l10n/bn_BD.php
7086
%%WWWDIR%%/apps/files_texteditor/l10n/bs.php
7178
%%WWWDIR%%/apps/files_texteditor/l10n/bs.php
7087
%%WWWDIR%%/apps/files_texteditor/l10n/ca.js
7179
%%WWWDIR%%/apps/files_texteditor/l10n/ca.js
Lines 7088-7095 Link Here
7088
%%WWWDIR%%/apps/files_texteditor/l10n/ca.json
7180
%%WWWDIR%%/apps/files_texteditor/l10n/ca.json
7089
%%WWWDIR%%/apps/files_texteditor/l10n/cs.js
7181
%%WWWDIR%%/apps/files_texteditor/l10n/cs.js
7090
%%WWWDIR%%/apps/files_texteditor/l10n/cs.json
7182
%%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
7183
%%WWWDIR%%/apps/files_texteditor/l10n/cy_GB.php
7094
%%WWWDIR%%/apps/files_texteditor/l10n/da.js
7184
%%WWWDIR%%/apps/files_texteditor/l10n/da.js
7095
%%WWWDIR%%/apps/files_texteditor/l10n/da.json
7185
%%WWWDIR%%/apps/files_texteditor/l10n/da.json
Lines 7106-7111 Link Here
7106
%%WWWDIR%%/apps/files_texteditor/l10n/eo.json
7196
%%WWWDIR%%/apps/files_texteditor/l10n/eo.json
7107
%%WWWDIR%%/apps/files_texteditor/l10n/es.js
7197
%%WWWDIR%%/apps/files_texteditor/l10n/es.js
7108
%%WWWDIR%%/apps/files_texteditor/l10n/es.json
7198
%%WWWDIR%%/apps/files_texteditor/l10n/es.json
7199
%%WWWDIR%%/apps/files_texteditor/l10n/es_419.js
7200
%%WWWDIR%%/apps/files_texteditor/l10n/es_419.json
7109
%%WWWDIR%%/apps/files_texteditor/l10n/es_AR.js
7201
%%WWWDIR%%/apps/files_texteditor/l10n/es_AR.js
7110
%%WWWDIR%%/apps/files_texteditor/l10n/es_AR.json
7202
%%WWWDIR%%/apps/files_texteditor/l10n/es_AR.json
7111
%%WWWDIR%%/apps/files_texteditor/l10n/es_CL.js
7203
%%WWWDIR%%/apps/files_texteditor/l10n/es_CL.js
Lines 7147-7158 Link Here
7147
%%WWWDIR%%/apps/files_texteditor/l10n/fa.json
7239
%%WWWDIR%%/apps/files_texteditor/l10n/fa.json
7148
%%WWWDIR%%/apps/files_texteditor/l10n/fi.js
7240
%%WWWDIR%%/apps/files_texteditor/l10n/fi.js
7149
%%WWWDIR%%/apps/files_texteditor/l10n/fi.json
7241
%%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
7242
%%WWWDIR%%/apps/files_texteditor/l10n/fr.js
7153
%%WWWDIR%%/apps/files_texteditor/l10n/fr.json
7243
%%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
7244
%%WWWDIR%%/apps/files_texteditor/l10n/he.js
7157
%%WWWDIR%%/apps/files_texteditor/l10n/he.json
7245
%%WWWDIR%%/apps/files_texteditor/l10n/he.json
7158
%%WWWDIR%%/apps/files_texteditor/l10n/hi.php
7246
%%WWWDIR%%/apps/files_texteditor/l10n/hi.php
Lines 7159-7166 Link Here
7159
%%WWWDIR%%/apps/files_texteditor/l10n/hr.php
7247
%%WWWDIR%%/apps/files_texteditor/l10n/hr.php
7160
%%WWWDIR%%/apps/files_texteditor/l10n/hu.js
7248
%%WWWDIR%%/apps/files_texteditor/l10n/hu.js
7161
%%WWWDIR%%/apps/files_texteditor/l10n/hu.json
7249
%%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
7250
%%WWWDIR%%/apps/files_texteditor/l10n/hy.js
7165
%%WWWDIR%%/apps/files_texteditor/l10n/hy.json
7251
%%WWWDIR%%/apps/files_texteditor/l10n/hy.json
7166
%%WWWDIR%%/apps/files_texteditor/l10n/ia.php
7252
%%WWWDIR%%/apps/files_texteditor/l10n/ia.php
Lines 7186-7193 Link Here
7186
%%WWWDIR%%/apps/files_texteditor/l10n/ms_MY.php
7272
%%WWWDIR%%/apps/files_texteditor/l10n/ms_MY.php
7187
%%WWWDIR%%/apps/files_texteditor/l10n/nb.js
7273
%%WWWDIR%%/apps/files_texteditor/l10n/nb.js
7188
%%WWWDIR%%/apps/files_texteditor/l10n/nb.json
7274
%%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
7275
%%WWWDIR%%/apps/files_texteditor/l10n/nl.js
7192
%%WWWDIR%%/apps/files_texteditor/l10n/nl.json
7276
%%WWWDIR%%/apps/files_texteditor/l10n/nl.json
7193
%%WWWDIR%%/apps/files_texteditor/l10n/nn_NO.js
7277
%%WWWDIR%%/apps/files_texteditor/l10n/nn_NO.js
Lines 7208-7215 Link Here
7208
%%WWWDIR%%/apps/files_texteditor/l10n/si_LK.php
7292
%%WWWDIR%%/apps/files_texteditor/l10n/si_LK.php
7209
%%WWWDIR%%/apps/files_texteditor/l10n/sk.js
7293
%%WWWDIR%%/apps/files_texteditor/l10n/sk.js
7210
%%WWWDIR%%/apps/files_texteditor/l10n/sk.json
7294
%%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
7295
%%WWWDIR%%/apps/files_texteditor/l10n/sl.js
7214
%%WWWDIR%%/apps/files_texteditor/l10n/sl.json
7296
%%WWWDIR%%/apps/files_texteditor/l10n/sl.json
7215
%%WWWDIR%%/apps/files_texteditor/l10n/sq.js
7297
%%WWWDIR%%/apps/files_texteditor/l10n/sq.js
Lines 7216-7223 Link Here
7216
%%WWWDIR%%/apps/files_texteditor/l10n/sq.json
7298
%%WWWDIR%%/apps/files_texteditor/l10n/sq.json
7217
%%WWWDIR%%/apps/files_texteditor/l10n/sr.js
7299
%%WWWDIR%%/apps/files_texteditor/l10n/sr.js
7218
%%WWWDIR%%/apps/files_texteditor/l10n/sr.json
7300
%%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
7301
%%WWWDIR%%/apps/files_texteditor/l10n/sv.js
7222
%%WWWDIR%%/apps/files_texteditor/l10n/sv.json
7302
%%WWWDIR%%/apps/files_texteditor/l10n/sv.json
7223
%%WWWDIR%%/apps/files_texteditor/l10n/ta_LK.php
7303
%%WWWDIR%%/apps/files_texteditor/l10n/ta_LK.php
Lines 7224-7238 Link Here
7224
%%WWWDIR%%/apps/files_texteditor/l10n/te.php
7304
%%WWWDIR%%/apps/files_texteditor/l10n/te.php
7225
%%WWWDIR%%/apps/files_texteditor/l10n/th.js
7305
%%WWWDIR%%/apps/files_texteditor/l10n/th.js
7226
%%WWWDIR%%/apps/files_texteditor/l10n/th.json
7306
%%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
7307
%%WWWDIR%%/apps/files_texteditor/l10n/tr.js
7230
%%WWWDIR%%/apps/files_texteditor/l10n/tr.json
7308
%%WWWDIR%%/apps/files_texteditor/l10n/tr.json
7231
%%WWWDIR%%/apps/files_texteditor/l10n/ug.php
7309
%%WWWDIR%%/apps/files_texteditor/l10n/ug.php
7232
%%WWWDIR%%/apps/files_texteditor/l10n/uk.js
7310
%%WWWDIR%%/apps/files_texteditor/l10n/uk.js
7233
%%WWWDIR%%/apps/files_texteditor/l10n/uk.json
7311
%%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
7312
%%WWWDIR%%/apps/files_texteditor/l10n/vi.php
7237
%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.js
7313
%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.js
7238
%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.json
7314
%%WWWDIR%%/apps/files_texteditor/l10n/zh_CN.json
Lines 7239-7244 Link Here
7239
%%WWWDIR%%/apps/files_texteditor/l10n/zh_HK.php
7315
%%WWWDIR%%/apps/files_texteditor/l10n/zh_HK.php
7240
%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.js
7316
%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.js
7241
%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.json
7317
%%WWWDIR%%/apps/files_texteditor/l10n/zh_TW.json
7318
%%WWWDIR%%/apps/files_texteditor/lib/Controller/FileHandlingController.php
7242
%%WWWDIR%%/apps/files_trashbin/ajax/delete.php
7319
%%WWWDIR%%/apps/files_trashbin/ajax/delete.php
7243
%%WWWDIR%%/apps/files_trashbin/ajax/isEmpty.php
7320
%%WWWDIR%%/apps/files_trashbin/ajax/isEmpty.php
7244
%%WWWDIR%%/apps/files_trashbin/ajax/list.php
7321
%%WWWDIR%%/apps/files_trashbin/ajax/list.php
Lines 7248-7254 Link Here
7248
%%WWWDIR%%/apps/files_trashbin/appinfo/info.xml
7325
%%WWWDIR%%/apps/files_trashbin/appinfo/info.xml
7249
%%WWWDIR%%/apps/files_trashbin/appinfo/routes.php
7326
%%WWWDIR%%/apps/files_trashbin/appinfo/routes.php
7250
%%WWWDIR%%/apps/files_trashbin/appinfo/signature.json
7327
%%WWWDIR%%/apps/files_trashbin/appinfo/signature.json
7251
%%WWWDIR%%/apps/files_trashbin/css/trash.css
7328
%%WWWDIR%%/apps/files_trashbin/composer/autoload.php
7329
%%WWWDIR%%/apps/files_trashbin/composer/composer.json
7330
%%WWWDIR%%/apps/files_trashbin/composer/composer/ClassLoader.php
7331
%%WWWDIR%%/apps/files_trashbin/composer/composer/LICENSE
7332
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_classmap.php
7333
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_namespaces.php
7334
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_psr4.php
7335
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_real.php
7336
%%WWWDIR%%/apps/files_trashbin/composer/composer/autoload_static.php
7337
%%WWWDIR%%/apps/files_trashbin/css/trash.scss
7252
%%WWWDIR%%/apps/files_trashbin/img/app.svg
7338
%%WWWDIR%%/apps/files_trashbin/img/app.svg
7253
%%WWWDIR%%/apps/files_trashbin/js/app.js
7339
%%WWWDIR%%/apps/files_trashbin/js/app.js
7254
%%WWWDIR%%/apps/files_trashbin/js/filelist.js
7340
%%WWWDIR%%/apps/files_trashbin/js/filelist.js
Lines 7299-7304 Link Here
7299
%%WWWDIR%%/apps/files_trashbin/l10n/eo.json
7385
%%WWWDIR%%/apps/files_trashbin/l10n/eo.json
7300
%%WWWDIR%%/apps/files_trashbin/l10n/es.js
7386
%%WWWDIR%%/apps/files_trashbin/l10n/es.js
7301
%%WWWDIR%%/apps/files_trashbin/l10n/es.json
7387
%%WWWDIR%%/apps/files_trashbin/l10n/es.json
7388
%%WWWDIR%%/apps/files_trashbin/l10n/es_419.js
7389
%%WWWDIR%%/apps/files_trashbin/l10n/es_419.json
7302
%%WWWDIR%%/apps/files_trashbin/l10n/es_AR.js
7390
%%WWWDIR%%/apps/files_trashbin/l10n/es_AR.js
7303
%%WWWDIR%%/apps/files_trashbin/l10n/es_AR.json
7391
%%WWWDIR%%/apps/files_trashbin/l10n/es_AR.json
7304
%%WWWDIR%%/apps/files_trashbin/l10n/es_CL.js
7392
%%WWWDIR%%/apps/files_trashbin/l10n/es_CL.js
Lines 7460-7465 Link Here
7460
%%WWWDIR%%/apps/files_trashbin/lib/Command/Expire.php
7548
%%WWWDIR%%/apps/files_trashbin/lib/Command/Expire.php
7461
%%WWWDIR%%/apps/files_trashbin/lib/Command/ExpireTrash.php
7549
%%WWWDIR%%/apps/files_trashbin/lib/Command/ExpireTrash.php
7462
%%WWWDIR%%/apps/files_trashbin/lib/Controller/PreviewController.php
7550
%%WWWDIR%%/apps/files_trashbin/lib/Controller/PreviewController.php
7551
%%WWWDIR%%/apps/files_trashbin/lib/Events/MoveToTrashEvent.php
7463
%%WWWDIR%%/apps/files_trashbin/lib/Exceptions/CopyRecursiveException.php
7552
%%WWWDIR%%/apps/files_trashbin/lib/Exceptions/CopyRecursiveException.php
7464
%%WWWDIR%%/apps/files_trashbin/lib/Expiration.php
7553
%%WWWDIR%%/apps/files_trashbin/lib/Expiration.php
7465
%%WWWDIR%%/apps/files_trashbin/lib/Helper.php
7554
%%WWWDIR%%/apps/files_trashbin/lib/Helper.php
Lines 7474-7479 Link Here
7474
%%WWWDIR%%/apps/files_versions/appinfo/info.xml
7563
%%WWWDIR%%/apps/files_versions/appinfo/info.xml
7475
%%WWWDIR%%/apps/files_versions/appinfo/routes.php
7564
%%WWWDIR%%/apps/files_versions/appinfo/routes.php
7476
%%WWWDIR%%/apps/files_versions/appinfo/signature.json
7565
%%WWWDIR%%/apps/files_versions/appinfo/signature.json
7566
%%WWWDIR%%/apps/files_versions/composer/autoload.php
7567
%%WWWDIR%%/apps/files_versions/composer/composer.json
7568
%%WWWDIR%%/apps/files_versions/composer/composer/ClassLoader.php
7569
%%WWWDIR%%/apps/files_versions/composer/composer/LICENSE
7570
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_classmap.php
7571
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_namespaces.php
7572
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_psr4.php
7573
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_real.php
7574
%%WWWDIR%%/apps/files_versions/composer/composer/autoload_static.php
7477
%%WWWDIR%%/apps/files_versions/css/versions.css
7575
%%WWWDIR%%/apps/files_versions/css/versions.css
7478
%%WWWDIR%%/apps/files_versions/download.php
7576
%%WWWDIR%%/apps/files_versions/download.php
7479
%%WWWDIR%%/apps/files_versions/img/app.svg
7577
%%WWWDIR%%/apps/files_versions/img/app.svg
Lines 7523-7528 Link Here
7523
%%WWWDIR%%/apps/files_versions/l10n/eo.json
7621
%%WWWDIR%%/apps/files_versions/l10n/eo.json
7524
%%WWWDIR%%/apps/files_versions/l10n/es.js
7622
%%WWWDIR%%/apps/files_versions/l10n/es.js
7525
%%WWWDIR%%/apps/files_versions/l10n/es.json
7623
%%WWWDIR%%/apps/files_versions/l10n/es.json
7624
%%WWWDIR%%/apps/files_versions/l10n/es_419.js
7625
%%WWWDIR%%/apps/files_versions/l10n/es_419.json
7526
%%WWWDIR%%/apps/files_versions/l10n/es_AR.js
7626
%%WWWDIR%%/apps/files_versions/l10n/es_AR.js
7527
%%WWWDIR%%/apps/files_versions/l10n/es_AR.json
7627
%%WWWDIR%%/apps/files_versions/l10n/es_AR.json
7528
%%WWWDIR%%/apps/files_versions/l10n/es_CL.js
7628
%%WWWDIR%%/apps/files_versions/l10n/es_CL.js
Lines 7674-7679 Link Here
7674
%%WWWDIR%%/apps/files_versions/lib/Command/Expire.php
7774
%%WWWDIR%%/apps/files_versions/lib/Command/Expire.php
7675
%%WWWDIR%%/apps/files_versions/lib/Command/ExpireVersions.php
7775
%%WWWDIR%%/apps/files_versions/lib/Command/ExpireVersions.php
7676
%%WWWDIR%%/apps/files_versions/lib/Controller/PreviewController.php
7776
%%WWWDIR%%/apps/files_versions/lib/Controller/PreviewController.php
7777
%%WWWDIR%%/apps/files_versions/lib/Events/CreateVersionEvent.php
7677
%%WWWDIR%%/apps/files_versions/lib/Expiration.php
7778
%%WWWDIR%%/apps/files_versions/lib/Expiration.php
7678
%%WWWDIR%%/apps/files_versions/lib/Hooks.php
7779
%%WWWDIR%%/apps/files_versions/lib/Hooks.php
7679
%%WWWDIR%%/apps/files_versions/lib/Storage.php
7780
%%WWWDIR%%/apps/files_versions/lib/Storage.php
Lines 7737-7744 Link Here
7737
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.js
7838
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.js
7738
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.json
7839
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_BD.json
7739
%%WWWDIR%%/apps/firstrunwizard/l10n/bn_IN.php
7840
%%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
7841
%%WWWDIR%%/apps/firstrunwizard/l10n/ca.js
7743
%%WWWDIR%%/apps/firstrunwizard/l10n/ca.json
7842
%%WWWDIR%%/apps/firstrunwizard/l10n/ca.json
7744
%%WWWDIR%%/apps/firstrunwizard/l10n/cs.js
7843
%%WWWDIR%%/apps/firstrunwizard/l10n/cs.js
Lines 7759-7764 Link Here
7759
%%WWWDIR%%/apps/firstrunwizard/l10n/eo.json
7858
%%WWWDIR%%/apps/firstrunwizard/l10n/eo.json
7760
%%WWWDIR%%/apps/firstrunwizard/l10n/es.js
7859
%%WWWDIR%%/apps/firstrunwizard/l10n/es.js
7761
%%WWWDIR%%/apps/firstrunwizard/l10n/es.json
7860
%%WWWDIR%%/apps/firstrunwizard/l10n/es.json
7861
%%WWWDIR%%/apps/firstrunwizard/l10n/es_419.js
7862
%%WWWDIR%%/apps/firstrunwizard/l10n/es_419.json
7762
%%WWWDIR%%/apps/firstrunwizard/l10n/es_AR.js
7863
%%WWWDIR%%/apps/firstrunwizard/l10n/es_AR.js
7763
%%WWWDIR%%/apps/firstrunwizard/l10n/es_AR.json
7864
%%WWWDIR%%/apps/firstrunwizard/l10n/es_AR.json
7764
%%WWWDIR%%/apps/firstrunwizard/l10n/es_CL.js
7865
%%WWWDIR%%/apps/firstrunwizard/l10n/es_CL.js
Lines 7801-7808 Link Here
7801
%%WWWDIR%%/apps/firstrunwizard/l10n/fi.json
7902
%%WWWDIR%%/apps/firstrunwizard/l10n/fi.json
7802
%%WWWDIR%%/apps/firstrunwizard/l10n/fr.js
7903
%%WWWDIR%%/apps/firstrunwizard/l10n/fr.js
7803
%%WWWDIR%%/apps/firstrunwizard/l10n/fr.json
7904
%%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
7905
%%WWWDIR%%/apps/firstrunwizard/l10n/he.js
7807
%%WWWDIR%%/apps/firstrunwizard/l10n/he.json
7906
%%WWWDIR%%/apps/firstrunwizard/l10n/he.json
7808
%%WWWDIR%%/apps/firstrunwizard/l10n/hr.js
7907
%%WWWDIR%%/apps/firstrunwizard/l10n/hr.js
Lines 7825-7845 Link Here
7825
%%WWWDIR%%/apps/firstrunwizard/l10n/ko.js
7924
%%WWWDIR%%/apps/firstrunwizard/l10n/ko.js
7826
%%WWWDIR%%/apps/firstrunwizard/l10n/ko.json
7925
%%WWWDIR%%/apps/firstrunwizard/l10n/ko.json
7827
%%WWWDIR%%/apps/firstrunwizard/l10n/ku_IQ.php
7926
%%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
7927
%%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.js
7831
%%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.json
7928
%%WWWDIR%%/apps/firstrunwizard/l10n/lt_LT.json
7832
%%WWWDIR%%/apps/firstrunwizard/l10n/lv.js
7929
%%WWWDIR%%/apps/firstrunwizard/l10n/lv.js
7833
%%WWWDIR%%/apps/firstrunwizard/l10n/lv.json
7930
%%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
7931
%%WWWDIR%%/apps/firstrunwizard/l10n/ms_MY.php
7837
%%WWWDIR%%/apps/firstrunwizard/l10n/nb.js
7932
%%WWWDIR%%/apps/firstrunwizard/l10n/nb.js
7838
%%WWWDIR%%/apps/firstrunwizard/l10n/nb.json
7933
%%WWWDIR%%/apps/firstrunwizard/l10n/nb.json
7839
%%WWWDIR%%/apps/firstrunwizard/l10n/nl.js
7934
%%WWWDIR%%/apps/firstrunwizard/l10n/nl.js
7840
%%WWWDIR%%/apps/firstrunwizard/l10n/nl.json
7935
%%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
7936
%%WWWDIR%%/apps/firstrunwizard/l10n/oc.js
7844
%%WWWDIR%%/apps/firstrunwizard/l10n/oc.json
7937
%%WWWDIR%%/apps/firstrunwizard/l10n/oc.json
7845
%%WWWDIR%%/apps/firstrunwizard/l10n/pl.js
7938
%%WWWDIR%%/apps/firstrunwizard/l10n/pl.js
Lines 7872-7879 Link Here
7872
%%WWWDIR%%/apps/firstrunwizard/l10n/ug.php
7965
%%WWWDIR%%/apps/firstrunwizard/l10n/ug.php
7873
%%WWWDIR%%/apps/firstrunwizard/l10n/uk.js
7966
%%WWWDIR%%/apps/firstrunwizard/l10n/uk.js
7874
%%WWWDIR%%/apps/firstrunwizard/l10n/uk.json
7967
%%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
7968
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.js
7878
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.json
7969
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_CN.json
7879
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_HK.php
7970
%%WWWDIR%%/apps/firstrunwizard/l10n/zh_HK.php
Lines 7883-7888 Link Here
7883
%%WWWDIR%%/apps/firstrunwizard/lib/Controller/WizardController.php
7974
%%WWWDIR%%/apps/firstrunwizard/lib/Controller/WizardController.php
7884
%%WWWDIR%%/apps/firstrunwizard/lib/Notification/BackgroundJob.php
7975
%%WWWDIR%%/apps/firstrunwizard/lib/Notification/BackgroundJob.php
7885
%%WWWDIR%%/apps/firstrunwizard/lib/Notification/Notifier.php
7976
%%WWWDIR%%/apps/firstrunwizard/lib/Notification/Notifier.php
7977
%%WWWDIR%%/apps/firstrunwizard/lib/Settings/Personal.php
7978
%%WWWDIR%%/apps/firstrunwizard/templates/personal-settings.php
7886
%%WWWDIR%%/apps/firstrunwizard/templates/wizard.php
7979
%%WWWDIR%%/apps/firstrunwizard/templates/wizard.php
7887
%%WWWDIR%%/apps/gallery/.github/issue_template.md
7980
%%WWWDIR%%/apps/gallery/.github/issue_template.md
7888
%%WWWDIR%%/apps/gallery/.github/pull_request_template.md
7981
%%WWWDIR%%/apps/gallery/.github/pull_request_template.md
Lines 7918-7930 Link Here
7918
%%WWWDIR%%/apps/gallery/img/app.svg
8011
%%WWWDIR%%/apps/gallery/img/app.svg
7919
%%WWWDIR%%/apps/gallery/img/dateasc.svg
8012
%%WWWDIR%%/apps/gallery/img/dateasc.svg
7920
%%WWWDIR%%/apps/gallery/img/datedes.svg
8013
%%WWWDIR%%/apps/gallery/img/datedes.svg
7921
%%WWWDIR%%/apps/gallery/img/folder.svg
7922
%%WWWDIR%%/apps/gallery/img/gallery-dark.svg
8014
%%WWWDIR%%/apps/gallery/img/gallery-dark.svg
7923
%%WWWDIR%%/apps/gallery/img/nameasc.svg
8015
%%WWWDIR%%/apps/gallery/img/nameasc.svg
7924
%%WWWDIR%%/apps/gallery/img/namedes.svg
8016
%%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
8017
%%WWWDIR%%/apps/gallery/js/.bowerrc
7929
%%WWWDIR%%/apps/gallery/js/.jshintrc
8018
%%WWWDIR%%/apps/gallery/js/.jshintrc
7930
%%WWWDIR%%/apps/gallery/js/app.js
8019
%%WWWDIR%%/apps/gallery/js/app.js
Lines 8008-8013 Link Here
8008
%%WWWDIR%%/apps/gallery/l10n/eo.json
8097
%%WWWDIR%%/apps/gallery/l10n/eo.json
8009
%%WWWDIR%%/apps/gallery/l10n/es.js
8098
%%WWWDIR%%/apps/gallery/l10n/es.js
8010
%%WWWDIR%%/apps/gallery/l10n/es.json
8099
%%WWWDIR%%/apps/gallery/l10n/es.json
8100
%%WWWDIR%%/apps/gallery/l10n/es_419.js
8101
%%WWWDIR%%/apps/gallery/l10n/es_419.json
8011
%%WWWDIR%%/apps/gallery/l10n/es_AR.js
8102
%%WWWDIR%%/apps/gallery/l10n/es_AR.js
8012
%%WWWDIR%%/apps/gallery/l10n/es_AR.json
8103
%%WWWDIR%%/apps/gallery/l10n/es_AR.json
8013
%%WWWDIR%%/apps/gallery/l10n/es_CL.js
8104
%%WWWDIR%%/apps/gallery/l10n/es_CL.js
Lines 8050-8057 Link Here
8050
%%WWWDIR%%/apps/gallery/l10n/fi.json
8141
%%WWWDIR%%/apps/gallery/l10n/fi.json
8051
%%WWWDIR%%/apps/gallery/l10n/fr.js
8142
%%WWWDIR%%/apps/gallery/l10n/fr.js
8052
%%WWWDIR%%/apps/gallery/l10n/fr.json
8143
%%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
8144
%%WWWDIR%%/apps/gallery/l10n/he.js
8056
%%WWWDIR%%/apps/gallery/l10n/he.json
8145
%%WWWDIR%%/apps/gallery/l10n/he.json
8057
%%WWWDIR%%/apps/gallery/l10n/hi.php
8146
%%WWWDIR%%/apps/gallery/l10n/hi.php
Lines 8297-8302 Link Here
8297
%%WWWDIR%%/apps/logreader/l10n/en_GB.json
8386
%%WWWDIR%%/apps/logreader/l10n/en_GB.json
8298
%%WWWDIR%%/apps/logreader/l10n/es.js
8387
%%WWWDIR%%/apps/logreader/l10n/es.js
8299
%%WWWDIR%%/apps/logreader/l10n/es.json
8388
%%WWWDIR%%/apps/logreader/l10n/es.json
8389
%%WWWDIR%%/apps/logreader/l10n/es_419.js
8390
%%WWWDIR%%/apps/logreader/l10n/es_419.json
8300
%%WWWDIR%%/apps/logreader/l10n/es_CL.js
8391
%%WWWDIR%%/apps/logreader/l10n/es_CL.js
8301
%%WWWDIR%%/apps/logreader/l10n/es_CL.json
8392
%%WWWDIR%%/apps/logreader/l10n/es_CL.json
8302
%%WWWDIR%%/apps/logreader/l10n/es_CO.js
8393
%%WWWDIR%%/apps/logreader/l10n/es_CO.js
Lines 8335-8342 Link Here
8335
%%WWWDIR%%/apps/logreader/l10n/fi.json
8426
%%WWWDIR%%/apps/logreader/l10n/fi.json
8336
%%WWWDIR%%/apps/logreader/l10n/fr.js
8427
%%WWWDIR%%/apps/logreader/l10n/fr.js
8337
%%WWWDIR%%/apps/logreader/l10n/fr.json
8428
%%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
8429
%%WWWDIR%%/apps/logreader/l10n/hu.js
8341
%%WWWDIR%%/apps/logreader/l10n/hu.json
8430
%%WWWDIR%%/apps/logreader/l10n/hu.json
8342
%%WWWDIR%%/apps/logreader/l10n/is.js
8431
%%WWWDIR%%/apps/logreader/l10n/is.js
Lines 8347-8352 Link Here
8347
%%WWWDIR%%/apps/logreader/l10n/ja.json
8436
%%WWWDIR%%/apps/logreader/l10n/ja.json
8348
%%WWWDIR%%/apps/logreader/l10n/ka_GE.js
8437
%%WWWDIR%%/apps/logreader/l10n/ka_GE.js
8349
%%WWWDIR%%/apps/logreader/l10n/ka_GE.json
8438
%%WWWDIR%%/apps/logreader/l10n/ka_GE.json
8439
%%WWWDIR%%/apps/logreader/l10n/ko.js
8440
%%WWWDIR%%/apps/logreader/l10n/ko.json
8350
%%WWWDIR%%/apps/logreader/l10n/lt_LT.js
8441
%%WWWDIR%%/apps/logreader/l10n/lt_LT.js
8351
%%WWWDIR%%/apps/logreader/l10n/lt_LT.json
8442
%%WWWDIR%%/apps/logreader/l10n/lt_LT.json
8352
%%WWWDIR%%/apps/logreader/l10n/lv.js
8443
%%WWWDIR%%/apps/logreader/l10n/lv.js
Lines 8392-8397 Link Here
8392
%%WWWDIR%%/apps/lookup_server_connector/appinfo/app.php
8483
%%WWWDIR%%/apps/lookup_server_connector/appinfo/app.php
8393
%%WWWDIR%%/apps/lookup_server_connector/appinfo/info.xml
8484
%%WWWDIR%%/apps/lookup_server_connector/appinfo/info.xml
8394
%%WWWDIR%%/apps/lookup_server_connector/appinfo/signature.json
8485
%%WWWDIR%%/apps/lookup_server_connector/appinfo/signature.json
8486
%%WWWDIR%%/apps/lookup_server_connector/composer/autoload.php
8487
%%WWWDIR%%/apps/lookup_server_connector/composer/composer.json
8488
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/ClassLoader.php
8489
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/LICENSE
8490
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_classmap.php
8491
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_namespaces.php
8492
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_psr4.php
8493
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_real.php
8494
%%WWWDIR%%/apps/lookup_server_connector/composer/composer/autoload_static.php
8395
%%WWWDIR%%/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
8495
%%WWWDIR%%/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
8396
%%WWWDIR%%/apps/lookup_server_connector/lib/UpdateLookupServer.php
8496
%%WWWDIR%%/apps/lookup_server_connector/lib/UpdateLookupServer.php
8397
%%WWWDIR%%/apps/nextcloud_announcements/.gitattributes
8497
%%WWWDIR%%/apps/nextcloud_announcements/.gitattributes
Lines 8430-8435 Link Here
8430
%%WWWDIR%%/apps/nextcloud_announcements/l10n/en_GB.json
8530
%%WWWDIR%%/apps/nextcloud_announcements/l10n/en_GB.json
8431
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es.js
8531
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es.js
8432
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es.json
8532
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es.json
8533
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_419.js
8534
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_419.json
8433
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_AR.js
8535
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_AR.js
8434
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_AR.json
8536
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_AR.json
8435
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CL.js
8537
%%WWWDIR%%/apps/nextcloud_announcements/l10n/es_CL.js
Lines 8575-8580 Link Here
8575
%%WWWDIR%%/apps/notifications/l10n/en_GB.json
8677
%%WWWDIR%%/apps/notifications/l10n/en_GB.json
8576
%%WWWDIR%%/apps/notifications/l10n/es.js
8678
%%WWWDIR%%/apps/notifications/l10n/es.js
8577
%%WWWDIR%%/apps/notifications/l10n/es.json
8679
%%WWWDIR%%/apps/notifications/l10n/es.json
8680
%%WWWDIR%%/apps/notifications/l10n/es_419.js
8681
%%WWWDIR%%/apps/notifications/l10n/es_419.json
8578
%%WWWDIR%%/apps/notifications/l10n/es_AR.js
8682
%%WWWDIR%%/apps/notifications/l10n/es_AR.js
8579
%%WWWDIR%%/apps/notifications/l10n/es_AR.json
8683
%%WWWDIR%%/apps/notifications/l10n/es_AR.json
8580
%%WWWDIR%%/apps/notifications/l10n/es_CL.js
8684
%%WWWDIR%%/apps/notifications/l10n/es_CL.js
Lines 8686-8691 Link Here
8686
%%WWWDIR%%/apps/oauth2/appinfo/info.xml
8790
%%WWWDIR%%/apps/oauth2/appinfo/info.xml
8687
%%WWWDIR%%/apps/oauth2/appinfo/routes.php
8791
%%WWWDIR%%/apps/oauth2/appinfo/routes.php
8688
%%WWWDIR%%/apps/oauth2/appinfo/signature.json
8792
%%WWWDIR%%/apps/oauth2/appinfo/signature.json
8793
%%WWWDIR%%/apps/oauth2/composer/autoload.php
8794
%%WWWDIR%%/apps/oauth2/composer/composer.json
8795
%%WWWDIR%%/apps/oauth2/composer/composer/ClassLoader.php
8796
%%WWWDIR%%/apps/oauth2/composer/composer/LICENSE
8797
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_classmap.php
8798
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_namespaces.php
8799
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_psr4.php
8800
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_real.php
8801
%%WWWDIR%%/apps/oauth2/composer/composer/autoload_static.php
8689
%%WWWDIR%%/apps/oauth2/css/setting-admin.css
8802
%%WWWDIR%%/apps/oauth2/css/setting-admin.css
8690
%%WWWDIR%%/apps/oauth2/js/setting-admin.js
8803
%%WWWDIR%%/apps/oauth2/js/setting-admin.js
8691
%%WWWDIR%%/apps/oauth2/l10n/.gitkeep
8804
%%WWWDIR%%/apps/oauth2/l10n/.gitkeep
Lines 8709-8714 Link Here
8709
%%WWWDIR%%/apps/oauth2/l10n/en_GB.json
8822
%%WWWDIR%%/apps/oauth2/l10n/en_GB.json
8710
%%WWWDIR%%/apps/oauth2/l10n/es.js
8823
%%WWWDIR%%/apps/oauth2/l10n/es.js
8711
%%WWWDIR%%/apps/oauth2/l10n/es.json
8824
%%WWWDIR%%/apps/oauth2/l10n/es.json
8825
%%WWWDIR%%/apps/oauth2/l10n/es_419.js
8826
%%WWWDIR%%/apps/oauth2/l10n/es_419.json
8712
%%WWWDIR%%/apps/oauth2/l10n/es_AR.js
8827
%%WWWDIR%%/apps/oauth2/l10n/es_AR.js
8713
%%WWWDIR%%/apps/oauth2/l10n/es_AR.json
8828
%%WWWDIR%%/apps/oauth2/l10n/es_AR.json
8714
%%WWWDIR%%/apps/oauth2/l10n/es_CL.js
8829
%%WWWDIR%%/apps/oauth2/l10n/es_CL.js
Lines 8741-8746 Link Here
8741
%%WWWDIR%%/apps/oauth2/l10n/es_SV.json
8856
%%WWWDIR%%/apps/oauth2/l10n/es_SV.json
8742
%%WWWDIR%%/apps/oauth2/l10n/es_UY.js
8857
%%WWWDIR%%/apps/oauth2/l10n/es_UY.js
8743
%%WWWDIR%%/apps/oauth2/l10n/es_UY.json
8858
%%WWWDIR%%/apps/oauth2/l10n/es_UY.json
8859
%%WWWDIR%%/apps/oauth2/l10n/et_EE.js
8860
%%WWWDIR%%/apps/oauth2/l10n/et_EE.json
8744
%%WWWDIR%%/apps/oauth2/l10n/eu.js
8861
%%WWWDIR%%/apps/oauth2/l10n/eu.js
8745
%%WWWDIR%%/apps/oauth2/l10n/eu.json
8862
%%WWWDIR%%/apps/oauth2/l10n/eu.json
8746
%%WWWDIR%%/apps/oauth2/l10n/fi.js
8863
%%WWWDIR%%/apps/oauth2/l10n/fi.js
Lines 8747-8752 Link Here
8747
%%WWWDIR%%/apps/oauth2/l10n/fi.json
8864
%%WWWDIR%%/apps/oauth2/l10n/fi.json
8748
%%WWWDIR%%/apps/oauth2/l10n/fr.js
8865
%%WWWDIR%%/apps/oauth2/l10n/fr.js
8749
%%WWWDIR%%/apps/oauth2/l10n/fr.json
8866
%%WWWDIR%%/apps/oauth2/l10n/fr.json
8867
%%WWWDIR%%/apps/oauth2/l10n/gl.js
8868
%%WWWDIR%%/apps/oauth2/l10n/gl.json
8750
%%WWWDIR%%/apps/oauth2/l10n/hu.js
8869
%%WWWDIR%%/apps/oauth2/l10n/hu.js
8751
%%WWWDIR%%/apps/oauth2/l10n/hu.json
8870
%%WWWDIR%%/apps/oauth2/l10n/hu.json
8752
%%WWWDIR%%/apps/oauth2/l10n/id.js
8871
%%WWWDIR%%/apps/oauth2/l10n/id.js
Lines 8759-8764 Link Here
8759
%%WWWDIR%%/apps/oauth2/l10n/ja.json
8878
%%WWWDIR%%/apps/oauth2/l10n/ja.json
8760
%%WWWDIR%%/apps/oauth2/l10n/ka_GE.js
8879
%%WWWDIR%%/apps/oauth2/l10n/ka_GE.js
8761
%%WWWDIR%%/apps/oauth2/l10n/ka_GE.json
8880
%%WWWDIR%%/apps/oauth2/l10n/ka_GE.json
8881
%%WWWDIR%%/apps/oauth2/l10n/ko.js
8882
%%WWWDIR%%/apps/oauth2/l10n/ko.json
8762
%%WWWDIR%%/apps/oauth2/l10n/lt_LT.js
8883
%%WWWDIR%%/apps/oauth2/l10n/lt_LT.js
8763
%%WWWDIR%%/apps/oauth2/l10n/lt_LT.json
8884
%%WWWDIR%%/apps/oauth2/l10n/lt_LT.json
8764
%%WWWDIR%%/apps/oauth2/l10n/lv.js
8885
%%WWWDIR%%/apps/oauth2/l10n/lv.js
Lines 8832-8837 Link Here
8832
%%WWWDIR%%/apps/password_policy/l10n/en_GB.json
8953
%%WWWDIR%%/apps/password_policy/l10n/en_GB.json
8833
%%WWWDIR%%/apps/password_policy/l10n/es.js
8954
%%WWWDIR%%/apps/password_policy/l10n/es.js
8834
%%WWWDIR%%/apps/password_policy/l10n/es.json
8955
%%WWWDIR%%/apps/password_policy/l10n/es.json
8956
%%WWWDIR%%/apps/password_policy/l10n/es_419.js
8957
%%WWWDIR%%/apps/password_policy/l10n/es_419.json
8835
%%WWWDIR%%/apps/password_policy/l10n/es_AR.js
8958
%%WWWDIR%%/apps/password_policy/l10n/es_AR.js
8836
%%WWWDIR%%/apps/password_policy/l10n/es_AR.json
8959
%%WWWDIR%%/apps/password_policy/l10n/es_AR.json
8837
%%WWWDIR%%/apps/password_policy/l10n/es_CL.js
8960
%%WWWDIR%%/apps/password_policy/l10n/es_CL.js
Lines 8969-8974 Link Here
8969
%%WWWDIR%%/apps/provisioning_api/appinfo/info.xml
9092
%%WWWDIR%%/apps/provisioning_api/appinfo/info.xml
8970
%%WWWDIR%%/apps/provisioning_api/appinfo/routes.php
9093
%%WWWDIR%%/apps/provisioning_api/appinfo/routes.php
8971
%%WWWDIR%%/apps/provisioning_api/appinfo/signature.json
9094
%%WWWDIR%%/apps/provisioning_api/appinfo/signature.json
9095
%%WWWDIR%%/apps/provisioning_api/composer/autoload.php
9096
%%WWWDIR%%/apps/provisioning_api/composer/composer.json
9097
%%WWWDIR%%/apps/provisioning_api/composer/composer/ClassLoader.php
9098
%%WWWDIR%%/apps/provisioning_api/composer/composer/LICENSE
9099
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_classmap.php
9100
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_namespaces.php
9101
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_psr4.php
9102
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_real.php
9103
%%WWWDIR%%/apps/provisioning_api/composer/composer/autoload_static.php
8972
%%WWWDIR%%/apps/provisioning_api/img/app.svg
9104
%%WWWDIR%%/apps/provisioning_api/img/app.svg
8973
%%WWWDIR%%/apps/provisioning_api/lib/AppInfo/Application.php
9105
%%WWWDIR%%/apps/provisioning_api/lib/AppInfo/Application.php
8974
%%WWWDIR%%/apps/provisioning_api/lib/Controller/AppConfigController.php
9106
%%WWWDIR%%/apps/provisioning_api/lib/Controller/AppConfigController.php
Lines 9017-9022 Link Here
9017
%%WWWDIR%%/apps/serverinfo/l10n/en_GB.json
9149
%%WWWDIR%%/apps/serverinfo/l10n/en_GB.json
9018
%%WWWDIR%%/apps/serverinfo/l10n/es.js
9150
%%WWWDIR%%/apps/serverinfo/l10n/es.js
9019
%%WWWDIR%%/apps/serverinfo/l10n/es.json
9151
%%WWWDIR%%/apps/serverinfo/l10n/es.json
9152
%%WWWDIR%%/apps/serverinfo/l10n/es_419.js
9153
%%WWWDIR%%/apps/serverinfo/l10n/es_419.json
9020
%%WWWDIR%%/apps/serverinfo/l10n/es_AR.js
9154
%%WWWDIR%%/apps/serverinfo/l10n/es_AR.js
9021
%%WWWDIR%%/apps/serverinfo/l10n/es_AR.json
9155
%%WWWDIR%%/apps/serverinfo/l10n/es_AR.json
9022
%%WWWDIR%%/apps/serverinfo/l10n/es_CL.js
9156
%%WWWDIR%%/apps/serverinfo/l10n/es_CL.js
Lines 9123-9128 Link Here
9123
%%WWWDIR%%/apps/sharebymail/appinfo/app.php
9257
%%WWWDIR%%/apps/sharebymail/appinfo/app.php
9124
%%WWWDIR%%/apps/sharebymail/appinfo/info.xml
9258
%%WWWDIR%%/apps/sharebymail/appinfo/info.xml
9125
%%WWWDIR%%/apps/sharebymail/appinfo/signature.json
9259
%%WWWDIR%%/apps/sharebymail/appinfo/signature.json
9260
%%WWWDIR%%/apps/sharebymail/composer/autoload.php
9261
%%WWWDIR%%/apps/sharebymail/composer/composer.json
9262
%%WWWDIR%%/apps/sharebymail/composer/composer/ClassLoader.php
9263
%%WWWDIR%%/apps/sharebymail/composer/composer/LICENSE
9264
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_classmap.php
9265
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_namespaces.php
9266
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_psr4.php
9267
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_real.php
9268
%%WWWDIR%%/apps/sharebymail/composer/composer/autoload_static.php
9126
%%WWWDIR%%/apps/sharebymail/css/settings-admin.css
9269
%%WWWDIR%%/apps/sharebymail/css/settings-admin.css
9127
%%WWWDIR%%/apps/sharebymail/img/app.svg
9270
%%WWWDIR%%/apps/sharebymail/img/app.svg
9128
%%WWWDIR%%/apps/sharebymail/js/settings-admin.js
9271
%%WWWDIR%%/apps/sharebymail/js/settings-admin.js
Lines 9147-9152 Link Here
9147
%%WWWDIR%%/apps/sharebymail/l10n/en_GB.json
9290
%%WWWDIR%%/apps/sharebymail/l10n/en_GB.json
9148
%%WWWDIR%%/apps/sharebymail/l10n/es.js
9291
%%WWWDIR%%/apps/sharebymail/l10n/es.js
9149
%%WWWDIR%%/apps/sharebymail/l10n/es.json
9292
%%WWWDIR%%/apps/sharebymail/l10n/es.json
9293
%%WWWDIR%%/apps/sharebymail/l10n/es_419.js
9294
%%WWWDIR%%/apps/sharebymail/l10n/es_419.json
9150
%%WWWDIR%%/apps/sharebymail/l10n/es_AR.js
9295
%%WWWDIR%%/apps/sharebymail/l10n/es_AR.js
9151
%%WWWDIR%%/apps/sharebymail/l10n/es_AR.json
9296
%%WWWDIR%%/apps/sharebymail/l10n/es_AR.json
9152
%%WWWDIR%%/apps/sharebymail/l10n/es_CL.js
9297
%%WWWDIR%%/apps/sharebymail/l10n/es_CL.js
Lines 9268-9273 Link Here
9268
%%WWWDIR%%/apps/survey_client/l10n/en_GB.json
9413
%%WWWDIR%%/apps/survey_client/l10n/en_GB.json
9269
%%WWWDIR%%/apps/survey_client/l10n/es.js
9414
%%WWWDIR%%/apps/survey_client/l10n/es.js
9270
%%WWWDIR%%/apps/survey_client/l10n/es.json
9415
%%WWWDIR%%/apps/survey_client/l10n/es.json
9416
%%WWWDIR%%/apps/survey_client/l10n/es_419.js
9417
%%WWWDIR%%/apps/survey_client/l10n/es_419.json
9271
%%WWWDIR%%/apps/survey_client/l10n/es_CL.js
9418
%%WWWDIR%%/apps/survey_client/l10n/es_CL.js
9272
%%WWWDIR%%/apps/survey_client/l10n/es_CL.json
9419
%%WWWDIR%%/apps/survey_client/l10n/es_CL.json
9273
%%WWWDIR%%/apps/survey_client/l10n/es_CO.js
9420
%%WWWDIR%%/apps/survey_client/l10n/es_CO.js
Lines 9312-9317 Link Here
9312
%%WWWDIR%%/apps/survey_client/l10n/ja.json
9459
%%WWWDIR%%/apps/survey_client/l10n/ja.json
9313
%%WWWDIR%%/apps/survey_client/l10n/ka_GE.js
9460
%%WWWDIR%%/apps/survey_client/l10n/ka_GE.js
9314
%%WWWDIR%%/apps/survey_client/l10n/ka_GE.json
9461
%%WWWDIR%%/apps/survey_client/l10n/ka_GE.json
9462
%%WWWDIR%%/apps/survey_client/l10n/ko.js
9463
%%WWWDIR%%/apps/survey_client/l10n/ko.json
9315
%%WWWDIR%%/apps/survey_client/l10n/lv.js
9464
%%WWWDIR%%/apps/survey_client/l10n/lv.js
9316
%%WWWDIR%%/apps/survey_client/l10n/lv.json
9465
%%WWWDIR%%/apps/survey_client/l10n/lv.json
9317
%%WWWDIR%%/apps/survey_client/l10n/mn.js
9466
%%WWWDIR%%/apps/survey_client/l10n/mn.js
Lines 9361-9366 Link Here
9361
%%WWWDIR%%/apps/systemtags/appinfo/info.xml
9510
%%WWWDIR%%/apps/systemtags/appinfo/info.xml
9362
%%WWWDIR%%/apps/systemtags/appinfo/routes.php
9511
%%WWWDIR%%/apps/systemtags/appinfo/routes.php
9363
%%WWWDIR%%/apps/systemtags/appinfo/signature.json
9512
%%WWWDIR%%/apps/systemtags/appinfo/signature.json
9513
%%WWWDIR%%/apps/systemtags/composer/autoload.php
9514
%%WWWDIR%%/apps/systemtags/composer/composer.json
9515
%%WWWDIR%%/apps/systemtags/composer/composer/ClassLoader.php
9516
%%WWWDIR%%/apps/systemtags/composer/composer/LICENSE
9517
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_classmap.php
9518
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_namespaces.php
9519
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_psr4.php
9520
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_real.php
9521
%%WWWDIR%%/apps/systemtags/composer/composer/autoload_static.php
9364
%%WWWDIR%%/apps/systemtags/css/systemtagsfilelist.css
9522
%%WWWDIR%%/apps/systemtags/css/systemtagsfilelist.css
9365
%%WWWDIR%%/apps/systemtags/img/app.svg
9523
%%WWWDIR%%/apps/systemtags/img/app.svg
9366
%%WWWDIR%%/apps/systemtags/img/tag.svg
9524
%%WWWDIR%%/apps/systemtags/img/tag.svg
Lines 9412-9417 Link Here
9412
%%WWWDIR%%/apps/systemtags/l10n/eo.json
9570
%%WWWDIR%%/apps/systemtags/l10n/eo.json
9413
%%WWWDIR%%/apps/systemtags/l10n/es.js
9571
%%WWWDIR%%/apps/systemtags/l10n/es.js
9414
%%WWWDIR%%/apps/systemtags/l10n/es.json
9572
%%WWWDIR%%/apps/systemtags/l10n/es.json
9573
%%WWWDIR%%/apps/systemtags/l10n/es_419.js
9574
%%WWWDIR%%/apps/systemtags/l10n/es_419.json
9415
%%WWWDIR%%/apps/systemtags/l10n/es_AR.js
9575
%%WWWDIR%%/apps/systemtags/l10n/es_AR.js
9416
%%WWWDIR%%/apps/systemtags/l10n/es_AR.json
9576
%%WWWDIR%%/apps/systemtags/l10n/es_AR.json
9417
%%WWWDIR%%/apps/systemtags/l10n/es_CL.js
9577
%%WWWDIR%%/apps/systemtags/l10n/es_CL.js
Lines 9601-9606 Link Here
9601
%%WWWDIR%%/apps/theming/l10n/en_GB.json
9761
%%WWWDIR%%/apps/theming/l10n/en_GB.json
9602
%%WWWDIR%%/apps/theming/l10n/es.js
9762
%%WWWDIR%%/apps/theming/l10n/es.js
9603
%%WWWDIR%%/apps/theming/l10n/es.json
9763
%%WWWDIR%%/apps/theming/l10n/es.json
9764
%%WWWDIR%%/apps/theming/l10n/es_419.js
9765
%%WWWDIR%%/apps/theming/l10n/es_419.json
9604
%%WWWDIR%%/apps/theming/l10n/es_AR.js
9766
%%WWWDIR%%/apps/theming/l10n/es_AR.js
9605
%%WWWDIR%%/apps/theming/l10n/es_AR.json
9767
%%WWWDIR%%/apps/theming/l10n/es_AR.json
9606
%%WWWDIR%%/apps/theming/l10n/es_CL.js
9768
%%WWWDIR%%/apps/theming/l10n/es_CL.js
Lines 9701-9710 Link Here
9701
%%WWWDIR%%/apps/theming/lib/Util.php
9863
%%WWWDIR%%/apps/theming/lib/Util.php
9702
%%WWWDIR%%/apps/theming/templates/settings-admin.php
9864
%%WWWDIR%%/apps/theming/templates/settings-admin.php
9703
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/app.php
9865
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/app.php
9704
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/database.xml
9705
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/info.xml
9866
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/info.xml
9706
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/routes.php
9867
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/routes.php
9707
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/signature.json
9868
%%WWWDIR%%/apps/twofactor_backupcodes/appinfo/signature.json
9869
%%WWWDIR%%/apps/twofactor_backupcodes/composer/autoload.php
9870
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer.json
9871
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/ClassLoader.php
9872
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/LICENSE
9873
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_classmap.php
9874
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_namespaces.php
9875
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_psr4.php
9876
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_real.php
9877
%%WWWDIR%%/apps/twofactor_backupcodes/composer/composer/autoload_static.php
9708
%%WWWDIR%%/apps/twofactor_backupcodes/css/style.css
9878
%%WWWDIR%%/apps/twofactor_backupcodes/css/style.css
9709
%%WWWDIR%%/apps/twofactor_backupcodes/js/settings.js
9879
%%WWWDIR%%/apps/twofactor_backupcodes/js/settings.js
9710
%%WWWDIR%%/apps/twofactor_backupcodes/js/settingsview.js
9880
%%WWWDIR%%/apps/twofactor_backupcodes/js/settingsview.js
Lines 9729-9734 Link Here
9729
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/en_GB.json
9899
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/en_GB.json
9730
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es.js
9900
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es.js
9731
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es.json
9901
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es.json
9902
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_419.js
9903
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_419.json
9732
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_AR.js
9904
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_AR.js
9733
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_AR.json
9905
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_AR.json
9734
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CL.js
9906
%%WWWDIR%%/apps/twofactor_backupcodes/l10n/es_CL.js
Lines 9816-9825 Link Here
9816
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Controller/SettingsController.php
9988
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Controller/SettingsController.php
9817
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCode.php
9989
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCode.php
9818
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php
9990
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Db/BackupCodeMapper.php
9819
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/CopyEntriesFromOldTable.php
9991
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php
9992
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php
9993
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php
9994
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php
9820
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php
9995
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Provider/BackupCodesProvider.php
9821
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php
9996
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Service/BackupCodeStorage.php
9822
%%WWWDIR%%/apps/twofactor_backupcodes/settings/personal.php
9997
%%WWWDIR%%/apps/twofactor_backupcodes/lib/Settings/Personal.php
9823
%%WWWDIR%%/apps/twofactor_backupcodes/templates/challenge.php
9998
%%WWWDIR%%/apps/twofactor_backupcodes/templates/challenge.php
9824
%%WWWDIR%%/apps/twofactor_backupcodes/templates/personal.php
9999
%%WWWDIR%%/apps/twofactor_backupcodes/templates/personal.php
9825
%%WWWDIR%%/apps/updatenotification/appinfo/app.php
10000
%%WWWDIR%%/apps/updatenotification/appinfo/app.php
Lines 9826-9831 Link Here
9826
%%WWWDIR%%/apps/updatenotification/appinfo/info.xml
10001
%%WWWDIR%%/apps/updatenotification/appinfo/info.xml
9827
%%WWWDIR%%/apps/updatenotification/appinfo/routes.php
10002
%%WWWDIR%%/apps/updatenotification/appinfo/routes.php
9828
%%WWWDIR%%/apps/updatenotification/appinfo/signature.json
10003
%%WWWDIR%%/apps/updatenotification/appinfo/signature.json
10004
%%WWWDIR%%/apps/updatenotification/composer/autoload.php
10005
%%WWWDIR%%/apps/updatenotification/composer/composer.json
10006
%%WWWDIR%%/apps/updatenotification/composer/composer/ClassLoader.php
10007
%%WWWDIR%%/apps/updatenotification/composer/composer/LICENSE
10008
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_classmap.php
10009
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_namespaces.php
10010
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_psr4.php
10011
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_real.php
10012
%%WWWDIR%%/apps/updatenotification/composer/composer/autoload_static.php
10013
%%WWWDIR%%/apps/updatenotification/css/admin.css
9829
%%WWWDIR%%/apps/updatenotification/img/app.svg
10014
%%WWWDIR%%/apps/updatenotification/img/app.svg
9830
%%WWWDIR%%/apps/updatenotification/img/notification.svg
10015
%%WWWDIR%%/apps/updatenotification/img/notification.svg
9831
%%WWWDIR%%/apps/updatenotification/js/admin.js
10016
%%WWWDIR%%/apps/updatenotification/js/admin.js
Lines 9867-9872 Link Here
9867
%%WWWDIR%%/apps/updatenotification/l10n/eo.json
10052
%%WWWDIR%%/apps/updatenotification/l10n/eo.json
9868
%%WWWDIR%%/apps/updatenotification/l10n/es.js
10053
%%WWWDIR%%/apps/updatenotification/l10n/es.js
9869
%%WWWDIR%%/apps/updatenotification/l10n/es.json
10054
%%WWWDIR%%/apps/updatenotification/l10n/es.json
10055
%%WWWDIR%%/apps/updatenotification/l10n/es_419.js
10056
%%WWWDIR%%/apps/updatenotification/l10n/es_419.json
9870
%%WWWDIR%%/apps/updatenotification/l10n/es_AR.js
10057
%%WWWDIR%%/apps/updatenotification/l10n/es_AR.js
9871
%%WWWDIR%%/apps/updatenotification/l10n/es_AR.json
10058
%%WWWDIR%%/apps/updatenotification/l10n/es_AR.json
9872
%%WWWDIR%%/apps/updatenotification/l10n/es_CL.js
10059
%%WWWDIR%%/apps/updatenotification/l10n/es_CL.js
Lines 10017-10022 Link Here
10017
%%WWWDIR%%/apps/user_ldap/appinfo/routes.php
10204
%%WWWDIR%%/apps/user_ldap/appinfo/routes.php
10018
%%WWWDIR%%/apps/user_ldap/appinfo/signature.json
10205
%%WWWDIR%%/apps/user_ldap/appinfo/signature.json
10019
%%WWWDIR%%/apps/user_ldap/appinfo/update.php
10206
%%WWWDIR%%/apps/user_ldap/appinfo/update.php
10207
%%WWWDIR%%/apps/user_ldap/composer/autoload.php
10208
%%WWWDIR%%/apps/user_ldap/composer/composer.json
10209
%%WWWDIR%%/apps/user_ldap/composer/composer/ClassLoader.php
10210
%%WWWDIR%%/apps/user_ldap/composer/composer/LICENSE
10211
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_classmap.php
10212
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_namespaces.php
10213
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_psr4.php
10214
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_real.php
10215
%%WWWDIR%%/apps/user_ldap/composer/composer/autoload_static.php
10020
%%WWWDIR%%/apps/user_ldap/css/renewPassword.css
10216
%%WWWDIR%%/apps/user_ldap/css/renewPassword.css
10021
%%WWWDIR%%/apps/user_ldap/css/settings.css
10217
%%WWWDIR%%/apps/user_ldap/css/settings.css
10022
%%WWWDIR%%/apps/user_ldap/img/app-dark.svg
10218
%%WWWDIR%%/apps/user_ldap/img/app-dark.svg
Lines 10115-10120 Link Here
10115
%%WWWDIR%%/apps/user_ldap/l10n/eo.json
10311
%%WWWDIR%%/apps/user_ldap/l10n/eo.json
10116
%%WWWDIR%%/apps/user_ldap/l10n/es.js
10312
%%WWWDIR%%/apps/user_ldap/l10n/es.js
10117
%%WWWDIR%%/apps/user_ldap/l10n/es.json
10313
%%WWWDIR%%/apps/user_ldap/l10n/es.json
10314
%%WWWDIR%%/apps/user_ldap/l10n/es_419.js
10315
%%WWWDIR%%/apps/user_ldap/l10n/es_419.json
10118
%%WWWDIR%%/apps/user_ldap/l10n/es_AR.js
10316
%%WWWDIR%%/apps/user_ldap/l10n/es_AR.js
10119
%%WWWDIR%%/apps/user_ldap/l10n/es_AR.json
10317
%%WWWDIR%%/apps/user_ldap/l10n/es_AR.json
10120
%%WWWDIR%%/apps/user_ldap/l10n/es_CL.js
10318
%%WWWDIR%%/apps/user_ldap/l10n/es_CL.js
Lines 10306-10311 Link Here
10306
%%WWWDIR%%/apps/user_ldap/l10n/zh_TW.js
10504
%%WWWDIR%%/apps/user_ldap/l10n/zh_TW.js
10307
%%WWWDIR%%/apps/user_ldap/l10n/zh_TW.json
10505
%%WWWDIR%%/apps/user_ldap/l10n/zh_TW.json
10308
%%WWWDIR%%/apps/user_ldap/lib/Access.php
10506
%%WWWDIR%%/apps/user_ldap/lib/Access.php
10507
%%WWWDIR%%/apps/user_ldap/lib/AccessFactory.php
10309
%%WWWDIR%%/apps/user_ldap/lib/AppInfo/Application.php
10508
%%WWWDIR%%/apps/user_ldap/lib/AppInfo/Application.php
10310
%%WWWDIR%%/apps/user_ldap/lib/BackendUtility.php
10509
%%WWWDIR%%/apps/user_ldap/lib/BackendUtility.php
10311
%%WWWDIR%%/apps/user_ldap/lib/Command/CheckUser.php
10510
%%WWWDIR%%/apps/user_ldap/lib/Command/CheckUser.php
Lines 10318-10334 Link Here
10318
%%WWWDIR%%/apps/user_ldap/lib/Command/TestConfig.php
10517
%%WWWDIR%%/apps/user_ldap/lib/Command/TestConfig.php
10319
%%WWWDIR%%/apps/user_ldap/lib/Configuration.php
10518
%%WWWDIR%%/apps/user_ldap/lib/Configuration.php
10320
%%WWWDIR%%/apps/user_ldap/lib/Connection.php
10519
%%WWWDIR%%/apps/user_ldap/lib/Connection.php
10520
%%WWWDIR%%/apps/user_ldap/lib/ConnectionFactory.php
10321
%%WWWDIR%%/apps/user_ldap/lib/Controller/ConfigAPIController.php
10521
%%WWWDIR%%/apps/user_ldap/lib/Controller/ConfigAPIController.php
10322
%%WWWDIR%%/apps/user_ldap/lib/Controller/RenewPasswordController.php
10522
%%WWWDIR%%/apps/user_ldap/lib/Controller/RenewPasswordController.php
10323
%%WWWDIR%%/apps/user_ldap/lib/Exceptions/ConstraintViolationException.php
10523
%%WWWDIR%%/apps/user_ldap/lib/Exceptions/ConstraintViolationException.php
10324
%%WWWDIR%%/apps/user_ldap/lib/Exceptions/NotOnLDAP.php
10524
%%WWWDIR%%/apps/user_ldap/lib/Exceptions/NotOnLDAP.php
10325
%%WWWDIR%%/apps/user_ldap/lib/FilesystemHelper.php
10525
%%WWWDIR%%/apps/user_ldap/lib/FilesystemHelper.php
10526
%%WWWDIR%%/apps/user_ldap/lib/GroupPluginManager.php
10326
%%WWWDIR%%/apps/user_ldap/lib/Group_LDAP.php
10527
%%WWWDIR%%/apps/user_ldap/lib/Group_LDAP.php
10327
%%WWWDIR%%/apps/user_ldap/lib/Group_Proxy.php
10528
%%WWWDIR%%/apps/user_ldap/lib/Group_Proxy.php
10328
%%WWWDIR%%/apps/user_ldap/lib/Helper.php
10529
%%WWWDIR%%/apps/user_ldap/lib/Helper.php
10530
%%WWWDIR%%/apps/user_ldap/lib/IGroupLDAP.php
10531
%%WWWDIR%%/apps/user_ldap/lib/ILDAPGroupPlugin.php
10532
%%WWWDIR%%/apps/user_ldap/lib/ILDAPUserPlugin.php
10329
%%WWWDIR%%/apps/user_ldap/lib/ILDAPWrapper.php
10533
%%WWWDIR%%/apps/user_ldap/lib/ILDAPWrapper.php
10330
%%WWWDIR%%/apps/user_ldap/lib/IUserLDAP.php
10534
%%WWWDIR%%/apps/user_ldap/lib/IUserLDAP.php
10331
%%WWWDIR%%/apps/user_ldap/lib/Jobs/CleanUp.php
10535
%%WWWDIR%%/apps/user_ldap/lib/Jobs/CleanUp.php
10536
%%WWWDIR%%/apps/user_ldap/lib/Jobs/Sync.php
10332
%%WWWDIR%%/apps/user_ldap/lib/Jobs/UpdateGroups.php
10537
%%WWWDIR%%/apps/user_ldap/lib/Jobs/UpdateGroups.php
10333
%%WWWDIR%%/apps/user_ldap/lib/LDAP.php
10538
%%WWWDIR%%/apps/user_ldap/lib/LDAP.php
10334
%%WWWDIR%%/apps/user_ldap/lib/LDAPProvider.php
10539
%%WWWDIR%%/apps/user_ldap/lib/LDAPProvider.php
Lines 10351-10356 Link Here
10351
%%WWWDIR%%/apps/user_ldap/lib/User/Manager.php
10556
%%WWWDIR%%/apps/user_ldap/lib/User/Manager.php
10352
%%WWWDIR%%/apps/user_ldap/lib/User/OfflineUser.php
10557
%%WWWDIR%%/apps/user_ldap/lib/User/OfflineUser.php
10353
%%WWWDIR%%/apps/user_ldap/lib/User/User.php
10558
%%WWWDIR%%/apps/user_ldap/lib/User/User.php
10559
%%WWWDIR%%/apps/user_ldap/lib/UserPluginManager.php
10354
%%WWWDIR%%/apps/user_ldap/lib/User_LDAP.php
10560
%%WWWDIR%%/apps/user_ldap/lib/User_LDAP.php
10355
%%WWWDIR%%/apps/user_ldap/lib/User_Proxy.php
10561
%%WWWDIR%%/apps/user_ldap/lib/User_Proxy.php
10356
%%WWWDIR%%/apps/user_ldap/lib/Wizard.php
10562
%%WWWDIR%%/apps/user_ldap/lib/Wizard.php
Lines 10406-10411 Link Here
10406
%%WWWDIR%%/apps/workflowengine/l10n/en_GB.json
10612
%%WWWDIR%%/apps/workflowengine/l10n/en_GB.json
10407
%%WWWDIR%%/apps/workflowengine/l10n/es.js
10613
%%WWWDIR%%/apps/workflowengine/l10n/es.js
10408
%%WWWDIR%%/apps/workflowengine/l10n/es.json
10614
%%WWWDIR%%/apps/workflowengine/l10n/es.json
10615
%%WWWDIR%%/apps/workflowengine/l10n/es_419.js
10616
%%WWWDIR%%/apps/workflowengine/l10n/es_419.json
10409
%%WWWDIR%%/apps/workflowengine/l10n/es_AR.js
10617
%%WWWDIR%%/apps/workflowengine/l10n/es_AR.js
10410
%%WWWDIR%%/apps/workflowengine/l10n/es_AR.json
10618
%%WWWDIR%%/apps/workflowengine/l10n/es_AR.json
10411
%%WWWDIR%%/apps/workflowengine/l10n/es_CL.js
10619
%%WWWDIR%%/apps/workflowengine/l10n/es_CL.js
Lines 10438-10443 Link Here
10438
%%WWWDIR%%/apps/workflowengine/l10n/es_SV.json
10646
%%WWWDIR%%/apps/workflowengine/l10n/es_SV.json
10439
%%WWWDIR%%/apps/workflowengine/l10n/es_UY.js
10647
%%WWWDIR%%/apps/workflowengine/l10n/es_UY.js
10440
%%WWWDIR%%/apps/workflowengine/l10n/es_UY.json
10648
%%WWWDIR%%/apps/workflowengine/l10n/es_UY.json
10649
%%WWWDIR%%/apps/workflowengine/l10n/et_EE.js
10650
%%WWWDIR%%/apps/workflowengine/l10n/et_EE.json
10441
%%WWWDIR%%/apps/workflowengine/l10n/fa.js
10651
%%WWWDIR%%/apps/workflowengine/l10n/fa.js
10442
%%WWWDIR%%/apps/workflowengine/l10n/fa.json
10652
%%WWWDIR%%/apps/workflowengine/l10n/fa.json
10443
%%WWWDIR%%/apps/workflowengine/l10n/fi.js
10653
%%WWWDIR%%/apps/workflowengine/l10n/fi.js
Lines 10513-10519 Link Here
10513
%%WWWDIR%%/apps/workflowengine/templates/admin.php
10723
%%WWWDIR%%/apps/workflowengine/templates/admin.php
10514
%%WWWDIR%%/config/.htaccess
10724
%%WWWDIR%%/config/.htaccess
10515
%%WWWDIR%%/config/config.sample.php
10725
%%WWWDIR%%/config/config.sample.php
10516
%%WWWDIR%%/config/config.sample.php.bak
10726
@comment %%WWWDIR%%/config/config.sample.php.bak
10517
@owner
10727
@owner
10518
@group
10728
@group
10519
%%WWWDIR%%/console.php
10729
%%WWWDIR%%/console.php
Lines 10522-10527 Link Here
10522
%%WWWDIR%%/core/Command/App/Disable.php
10732
%%WWWDIR%%/core/Command/App/Disable.php
10523
%%WWWDIR%%/core/Command/App/Enable.php
10733
%%WWWDIR%%/core/Command/App/Enable.php
10524
%%WWWDIR%%/core/Command/App/GetPath.php
10734
%%WWWDIR%%/core/Command/App/GetPath.php
10735
%%WWWDIR%%/core/Command/App/Install.php
10525
%%WWWDIR%%/core/Command/App/ListApps.php
10736
%%WWWDIR%%/core/Command/App/ListApps.php
10526
%%WWWDIR%%/core/Command/Background/Ajax.php
10737
%%WWWDIR%%/core/Command/Background/Ajax.php
10527
%%WWWDIR%%/core/Command/Background/Base.php
10738
%%WWWDIR%%/core/Command/Background/Base.php
Lines 10539-10547 Link Here
10539
%%WWWDIR%%/core/Command/Config/System/DeleteConfig.php
10750
%%WWWDIR%%/core/Command/Config/System/DeleteConfig.php
10540
%%WWWDIR%%/core/Command/Config/System/GetConfig.php
10751
%%WWWDIR%%/core/Command/Config/System/GetConfig.php
10541
%%WWWDIR%%/core/Command/Config/System/SetConfig.php
10752
%%WWWDIR%%/core/Command/Config/System/SetConfig.php
10753
%%WWWDIR%%/core/Command/Db/AddMissingIndices.php
10754
%%WWWDIR%%/core/Command/Db/ConvertFilecacheBigInt.php
10542
%%WWWDIR%%/core/Command/Db/ConvertMysqlToMB4.php
10755
%%WWWDIR%%/core/Command/Db/ConvertMysqlToMB4.php
10543
%%WWWDIR%%/core/Command/Db/ConvertType.php
10756
%%WWWDIR%%/core/Command/Db/ConvertType.php
10544
%%WWWDIR%%/core/Command/Db/GenerateChangeScript.php
10757
%%WWWDIR%%/core/Command/Db/Migrations/ExecuteCommand.php
10758
%%WWWDIR%%/core/Command/Db/Migrations/GenerateCommand.php
10759
%%WWWDIR%%/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php
10760
%%WWWDIR%%/core/Command/Db/Migrations/MigrateCommand.php
10761
%%WWWDIR%%/core/Command/Db/Migrations/StatusCommand.php
10545
%%WWWDIR%%/core/Command/Encryption/ChangeKeyStorageRoot.php
10762
%%WWWDIR%%/core/Command/Encryption/ChangeKeyStorageRoot.php
10546
%%WWWDIR%%/core/Command/Encryption/DecryptAll.php
10763
%%WWWDIR%%/core/Command/Encryption/DecryptAll.php
10547
%%WWWDIR%%/core/Command/Encryption/Disable.php
10764
%%WWWDIR%%/core/Command/Encryption/Disable.php
Lines 10569-10574 Link Here
10569
%%WWWDIR%%/core/Command/Maintenance/Mode.php
10786
%%WWWDIR%%/core/Command/Maintenance/Mode.php
10570
%%WWWDIR%%/core/Command/Maintenance/Repair.php
10787
%%WWWDIR%%/core/Command/Maintenance/Repair.php
10571
%%WWWDIR%%/core/Command/Maintenance/UpdateHtaccess.php
10788
%%WWWDIR%%/core/Command/Maintenance/UpdateHtaccess.php
10789
%%WWWDIR%%/core/Command/Maintenance/UpdateTheme.php
10572
%%WWWDIR%%/core/Command/Security/ImportCertificate.php
10790
%%WWWDIR%%/core/Command/Security/ImportCertificate.php
10573
%%WWWDIR%%/core/Command/Security/ListCertificates.php
10791
%%WWWDIR%%/core/Command/Security/ListCertificates.php
10574
%%WWWDIR%%/core/Command/Security/RemoveCertificate.php
10792
%%WWWDIR%%/core/Command/Security/RemoveCertificate.php
Lines 10587-10592 Link Here
10587
%%WWWDIR%%/core/Command/User/Report.php
10805
%%WWWDIR%%/core/Command/User/Report.php
10588
%%WWWDIR%%/core/Command/User/ResetPassword.php
10806
%%WWWDIR%%/core/Command/User/ResetPassword.php
10589
%%WWWDIR%%/core/Command/User/Setting.php
10807
%%WWWDIR%%/core/Command/User/Setting.php
10808
%%WWWDIR%%/core/Controller/AutoCompleteController.php
10590
%%WWWDIR%%/core/Controller/AvatarController.php
10809
%%WWWDIR%%/core/Controller/AvatarController.php
10591
%%WWWDIR%%/core/Controller/ClientFlowLoginController.php
10810
%%WWWDIR%%/core/Controller/ClientFlowLoginController.php
10592
%%WWWDIR%%/core/Controller/ContactsMenuController.php
10811
%%WWWDIR%%/core/Controller/ContactsMenuController.php
Lines 10600-10606 Link Here
10600
%%WWWDIR%%/core/Controller/SetupController.php
10819
%%WWWDIR%%/core/Controller/SetupController.php
10601
%%WWWDIR%%/core/Controller/TwoFactorChallengeController.php
10820
%%WWWDIR%%/core/Controller/TwoFactorChallengeController.php
10602
%%WWWDIR%%/core/Controller/UserController.php
10821
%%WWWDIR%%/core/Controller/UserController.php
10822
%%WWWDIR%%/core/Controller/WalledGardenController.php
10603
%%WWWDIR%%/core/Middleware/TwoFactorMiddleware.php
10823
%%WWWDIR%%/core/Middleware/TwoFactorMiddleware.php
10824
%%WWWDIR%%/core/Migrations/Version13000Date20170705121758.php
10825
%%WWWDIR%%/core/Migrations/Version13000Date20170718121200.php
10826
%%WWWDIR%%/core/Migrations/Version13000Date20170814074715.php
10827
%%WWWDIR%%/core/Migrations/Version13000Date20170919121250.php
10828
%%WWWDIR%%/core/Migrations/Version13000Date20170926101637.php
10604
%%WWWDIR%%/core/ajax/update.php
10829
%%WWWDIR%%/core/ajax/update.php
10605
%%WWWDIR%%/core/css/apps.scss
10830
%%WWWDIR%%/core/css/apps.scss
10606
%%WWWDIR%%/core/css/fixes.scss
10831
%%WWWDIR%%/core/css/fixes.scss
Lines 10609-10628 Link Here
10609
%%WWWDIR%%/core/css/guest.css
10834
%%WWWDIR%%/core/css/guest.css
10610
%%WWWDIR%%/core/css/header.scss
10835
%%WWWDIR%%/core/css/header.scss
10611
%%WWWDIR%%/core/css/icons.scss
10836
%%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
10837
%%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
10838
%%WWWDIR%%/core/css/images/ui-bg_flat_10_000000_40x100.png
10616
%%WWWDIR%%/core/css/images/ui-bg_flat_35_1d2d44_40x100.png
10839
%%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
10840
%%WWWDIR%%/core/css/images/ui-icons_1d2d44_256x240.png
10621
%%WWWDIR%%/core/css/images/ui-icons_ffd27a_256x240.png
10841
%%WWWDIR%%/core/css/images/ui-icons_ffd27a_256x240.png
10622
%%WWWDIR%%/core/css/images/ui-icons_ffffff_256x240.png
10842
%%WWWDIR%%/core/css/images/ui-icons_ffffff_256x240.png
10623
%%WWWDIR%%/core/css/inputs.scss
10843
%%WWWDIR%%/core/css/inputs.scss
10624
%%WWWDIR%%/core/css/jquery-ui-fixes.css
10844
%%WWWDIR%%/core/css/jquery-ui-fixes.scss
10625
%%WWWDIR%%/core/css/jquery.ocdialog.css
10845
%%WWWDIR%%/core/css/jquery.ocdialog.scss
10626
%%WWWDIR%%/core/css/login/authpicker.css
10846
%%WWWDIR%%/core/css/login/authpicker.css
10627
%%WWWDIR%%/core/css/lostpassword/resetpassword.css
10847
%%WWWDIR%%/core/css/lostpassword/resetpassword.css
10628
%%WWWDIR%%/core/css/mobile.scss
10848
%%WWWDIR%%/core/css/mobile.scss
Lines 10767-10772 Link Here
10767
%%WWWDIR%%/core/doc/admin/_images/users-create.png
10987
%%WWWDIR%%/core/doc/admin/_images/users-create.png
10768
%%WWWDIR%%/core/doc/admin/_images/users-groups.png
10988
%%WWWDIR%%/core/doc/admin/_images/users-groups.png
10769
%%WWWDIR%%/core/doc/admin/_images/webdav.png
10989
%%WWWDIR%%/core/doc/admin/_images/webdav.png
10990
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/bigint_identifiers.txt
10770
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/db_conversion.txt
10991
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/db_conversion.txt
10771
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/index.txt
10992
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/index.txt
10772
%%WWWDIR%%/core/doc/admin/_sources/configuration_database/linux_database_configuration.txt
10993
%%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
11038
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/theming.txt
10818
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/thirdparty_php_configuration.txt
11039
%%WWWDIR%%/core/doc/admin/_sources/configuration_server/thirdparty_php_configuration.txt
10819
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/index.txt
11040
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/index.txt
11041
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/instruction_set_for_apps.txt
11042
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/instruction_set_for_groups.txt
11043
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/instruction_set_for_users.txt
10820
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/reset_admin_password.txt
11044
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/reset_admin_password.txt
10821
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/reset_user_password.txt
11045
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/reset_user_password.txt
10822
%%WWWDIR%%/core/doc/admin/_sources/configuration_user/two_factor-auth.txt
11046
%%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
11164
%%WWWDIR%%/core/doc/admin/_static/social/twitter.svg
10941
%%WWWDIR%%/core/doc/admin/_static/social/twitterround.png
11165
%%WWWDIR%%/core/doc/admin/_static/social/twitterround.png
10942
%%WWWDIR%%/core/doc/admin/_static/social/youtube.svg
11166
%%WWWDIR%%/core/doc/admin/_static/social/youtube.svg
10943
%%WWWDIR%%/core/doc/admin/_static/style.css
10944
%%WWWDIR%%/core/doc/admin/_static/styles.css
11167
%%WWWDIR%%/core/doc/admin/_static/styles.css
10945
%%WWWDIR%%/core/doc/admin/_static/underscore.js
11168
%%WWWDIR%%/core/doc/admin/_static/underscore.js
10946
%%WWWDIR%%/core/doc/admin/_static/up-pressed.png
11169
%%WWWDIR%%/core/doc/admin/_static/up-pressed.png
10947
%%WWWDIR%%/core/doc/admin/_static/up.png
11170
%%WWWDIR%%/core/doc/admin/_static/up.png
10948
%%WWWDIR%%/core/doc/admin/_static/websupport.js
11171
%%WWWDIR%%/core/doc/admin/_static/websupport.js
11172
%%WWWDIR%%/core/doc/admin/configuration_database/bigint_identifiers.html
10949
%%WWWDIR%%/core/doc/admin/configuration_database/db_conversion.html
11173
%%WWWDIR%%/core/doc/admin/configuration_database/db_conversion.html
10950
%%WWWDIR%%/core/doc/admin/configuration_database/index.html
11174
%%WWWDIR%%/core/doc/admin/configuration_database/index.html
10951
%%WWWDIR%%/core/doc/admin/configuration_database/linux_database_configuration.html
11175
%%WWWDIR%%/core/doc/admin/configuration_database/linux_database_configuration.html
Lines 10996-11001 Link Here
10996
%%WWWDIR%%/core/doc/admin/configuration_server/theming.html
11220
%%WWWDIR%%/core/doc/admin/configuration_server/theming.html
10997
%%WWWDIR%%/core/doc/admin/configuration_server/thirdparty_php_configuration.html
11221
%%WWWDIR%%/core/doc/admin/configuration_server/thirdparty_php_configuration.html
10998
%%WWWDIR%%/core/doc/admin/configuration_user/index.html
11222
%%WWWDIR%%/core/doc/admin/configuration_user/index.html
11223
%%WWWDIR%%/core/doc/admin/configuration_user/instruction_set_for_apps.html
11224
%%WWWDIR%%/core/doc/admin/configuration_user/instruction_set_for_groups.html
11225
%%WWWDIR%%/core/doc/admin/configuration_user/instruction_set_for_users.html
10999
%%WWWDIR%%/core/doc/admin/configuration_user/reset_admin_password.html
11226
%%WWWDIR%%/core/doc/admin/configuration_user/reset_admin_password.html
11000
%%WWWDIR%%/core/doc/admin/configuration_user/reset_user_password.html
11227
%%WWWDIR%%/core/doc/admin/configuration_user/reset_user_password.html
11001
%%WWWDIR%%/core/doc/admin/configuration_user/two_factor-auth.html
11228
%%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
11279
%%WWWDIR%%/core/doc/user/_images/anonym_uploaded_files.png
11053
%%WWWDIR%%/core/doc/user/_images/apps_menu.png
11280
%%WWWDIR%%/core/doc/user/_images/apps_menu.png
11054
%%WWWDIR%%/core/doc/user/_images/cardbook_icon.png
11281
%%WWWDIR%%/core/doc/user/_images/cardbook_icon.png
11282
%%WWWDIR%%/core/doc/user/_images/contact_bottombar.png
11283
%%WWWDIR%%/core/doc/user/_images/contact_manageaddressbook.png
11284
%%WWWDIR%%/core/doc/user/_images/contact_new.png
11285
%%WWWDIR%%/core/doc/user/_images/contact_picture.png
11286
%%WWWDIR%%/core/doc/user/_images/contact_picture_options.png
11287
%%WWWDIR%%/core/doc/user/_images/contact_picture_set.png
11288
%%WWWDIR%%/core/doc/user/_images/contact_uploadbutton.png
11289
%%WWWDIR%%/core/doc/user/_images/contacts_empty.png
11055
%%WWWDIR%%/core/doc/user/_images/contacts_link.png
11290
%%WWWDIR%%/core/doc/user/_images/contacts_link.png
11056
%%WWWDIR%%/core/doc/user/_images/contacts_menu.png
11291
%%WWWDIR%%/core/doc/user/_images/contacts_menu.png
11057
%%WWWDIR%%/core/doc/user/_images/contacts_popup.png
11292
%%WWWDIR%%/core/doc/user/_images/contacts_popup.png
Lines 11205-11211 Link Here
11205
%%WWWDIR%%/core/doc/user/_static/social/twitter.svg
11440
%%WWWDIR%%/core/doc/user/_static/social/twitter.svg
11206
%%WWWDIR%%/core/doc/user/_static/social/twitterround.png
11441
%%WWWDIR%%/core/doc/user/_static/social/twitterround.png
11207
%%WWWDIR%%/core/doc/user/_static/social/youtube.svg
11442
%%WWWDIR%%/core/doc/user/_static/social/youtube.svg
11208
%%WWWDIR%%/core/doc/user/_static/style.css
11209
%%WWWDIR%%/core/doc/user/_static/styles.css
11443
%%WWWDIR%%/core/doc/user/_static/styles.css
11210
%%WWWDIR%%/core/doc/user/_static/underscore.js
11444
%%WWWDIR%%/core/doc/user/_static/underscore.js
11211
%%WWWDIR%%/core/doc/user/_static/up-pressed.png
11445
%%WWWDIR%%/core/doc/user/_static/up-pressed.png
Lines 11249-11254 Link Here
11249
%%WWWDIR%%/core/fonts/OpenSans-Regular.woff
11483
%%WWWDIR%%/core/fonts/OpenSans-Regular.woff
11250
%%WWWDIR%%/core/fonts/OpenSans-Semibold.woff
11484
%%WWWDIR%%/core/fonts/OpenSans-Semibold.woff
11251
%%WWWDIR%%/core/img/actions/add.svg
11485
%%WWWDIR%%/core/img/actions/add.svg
11486
%%WWWDIR%%/core/img/actions/address.svg
11487
%%WWWDIR%%/core/img/actions/arrow-left.svg
11488
%%WWWDIR%%/core/img/actions/arrow-right.svg
11252
%%WWWDIR%%/core/img/actions/audio-off-white.svg
11489
%%WWWDIR%%/core/img/actions/audio-off-white.svg
11253
%%WWWDIR%%/core/img/actions/audio-off.svg
11490
%%WWWDIR%%/core/img/actions/audio-off.svg
11254
%%WWWDIR%%/core/img/actions/audio-white.svg
11491
%%WWWDIR%%/core/img/actions/audio-white.svg
Lines 11294-11303 Link Here
11294
%%WWWDIR%%/core/img/actions/more.svg
11531
%%WWWDIR%%/core/img/actions/more.svg
11295
%%WWWDIR%%/core/img/actions/password.png
11532
%%WWWDIR%%/core/img/actions/password.png
11296
%%WWWDIR%%/core/img/actions/password.svg
11533
%%WWWDIR%%/core/img/actions/password.svg
11297
%%WWWDIR%%/core/img/actions/pause-big.svg
11298
%%WWWDIR%%/core/img/actions/pause.svg
11534
%%WWWDIR%%/core/img/actions/pause.svg
11299
%%WWWDIR%%/core/img/actions/play-add.svg
11535
%%WWWDIR%%/core/img/actions/play-add.svg
11300
%%WWWDIR%%/core/img/actions/play-big.svg
11301
%%WWWDIR%%/core/img/actions/play-next.svg
11536
%%WWWDIR%%/core/img/actions/play-next.svg
11302
%%WWWDIR%%/core/img/actions/play-previous.svg
11537
%%WWWDIR%%/core/img/actions/play-previous.svg
11303
%%WWWDIR%%/core/img/actions/play.svg
11538
%%WWWDIR%%/core/img/actions/play.svg
Lines 11324-11329 Link Here
11324
%%WWWDIR%%/core/img/actions/starred.svg
11559
%%WWWDIR%%/core/img/actions/starred.svg
11325
%%WWWDIR%%/core/img/actions/tag.png
11560
%%WWWDIR%%/core/img/actions/tag.png
11326
%%WWWDIR%%/core/img/actions/tag.svg
11561
%%WWWDIR%%/core/img/actions/tag.svg
11562
%%WWWDIR%%/core/img/actions/toggle-background.svg
11327
%%WWWDIR%%/core/img/actions/toggle-filelist.svg
11563
%%WWWDIR%%/core/img/actions/toggle-filelist.svg
11328
%%WWWDIR%%/core/img/actions/toggle-pictures.svg
11564
%%WWWDIR%%/core/img/actions/toggle-pictures.svg
11329
%%WWWDIR%%/core/img/actions/toggle.svg
11565
%%WWWDIR%%/core/img/actions/toggle.svg
Lines 11332-11339 Link Here
11332
%%WWWDIR%%/core/img/actions/triangle-s.svg
11568
%%WWWDIR%%/core/img/actions/triangle-s.svg
11333
%%WWWDIR%%/core/img/actions/upload-white.svg
11569
%%WWWDIR%%/core/img/actions/upload-white.svg
11334
%%WWWDIR%%/core/img/actions/upload.svg
11570
%%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
11571
%%WWWDIR%%/core/img/actions/user.svg
11338
%%WWWDIR%%/core/img/actions/verified.svg
11572
%%WWWDIR%%/core/img/actions/verified.svg
11339
%%WWWDIR%%/core/img/actions/verify.svg
11573
%%WWWDIR%%/core/img/actions/verify.svg
Lines 11349-11356 Link Here
11349
%%WWWDIR%%/core/img/actions/view-play.svg
11583
%%WWWDIR%%/core/img/actions/view-play.svg
11350
%%WWWDIR%%/core/img/actions/view-previous.svg
11584
%%WWWDIR%%/core/img/actions/view-previous.svg
11351
%%WWWDIR%%/core/img/appstore.svg
11585
%%WWWDIR%%/core/img/appstore.svg
11352
%%WWWDIR%%/core/img/background.jpg
11586
%%WWWDIR%%/core/img/background.png
11587
%%WWWDIR%%/core/img/background.svg
11353
%%WWWDIR%%/core/img/breadcrumb.svg
11588
%%WWWDIR%%/core/img/breadcrumb.svg
11589
%%WWWDIR%%/core/img/categories/auth.svg
11590
%%WWWDIR%%/core/img/categories/bundles.svg
11591
%%WWWDIR%%/core/img/categories/customization.svg
11592
%%WWWDIR%%/core/img/categories/files.svg
11593
%%WWWDIR%%/core/img/categories/games.svg
11594
%%WWWDIR%%/core/img/categories/integration.svg
11595
%%WWWDIR%%/core/img/categories/monitoring.svg
11596
%%WWWDIR%%/core/img/categories/multimedia.svg
11597
%%WWWDIR%%/core/img/categories/office.svg
11598
%%WWWDIR%%/core/img/categories/organization.svg
11599
%%WWWDIR%%/core/img/categories/social.svg
11354
%%WWWDIR%%/core/img/desktopapp.svg
11600
%%WWWDIR%%/core/img/desktopapp.svg
11355
%%WWWDIR%%/core/img/facebook.svg
11601
%%WWWDIR%%/core/img/facebook.svg
11356
%%WWWDIR%%/core/img/favicon-fb.png
11602
%%WWWDIR%%/core/img/favicon-fb.png
Lines 11365-11370 Link Here
11365
%%WWWDIR%%/core/img/filetypes/audio.svg
11611
%%WWWDIR%%/core/img/filetypes/audio.svg
11366
%%WWWDIR%%/core/img/filetypes/file.svg
11612
%%WWWDIR%%/core/img/filetypes/file.svg
11367
%%WWWDIR%%/core/img/filetypes/folder-drag-accept.svg
11613
%%WWWDIR%%/core/img/filetypes/folder-drag-accept.svg
11614
%%WWWDIR%%/core/img/filetypes/folder-encrypted.svg
11368
%%WWWDIR%%/core/img/filetypes/folder-external.svg
11615
%%WWWDIR%%/core/img/filetypes/folder-external.svg
11369
%%WWWDIR%%/core/img/filetypes/folder-public.svg
11616
%%WWWDIR%%/core/img/filetypes/folder-public.svg
11370
%%WWWDIR%%/core/img/filetypes/folder-shared.svg
11617
%%WWWDIR%%/core/img/filetypes/folder-shared.svg
Lines 11371-11376 Link Here
11371
%%WWWDIR%%/core/img/filetypes/folder-starred.svg
11618
%%WWWDIR%%/core/img/filetypes/folder-starred.svg
11372
%%WWWDIR%%/core/img/filetypes/folder.svg
11619
%%WWWDIR%%/core/img/filetypes/folder.svg
11373
%%WWWDIR%%/core/img/filetypes/image.svg
11620
%%WWWDIR%%/core/img/filetypes/image.svg
11621
%%WWWDIR%%/core/img/filetypes/link.svg
11622
%%WWWDIR%%/core/img/filetypes/location.svg
11374
%%WWWDIR%%/core/img/filetypes/package-x-generic.svg
11623
%%WWWDIR%%/core/img/filetypes/package-x-generic.svg
11375
%%WWWDIR%%/core/img/filetypes/text-calendar.svg
11624
%%WWWDIR%%/core/img/filetypes/text-calendar.svg
11376
%%WWWDIR%%/core/img/filetypes/text-code.svg
11625
%%WWWDIR%%/core/img/filetypes/text-code.svg
Lines 11382-11394 Link Here
11382
%%WWWDIR%%/core/img/filetypes/x-office-spreadsheet.svg
11631
%%WWWDIR%%/core/img/filetypes/x-office-spreadsheet.svg
11383
%%WWWDIR%%/core/img/googleplay.png
11632
%%WWWDIR%%/core/img/googleplay.png
11384
%%WWWDIR%%/core/img/googleplus.svg
11633
%%WWWDIR%%/core/img/googleplus.svg
11385
%%WWWDIR%%/core/img/image-optimization.sh
11386
%%WWWDIR%%/core/img/loading-dark.gif
11634
%%WWWDIR%%/core/img/loading-dark.gif
11387
%%WWWDIR%%/core/img/loading-small-dark.gif
11635
%%WWWDIR%%/core/img/loading-small-dark.gif
11388
%%WWWDIR%%/core/img/loading-small.gif
11636
%%WWWDIR%%/core/img/loading-small.gif
11389
%%WWWDIR%%/core/img/loading.gif
11637
%%WWWDIR%%/core/img/loading.gif
11390
%%WWWDIR%%/core/img/logo-icon-175px.png
11638
%%WWWDIR%%/core/img/logo-icon-175px.png
11391
%%WWWDIR%%/core/img/logo-icon.svg
11392
%%WWWDIR%%/core/img/logo-mail.png
11639
%%WWWDIR%%/core/img/logo-mail.png
11393
%%WWWDIR%%/core/img/logo.png
11640
%%WWWDIR%%/core/img/logo.png
11394
%%WWWDIR%%/core/img/logo.svg
11641
%%WWWDIR%%/core/img/logo.svg
Lines 11396-11401 Link Here
11396
%%WWWDIR%%/core/img/manifest.json
11643
%%WWWDIR%%/core/img/manifest.json
11397
%%WWWDIR%%/core/img/places/calendar-dark.png
11644
%%WWWDIR%%/core/img/places/calendar-dark.png
11398
%%WWWDIR%%/core/img/places/calendar-dark.svg
11645
%%WWWDIR%%/core/img/places/calendar-dark.svg
11646
%%WWWDIR%%/core/img/places/calendar.svg
11399
%%WWWDIR%%/core/img/places/contacts-dark.svg
11647
%%WWWDIR%%/core/img/places/contacts-dark.svg
11400
%%WWWDIR%%/core/img/places/contacts.svg
11648
%%WWWDIR%%/core/img/places/contacts.svg
11401
%%WWWDIR%%/core/img/places/default-app-icon.svg
11649
%%WWWDIR%%/core/img/places/default-app-icon.svg
Lines 11454-11459 Link Here
11454
%%WWWDIR%%/core/js/octemplate.js
11702
%%WWWDIR%%/core/js/octemplate.js
11455
%%WWWDIR%%/core/js/placeholder.js
11703
%%WWWDIR%%/core/js/placeholder.js
11456
%%WWWDIR%%/core/js/public/appconfig.js
11704
%%WWWDIR%%/core/js/public/appconfig.js
11705
%%WWWDIR%%/core/js/public/comments.js
11457
%%WWWDIR%%/core/js/select2-toggleselect.js
11706
%%WWWDIR%%/core/js/select2-toggleselect.js
11458
%%WWWDIR%%/core/js/setup.js
11707
%%WWWDIR%%/core/js/setup.js
11459
%%WWWDIR%%/core/js/setupchecks.js
11708
%%WWWDIR%%/core/js/setupchecks.js
Lines 11512-11517 Link Here
11512
%%WWWDIR%%/core/l10n/en_GB.json
11761
%%WWWDIR%%/core/l10n/en_GB.json
11513
%%WWWDIR%%/core/l10n/es.js
11762
%%WWWDIR%%/core/l10n/es.js
11514
%%WWWDIR%%/core/l10n/es.json
11763
%%WWWDIR%%/core/l10n/es.json
11764
%%WWWDIR%%/core/l10n/es_419.js
11765
%%WWWDIR%%/core/l10n/es_419.json
11515
%%WWWDIR%%/core/l10n/es_AR.js
11766
%%WWWDIR%%/core/l10n/es_AR.js
11516
%%WWWDIR%%/core/l10n/es_AR.json
11767
%%WWWDIR%%/core/l10n/es_AR.json
11517
%%WWWDIR%%/core/l10n/es_CL.js
11768
%%WWWDIR%%/core/l10n/es_CL.js
Lines 11724-11730 Link Here
11724
%%WWWDIR%%/core/vendor/zxcvbn/LICENSE.txt
11975
%%WWWDIR%%/core/vendor/zxcvbn/LICENSE.txt
11725
%%WWWDIR%%/core/vendor/zxcvbn/dist/zxcvbn.js
11976
%%WWWDIR%%/core/vendor/zxcvbn/dist/zxcvbn.js
11726
%%WWWDIR%%/cron.php
11977
%%WWWDIR%%/cron.php
11727
%%WWWDIR%%/db_structure.xml
11728
%%WWWDIR%%/index.html
11978
%%WWWDIR%%/index.html
11729
%%WWWDIR%%/index.php
11979
%%WWWDIR%%/index.php
11730
%%WWWDIR%%/l10n/.gitignore
11980
%%WWWDIR%%/l10n/.gitignore
Lines 11756-11761 Link Here
11756
%%WWWDIR%%/lib/l10n/en_GB.json
12006
%%WWWDIR%%/lib/l10n/en_GB.json
11757
%%WWWDIR%%/lib/l10n/es.js
12007
%%WWWDIR%%/lib/l10n/es.js
11758
%%WWWDIR%%/lib/l10n/es.json
12008
%%WWWDIR%%/lib/l10n/es.json
12009
%%WWWDIR%%/lib/l10n/es_419.js
12010
%%WWWDIR%%/lib/l10n/es_419.json
11759
%%WWWDIR%%/lib/l10n/es_AR.js
12011
%%WWWDIR%%/lib/l10n/es_AR.js
11760
%%WWWDIR%%/lib/l10n/es_AR.json
12012
%%WWWDIR%%/lib/l10n/es_AR.json
11761
%%WWWDIR%%/lib/l10n/es_CL.js
12013
%%WWWDIR%%/lib/l10n/es_CL.js
Lines 11788-11793 Link Here
11788
%%WWWDIR%%/lib/l10n/es_SV.json
12040
%%WWWDIR%%/lib/l10n/es_SV.json
11789
%%WWWDIR%%/lib/l10n/es_UY.js
12041
%%WWWDIR%%/lib/l10n/es_UY.js
11790
%%WWWDIR%%/lib/l10n/es_UY.json
12042
%%WWWDIR%%/lib/l10n/es_UY.json
12043
%%WWWDIR%%/lib/l10n/et_EE.js
12044
%%WWWDIR%%/lib/l10n/et_EE.json
11791
%%WWWDIR%%/lib/l10n/fi.js
12045
%%WWWDIR%%/lib/l10n/fi.js
11792
%%WWWDIR%%/lib/l10n/fi.json
12046
%%WWWDIR%%/lib/l10n/fi.json
11793
%%WWWDIR%%/lib/l10n/fr.js
12047
%%WWWDIR%%/lib/l10n/fr.js
Lines 11861-11866 Link Here
11861
%%WWWDIR%%/lib/private/App/CodeChecker/ICheck.php
12115
%%WWWDIR%%/lib/private/App/CodeChecker/ICheck.php
11862
%%WWWDIR%%/lib/private/App/CodeChecker/InfoChecker.php
12116
%%WWWDIR%%/lib/private/App/CodeChecker/InfoChecker.php
11863
%%WWWDIR%%/lib/private/App/CodeChecker/LanguageParseChecker.php
12117
%%WWWDIR%%/lib/private/App/CodeChecker/LanguageParseChecker.php
12118
%%WWWDIR%%/lib/private/App/CodeChecker/MigrationSchemaChecker.php
11864
%%WWWDIR%%/lib/private/App/CodeChecker/NodeVisitor.php
12119
%%WWWDIR%%/lib/private/App/CodeChecker/NodeVisitor.php
11865
%%WWWDIR%%/lib/private/App/CodeChecker/PrivateCheck.php
12120
%%WWWDIR%%/lib/private/App/CodeChecker/PrivateCheck.php
11866
%%WWWDIR%%/lib/private/App/CodeChecker/StrongComparisonCheck.php
12121
%%WWWDIR%%/lib/private/App/CodeChecker/StrongComparisonCheck.php
Lines 11882-11893 Link Here
11882
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/CORSMiddleware.php
12137
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/CORSMiddleware.php
11883
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/AppNotEnabledException.php
12138
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/AppNotEnabledException.php
11884
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/CrossSiteRequestForgeryException.php
12139
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/CrossSiteRequestForgeryException.php
12140
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/LaxSameSiteCookieFailedException.php
11885
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotAdminException.php
12141
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotAdminException.php
11886
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotConfirmedException.php
12142
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotConfirmedException.php
11887
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotLoggedInException.php
12143
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/NotLoggedInException.php
11888
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/SecurityException.php
12144
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/SecurityException.php
11889
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/StrictCookieMissingException.php
12145
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/Exceptions/StrictCookieMissingException.php
12146
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/PasswordConfirmationMiddleware.php
11890
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/RateLimitingMiddleware.php
12147
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/RateLimitingMiddleware.php
12148
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/SameSiteCookieMiddleware.php
11891
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php
12149
%%WWWDIR%%/lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php
11892
%%WWWDIR%%/lib/private/AppFramework/Middleware/SessionMiddleware.php
12150
%%WWWDIR%%/lib/private/AppFramework/Middleware/SessionMiddleware.php
11893
%%WWWDIR%%/lib/private/AppFramework/OCS/BaseResponse.php
12151
%%WWWDIR%%/lib/private/AppFramework/OCS/BaseResponse.php
Lines 11927-11937 Link Here
11927
%%WWWDIR%%/lib/private/BackgroundJob/TimedJob.php
12185
%%WWWDIR%%/lib/private/BackgroundJob/TimedJob.php
11928
%%WWWDIR%%/lib/private/Cache/CappedMemoryCache.php
12186
%%WWWDIR%%/lib/private/Cache/CappedMemoryCache.php
11929
%%WWWDIR%%/lib/private/Cache/File.php
12187
%%WWWDIR%%/lib/private/Cache/File.php
12188
%%WWWDIR%%/lib/private/Calendar/Manager.php
11930
%%WWWDIR%%/lib/private/CapabilitiesManager.php
12189
%%WWWDIR%%/lib/private/CapabilitiesManager.php
12190
%%WWWDIR%%/lib/private/Collaboration/AutoComplete/Manager.php
12191
%%WWWDIR%%/lib/private/Collaboration/Collaborators/GroupPlugin.php
12192
%%WWWDIR%%/lib/private/Collaboration/Collaborators/LookupPlugin.php
12193
%%WWWDIR%%/lib/private/Collaboration/Collaborators/MailPlugin.php
12194
%%WWWDIR%%/lib/private/Collaboration/Collaborators/RemotePlugin.php
12195
%%WWWDIR%%/lib/private/Collaboration/Collaborators/Search.php
12196
%%WWWDIR%%/lib/private/Collaboration/Collaborators/SearchResult.php
12197
%%WWWDIR%%/lib/private/Collaboration/Collaborators/UserPlugin.php
11931
%%WWWDIR%%/lib/private/Command/AsyncBus.php
12198
%%WWWDIR%%/lib/private/Command/AsyncBus.php
11932
%%WWWDIR%%/lib/private/Command/CallableJob.php
12199
%%WWWDIR%%/lib/private/Command/CallableJob.php
11933
%%WWWDIR%%/lib/private/Command/ClosureJob.php
12200
%%WWWDIR%%/lib/private/Command/ClosureJob.php
11934
%%WWWDIR%%/lib/private/Command/CommandJob.php
12201
%%WWWDIR%%/lib/private/Command/CommandJob.php
12202
%%WWWDIR%%/lib/private/Command/CronBus.php
11935
%%WWWDIR%%/lib/private/Command/FileAccess.php
12203
%%WWWDIR%%/lib/private/Command/FileAccess.php
11936
%%WWWDIR%%/lib/private/Command/QueueBus.php
12204
%%WWWDIR%%/lib/private/Command/QueueBus.php
11937
%%WWWDIR%%/lib/private/Comments/Comment.php
12205
%%WWWDIR%%/lib/private/Comments/Comment.php
Lines 11959-11968 Link Here
11959
%%WWWDIR%%/lib/private/DB/MDB2SchemaReader.php
12227
%%WWWDIR%%/lib/private/DB/MDB2SchemaReader.php
11960
%%WWWDIR%%/lib/private/DB/MDB2SchemaWriter.php
12228
%%WWWDIR%%/lib/private/DB/MDB2SchemaWriter.php
11961
%%WWWDIR%%/lib/private/DB/MigrationException.php
12229
%%WWWDIR%%/lib/private/DB/MigrationException.php
12230
%%WWWDIR%%/lib/private/DB/MigrationService.php
11962
%%WWWDIR%%/lib/private/DB/Migrator.php
12231
%%WWWDIR%%/lib/private/DB/Migrator.php
11963
%%WWWDIR%%/lib/private/DB/MySQLMigrator.php
12232
%%WWWDIR%%/lib/private/DB/MySQLMigrator.php
11964
%%WWWDIR%%/lib/private/DB/MySqlTools.php
12233
%%WWWDIR%%/lib/private/DB/MySqlTools.php
11965
%%WWWDIR%%/lib/private/DB/NoCheckMigrator.php
11966
%%WWWDIR%%/lib/private/DB/OCSqlitePlatform.php
12234
%%WWWDIR%%/lib/private/DB/OCSqlitePlatform.php
11967
%%WWWDIR%%/lib/private/DB/OracleConnection.php
12235
%%WWWDIR%%/lib/private/DB/OracleConnection.php
11968
%%WWWDIR%%/lib/private/DB/OracleMigrator.php
12236
%%WWWDIR%%/lib/private/DB/OracleMigrator.php
Lines 11985-11990 Link Here
11985
%%WWWDIR%%/lib/private/DB/QueryBuilder/QuoteHelper.php
12253
%%WWWDIR%%/lib/private/DB/QueryBuilder/QuoteHelper.php
11986
%%WWWDIR%%/lib/private/DB/SQLiteMigrator.php
12254
%%WWWDIR%%/lib/private/DB/SQLiteMigrator.php
11987
%%WWWDIR%%/lib/private/DB/SQLiteSessionInit.php
12255
%%WWWDIR%%/lib/private/DB/SQLiteSessionInit.php
12256
%%WWWDIR%%/lib/private/DB/SchemaWrapper.php
11988
%%WWWDIR%%/lib/private/DatabaseException.php
12257
%%WWWDIR%%/lib/private/DatabaseException.php
11989
%%WWWDIR%%/lib/private/DatabaseSetupException.php
12258
%%WWWDIR%%/lib/private/DatabaseSetupException.php
11990
%%WWWDIR%%/lib/private/DateTimeFormatter.php
12259
%%WWWDIR%%/lib/private/DateTimeFormatter.php
Lines 12030-12035 Link Here
12030
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/CachePermissionsMask.php
12299
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/CachePermissionsMask.php
12031
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/CacheWrapper.php
12300
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/CacheWrapper.php
12032
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/JailPropagator.php
12301
%%WWWDIR%%/lib/private/Files/Cache/Wrapper/JailPropagator.php
12302
%%WWWDIR%%/lib/private/Files/Config/CachedMountFileInfo.php
12033
%%WWWDIR%%/lib/private/Files/Config/CachedMountInfo.php
12303
%%WWWDIR%%/lib/private/Files/Config/CachedMountInfo.php
12034
%%WWWDIR%%/lib/private/Files/Config/LazyStorageMountInfo.php
12304
%%WWWDIR%%/lib/private/Files/Config/LazyStorageMountInfo.php
12035
%%WWWDIR%%/lib/private/Files/Config/MountProviderCollection.php
12305
%%WWWDIR%%/lib/private/Files/Config/MountProviderCollection.php
Lines 12060-12065 Link Here
12060
%%WWWDIR%%/lib/private/Files/ObjectStore/S3.php
12330
%%WWWDIR%%/lib/private/Files/ObjectStore/S3.php
12061
%%WWWDIR%%/lib/private/Files/ObjectStore/S3ConnectionTrait.php
12331
%%WWWDIR%%/lib/private/Files/ObjectStore/S3ConnectionTrait.php
12062
%%WWWDIR%%/lib/private/Files/ObjectStore/S3ObjectTrait.php
12332
%%WWWDIR%%/lib/private/Files/ObjectStore/S3ObjectTrait.php
12333
%%WWWDIR%%/lib/private/Files/ObjectStore/S3Signature.php
12063
%%WWWDIR%%/lib/private/Files/ObjectStore/StorageObjectStore.php
12334
%%WWWDIR%%/lib/private/Files/ObjectStore/StorageObjectStore.php
12064
%%WWWDIR%%/lib/private/Files/ObjectStore/Swift.php
12335
%%WWWDIR%%/lib/private/Files/ObjectStore/Swift.php
12065
%%WWWDIR%%/lib/private/Files/Search/SearchBinaryOperator.php
12336
%%WWWDIR%%/lib/private/Files/Search/SearchBinaryOperator.php
Lines 12122-12127 Link Here
12122
%%WWWDIR%%/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php
12393
%%WWWDIR%%/lib/private/IntegrityCheck/Iterator/ExcludeFoldersByPathFilterIterator.php
12123
%%WWWDIR%%/lib/private/L10N/Factory.php
12394
%%WWWDIR%%/lib/private/L10N/Factory.php
12124
%%WWWDIR%%/lib/private/L10N/L10N.php
12395
%%WWWDIR%%/lib/private/L10N/L10N.php
12396
%%WWWDIR%%/lib/private/L10N/L10NString.php
12125
%%WWWDIR%%/lib/private/L10N/LanguageNotFoundException.php
12397
%%WWWDIR%%/lib/private/L10N/LanguageNotFoundException.php
12126
%%WWWDIR%%/lib/private/LargeFileHelper.php
12398
%%WWWDIR%%/lib/private/LargeFileHelper.php
12127
%%WWWDIR%%/lib/private/Lock/AbstractLockingProvider.php
12399
%%WWWDIR%%/lib/private/Lock/AbstractLockingProvider.php
Lines 12137-12142 Link Here
12137
%%WWWDIR%%/lib/private/Log/File.php
12409
%%WWWDIR%%/lib/private/Log/File.php
12138
%%WWWDIR%%/lib/private/Log/Rotate.php
12410
%%WWWDIR%%/lib/private/Log/Rotate.php
12139
%%WWWDIR%%/lib/private/Log/Syslog.php
12411
%%WWWDIR%%/lib/private/Log/Syslog.php
12412
%%WWWDIR%%/lib/private/Mail/Attachment.php
12140
%%WWWDIR%%/lib/private/Mail/EMailTemplate.php
12413
%%WWWDIR%%/lib/private/Mail/EMailTemplate.php
12141
%%WWWDIR%%/lib/private/Mail/Mailer.php
12414
%%WWWDIR%%/lib/private/Mail/Mailer.php
12142
%%WWWDIR%%/lib/private/Mail/Message.php
12415
%%WWWDIR%%/lib/private/Mail/Message.php
Lines 12152-12157 Link Here
12152
%%WWWDIR%%/lib/private/Memcache/XCache.php
12425
%%WWWDIR%%/lib/private/Memcache/XCache.php
12153
%%WWWDIR%%/lib/private/Migration/BackgroundRepair.php
12426
%%WWWDIR%%/lib/private/Migration/BackgroundRepair.php
12154
%%WWWDIR%%/lib/private/Migration/ConsoleOutput.php
12427
%%WWWDIR%%/lib/private/Migration/ConsoleOutput.php
12428
%%WWWDIR%%/lib/private/Migration/SimpleOutput.php
12155
%%WWWDIR%%/lib/private/NaturalSort.php
12429
%%WWWDIR%%/lib/private/NaturalSort.php
12156
%%WWWDIR%%/lib/private/NaturalSort_DefaultCollator.php
12430
%%WWWDIR%%/lib/private/NaturalSort_DefaultCollator.php
12157
%%WWWDIR%%/lib/private/NavigationManager.php
12431
%%WWWDIR%%/lib/private/NavigationManager.php
Lines 12163-12169 Link Here
12163
%%WWWDIR%%/lib/private/OCS/CoreCapabilities.php
12437
%%WWWDIR%%/lib/private/OCS/CoreCapabilities.php
12164
%%WWWDIR%%/lib/private/OCS/DiscoveryService.php
12438
%%WWWDIR%%/lib/private/OCS/DiscoveryService.php
12165
%%WWWDIR%%/lib/private/OCS/Exception.php
12439
%%WWWDIR%%/lib/private/OCS/Exception.php
12166
%%WWWDIR%%/lib/private/OCS/PrivateData.php
12167
%%WWWDIR%%/lib/private/OCS/Provider.php
12440
%%WWWDIR%%/lib/private/OCS/Provider.php
12168
%%WWWDIR%%/lib/private/OCS/Result.php
12441
%%WWWDIR%%/lib/private/OCS/Result.php
12169
%%WWWDIR%%/lib/private/Preview/BMP.php
12442
%%WWWDIR%%/lib/private/Preview/BMP.php
Lines 12198-12203 Link Here
12198
%%WWWDIR%%/lib/private/PreviewManager.php
12471
%%WWWDIR%%/lib/private/PreviewManager.php
12199
%%WWWDIR%%/lib/private/PreviewNotAvailableException.php
12472
%%WWWDIR%%/lib/private/PreviewNotAvailableException.php
12200
%%WWWDIR%%/lib/private/RedisFactory.php
12473
%%WWWDIR%%/lib/private/RedisFactory.php
12474
%%WWWDIR%%/lib/private/Remote/Api/ApiBase.php
12475
%%WWWDIR%%/lib/private/Remote/Api/ApiCollection.php
12476
%%WWWDIR%%/lib/private/Remote/Api/ApiFactory.php
12477
%%WWWDIR%%/lib/private/Remote/Api/NotFoundException.php
12478
%%WWWDIR%%/lib/private/Remote/Api/OCS.php
12479
%%WWWDIR%%/lib/private/Remote/Credentials.php
12480
%%WWWDIR%%/lib/private/Remote/Instance.php
12481
%%WWWDIR%%/lib/private/Remote/InstanceFactory.php
12482
%%WWWDIR%%/lib/private/Remote/User.php
12201
%%WWWDIR%%/lib/private/Repair.php
12483
%%WWWDIR%%/lib/private/Repair.php
12202
%%WWWDIR%%/lib/private/Repair/CleanTags.php
12484
%%WWWDIR%%/lib/private/Repair/CleanTags.php
12203
%%WWWDIR%%/lib/private/Repair/Collation.php
12485
%%WWWDIR%%/lib/private/Repair/Collation.php
Lines 12210-12215 Link Here
12210
%%WWWDIR%%/lib/private/Repair/NC12/InstallCoreBundle.php
12492
%%WWWDIR%%/lib/private/Repair/NC12/InstallCoreBundle.php
12211
%%WWWDIR%%/lib/private/Repair/NC12/RepairIdentityProofKeyFolders.php
12493
%%WWWDIR%%/lib/private/Repair/NC12/RepairIdentityProofKeyFolders.php
12212
%%WWWDIR%%/lib/private/Repair/NC12/UpdateLanguageCodes.php
12494
%%WWWDIR%%/lib/private/Repair/NC12/UpdateLanguageCodes.php
12495
%%WWWDIR%%/lib/private/Repair/NC13/AddLogRotateJob.php
12213
%%WWWDIR%%/lib/private/Repair/NC13/RepairInvalidPaths.php
12496
%%WWWDIR%%/lib/private/Repair/NC13/RepairInvalidPaths.php
12214
%%WWWDIR%%/lib/private/Repair/OldGroupMembershipShares.php
12497
%%WWWDIR%%/lib/private/Repair/OldGroupMembershipShares.php
12215
%%WWWDIR%%/lib/private/Repair/Owncloud/DropAccountTermsTable.php
12498
%%WWWDIR%%/lib/private/Repair/Owncloud/DropAccountTermsTable.php
Lines 12229-12234 Link Here
12229
%%WWWDIR%%/lib/private/Search/Result/File.php
12512
%%WWWDIR%%/lib/private/Search/Result/File.php
12230
%%WWWDIR%%/lib/private/Search/Result/Folder.php
12513
%%WWWDIR%%/lib/private/Search/Result/Folder.php
12231
%%WWWDIR%%/lib/private/Search/Result/Image.php
12514
%%WWWDIR%%/lib/private/Search/Result/Image.php
12515
%%WWWDIR%%/lib/private/Security/Bruteforce/Capabilities.php
12232
%%WWWDIR%%/lib/private/Security/Bruteforce/Throttler.php
12516
%%WWWDIR%%/lib/private/Security/Bruteforce/Throttler.php
12233
%%WWWDIR%%/lib/private/Security/CSP/ContentSecurityPolicy.php
12517
%%WWWDIR%%/lib/private/Security/CSP/ContentSecurityPolicy.php
12234
%%WWWDIR%%/lib/private/Security/CSP/ContentSecurityPolicyManager.php
12518
%%WWWDIR%%/lib/private/Security/CSP/ContentSecurityPolicyManager.php
Lines 12269-12274 Link Here
12269
%%WWWDIR%%/lib/private/Settings/Admin/TipsTricks.php
12553
%%WWWDIR%%/lib/private/Settings/Admin/TipsTricks.php
12270
%%WWWDIR%%/lib/private/Settings/Manager.php
12554
%%WWWDIR%%/lib/private/Settings/Manager.php
12271
%%WWWDIR%%/lib/private/Settings/Mapper.php
12555
%%WWWDIR%%/lib/private/Settings/Mapper.php
12556
%%WWWDIR%%/lib/private/Settings/Personal/Additional.php
12557
%%WWWDIR%%/lib/private/Settings/Personal/PersonalInfo.php
12558
%%WWWDIR%%/lib/private/Settings/Personal/Security.php
12272
%%WWWDIR%%/lib/private/Settings/RemoveOrphaned.php
12559
%%WWWDIR%%/lib/private/Settings/RemoveOrphaned.php
12273
%%WWWDIR%%/lib/private/Settings/Section.php
12560
%%WWWDIR%%/lib/private/Settings/Section.php
12274
%%WWWDIR%%/lib/private/Setup.php
12561
%%WWWDIR%%/lib/private/Setup.php
Lines 12293-12298 Link Here
12293
%%WWWDIR%%/lib/private/Share20/ShareHelper.php
12580
%%WWWDIR%%/lib/private/Share20/ShareHelper.php
12294
%%WWWDIR%%/lib/private/Streamer.php
12581
%%WWWDIR%%/lib/private/Streamer.php
12295
%%WWWDIR%%/lib/private/SubAdmin.php
12582
%%WWWDIR%%/lib/private/SubAdmin.php
12583
%%WWWDIR%%/lib/private/Support/CrashReport/Registry.php
12296
%%WWWDIR%%/lib/private/SystemConfig.php
12584
%%WWWDIR%%/lib/private/SystemConfig.php
12297
%%WWWDIR%%/lib/private/SystemTag/ManagerFactory.php
12585
%%WWWDIR%%/lib/private/SystemTag/ManagerFactory.php
12298
%%WWWDIR%%/lib/private/SystemTag/SystemTag.php
12586
%%WWWDIR%%/lib/private/SystemTag/SystemTag.php
Lines 12336-12350 Link Here
12336
%%WWWDIR%%/lib/private/legacy/hook.php
12624
%%WWWDIR%%/lib/private/legacy/hook.php
12337
%%WWWDIR%%/lib/private/legacy/image.php
12625
%%WWWDIR%%/lib/private/legacy/image.php
12338
%%WWWDIR%%/lib/private/legacy/json.php
12626
%%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
12627
%%WWWDIR%%/lib/private/legacy/response.php
12343
%%WWWDIR%%/lib/private/legacy/template.php
12628
%%WWWDIR%%/lib/private/legacy/template.php
12344
%%WWWDIR%%/lib/private/legacy/template/functions.php
12629
%%WWWDIR%%/lib/private/legacy/template/functions.php
12345
%%WWWDIR%%/lib/private/legacy/user.php
12630
%%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
12631
%%WWWDIR%%/lib/private/legacy/util.php
12349
%%WWWDIR%%/lib/public/API.php
12632
%%WWWDIR%%/lib/public/API.php
12350
%%WWWDIR%%/lib/public/Activity/IConsumer.php
12633
%%WWWDIR%%/lib/public/Activity/IConsumer.php
Lines 12400-12411 Link Here
12400
%%WWWDIR%%/lib/public/Authentication/LoginCredentials/ICredentials.php
12683
%%WWWDIR%%/lib/public/Authentication/LoginCredentials/ICredentials.php
12401
%%WWWDIR%%/lib/public/Authentication/LoginCredentials/IStore.php
12684
%%WWWDIR%%/lib/public/Authentication/LoginCredentials/IStore.php
12402
%%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/IProvider.php
12685
%%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/IProvider.php
12686
%%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/IProvidesCustomCSP.php
12403
%%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/TwoFactorException.php
12687
%%WWWDIR%%/lib/public/Authentication/TwoFactorAuth/TwoFactorException.php
12404
%%WWWDIR%%/lib/public/AutoloadNotAllowedException.php
12688
%%WWWDIR%%/lib/public/AutoloadNotAllowedException.php
12405
%%WWWDIR%%/lib/public/BackgroundJob.php
12689
%%WWWDIR%%/lib/public/BackgroundJob.php
12406
%%WWWDIR%%/lib/public/BackgroundJob/IJob.php
12690
%%WWWDIR%%/lib/public/BackgroundJob/IJob.php
12407
%%WWWDIR%%/lib/public/BackgroundJob/IJobList.php
12691
%%WWWDIR%%/lib/public/BackgroundJob/IJobList.php
12692
%%WWWDIR%%/lib/public/Calendar/ICalendar.php
12693
%%WWWDIR%%/lib/public/Calendar/IManager.php
12408
%%WWWDIR%%/lib/public/Capabilities/ICapability.php
12694
%%WWWDIR%%/lib/public/Capabilities/ICapability.php
12695
%%WWWDIR%%/lib/public/Capabilities/IPublicCapability.php
12696
%%WWWDIR%%/lib/public/Collaboration/AutoComplete/IManager.php
12697
%%WWWDIR%%/lib/public/Collaboration/AutoComplete/ISorter.php
12698
%%WWWDIR%%/lib/public/Collaboration/Collaborators/ISearch.php
12699
%%WWWDIR%%/lib/public/Collaboration/Collaborators/ISearchPlugin.php
12700
%%WWWDIR%%/lib/public/Collaboration/Collaborators/ISearchResult.php
12701
%%WWWDIR%%/lib/public/Collaboration/Collaborators/SearchResultType.php
12409
%%WWWDIR%%/lib/public/Command/IBus.php
12702
%%WWWDIR%%/lib/public/Command/IBus.php
12410
%%WWWDIR%%/lib/public/Command/ICommand.php
12703
%%WWWDIR%%/lib/public/Command/ICommand.php
12411
%%WWWDIR%%/lib/public/Comments/CommentsEntityEvent.php
12704
%%WWWDIR%%/lib/public/Comments/CommentsEntityEvent.php
Lines 12423-12428 Link Here
12423
%%WWWDIR%%/lib/public/Contacts.php
12716
%%WWWDIR%%/lib/public/Contacts.php
12424
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IAction.php
12717
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IAction.php
12425
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IActionFactory.php
12718
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IActionFactory.php
12719
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IContactsStore.php
12426
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IEntry.php
12720
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IEntry.php
12427
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/ILinkAction.php
12721
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/ILinkAction.php
12428
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IProvider.php
12722
%%WWWDIR%%/lib/public/Contacts/ContactsMenu/IProvider.php
Lines 12455-12460 Link Here
12455
%%WWWDIR%%/lib/public/Files/Cache/IScanner.php
12749
%%WWWDIR%%/lib/public/Files/Cache/IScanner.php
12456
%%WWWDIR%%/lib/public/Files/Cache/IUpdater.php
12750
%%WWWDIR%%/lib/public/Files/Cache/IUpdater.php
12457
%%WWWDIR%%/lib/public/Files/Cache/IWatcher.php
12751
%%WWWDIR%%/lib/public/Files/Cache/IWatcher.php
12752
%%WWWDIR%%/lib/public/Files/Config/ICachedMountFileInfo.php
12458
%%WWWDIR%%/lib/public/Files/Config/ICachedMountInfo.php
12753
%%WWWDIR%%/lib/public/Files/Config/ICachedMountInfo.php
12459
%%WWWDIR%%/lib/public/Files/Config/IHomeMountProvider.php
12754
%%WWWDIR%%/lib/public/Files/Config/IHomeMountProvider.php
12460
%%WWWDIR%%/lib/public/Files/Config/IMountProvider.php
12755
%%WWWDIR%%/lib/public/Files/Config/IMountProvider.php
Lines 12558-12567 Link Here
12558
%%WWWDIR%%/lib/public/Lock/ILockingProvider.php
12853
%%WWWDIR%%/lib/public/Lock/ILockingProvider.php
12559
%%WWWDIR%%/lib/public/Lock/LockedException.php
12854
%%WWWDIR%%/lib/public/Lock/LockedException.php
12560
%%WWWDIR%%/lib/public/Lockdown/ILockdownManager.php
12855
%%WWWDIR%%/lib/public/Lockdown/ILockdownManager.php
12856
%%WWWDIR%%/lib/public/Mail/IAttachment.php
12561
%%WWWDIR%%/lib/public/Mail/IEMailTemplate.php
12857
%%WWWDIR%%/lib/public/Mail/IEMailTemplate.php
12562
%%WWWDIR%%/lib/public/Mail/IMailer.php
12858
%%WWWDIR%%/lib/public/Mail/IMailer.php
12859
%%WWWDIR%%/lib/public/Mail/IMessage.php
12860
%%WWWDIR%%/lib/public/Migration/BigIntMigration.php
12861
%%WWWDIR%%/lib/public/Migration/IMigrationStep.php
12563
%%WWWDIR%%/lib/public/Migration/IOutput.php
12862
%%WWWDIR%%/lib/public/Migration/IOutput.php
12564
%%WWWDIR%%/lib/public/Migration/IRepairStep.php
12863
%%WWWDIR%%/lib/public/Migration/IRepairStep.php
12864
%%WWWDIR%%/lib/public/Migration/SimpleMigrationStep.php
12565
%%WWWDIR%%/lib/public/Notification/IAction.php
12865
%%WWWDIR%%/lib/public/Notification/IAction.php
12566
%%WWWDIR%%/lib/public/Notification/IApp.php
12866
%%WWWDIR%%/lib/public/Notification/IApp.php
12567
%%WWWDIR%%/lib/public/Notification/IManager.php
12867
%%WWWDIR%%/lib/public/Notification/IManager.php
Lines 12570-12575 Link Here
12570
%%WWWDIR%%/lib/public/OCS/IDiscoveryService.php
12870
%%WWWDIR%%/lib/public/OCS/IDiscoveryService.php
12571
%%WWWDIR%%/lib/public/PreConditionNotMetException.php
12871
%%WWWDIR%%/lib/public/PreConditionNotMetException.php
12572
%%WWWDIR%%/lib/public/Preview/IProvider.php
12872
%%WWWDIR%%/lib/public/Preview/IProvider.php
12873
%%WWWDIR%%/lib/public/Remote/Api/IApiCollection.php
12874
%%WWWDIR%%/lib/public/Remote/Api/IApiFactory.php
12875
%%WWWDIR%%/lib/public/Remote/Api/ICapabilitiesApi.php
12876
%%WWWDIR%%/lib/public/Remote/Api/IUserApi.php
12877
%%WWWDIR%%/lib/public/Remote/ICredentials.php
12878
%%WWWDIR%%/lib/public/Remote/IInstance.php
12879
%%WWWDIR%%/lib/public/Remote/IInstanceFactory.php
12880
%%WWWDIR%%/lib/public/Remote/IUser.php
12573
%%WWWDIR%%/lib/public/Response.php
12881
%%WWWDIR%%/lib/public/Response.php
12574
%%WWWDIR%%/lib/public/RichObjectStrings/Definitions.php
12882
%%WWWDIR%%/lib/public/RichObjectStrings/Definitions.php
12575
%%WWWDIR%%/lib/public/RichObjectStrings/IValidator.php
12883
%%WWWDIR%%/lib/public/RichObjectStrings/IValidator.php
Lines 12604-12609 Link Here
12604
%%WWWDIR%%/lib/public/Share_Backend.php
12912
%%WWWDIR%%/lib/public/Share_Backend.php
12605
%%WWWDIR%%/lib/public/Share_Backend_Collection.php
12913
%%WWWDIR%%/lib/public/Share_Backend_Collection.php
12606
%%WWWDIR%%/lib/public/Share_Backend_File_Dependent.php
12914
%%WWWDIR%%/lib/public/Share_Backend_File_Dependent.php
12915
%%WWWDIR%%/lib/public/Support/CrashReport/IRegistry.php
12916
%%WWWDIR%%/lib/public/Support/CrashReport/IReporter.php
12607
%%WWWDIR%%/lib/public/SystemTag/ISystemTag.php
12917
%%WWWDIR%%/lib/public/SystemTag/ISystemTag.php
12608
%%WWWDIR%%/lib/public/SystemTag/ISystemTagManager.php
12918
%%WWWDIR%%/lib/public/SystemTag/ISystemTagManager.php
12609
%%WWWDIR%%/lib/public/SystemTag/ISystemTagManagerFactory.php
12919
%%WWWDIR%%/lib/public/SystemTag/ISystemTagManagerFactory.php
Lines 12620-12629 Link Here
12620
%%WWWDIR%%/lib/public/WorkflowEngine/ICheck.php
12930
%%WWWDIR%%/lib/public/WorkflowEngine/ICheck.php
12621
%%WWWDIR%%/lib/public/WorkflowEngine/IManager.php
12931
%%WWWDIR%%/lib/public/WorkflowEngine/IManager.php
12622
%%WWWDIR%%/lib/public/WorkflowEngine/IOperation.php
12932
%%WWWDIR%%/lib/public/WorkflowEngine/IOperation.php
12933
%%WWWDIR%%/lib/versioncheck.php
12623
%%WWWDIR%%/occ
12934
%%WWWDIR%%/occ
12624
%%WWWDIR%%/ocs-provider/index.php
12935
%%WWWDIR%%/ocs-provider/index.php
12625
%%WWWDIR%%/ocs/providers.php
12936
%%WWWDIR%%/ocs/providers.php
12626
%%WWWDIR%%/ocs/routes.php
12627
%%WWWDIR%%/ocs/v1.php
12937
%%WWWDIR%%/ocs/v1.php
12628
%%WWWDIR%%/ocs/v2.php
12938
%%WWWDIR%%/ocs/v2.php
12629
%%WWWDIR%%/public.php
12939
%%WWWDIR%%/public.php
Lines 12648-12657 Link Here
12648
%%WWWDIR%%/settings/Controller/CertificateController.php
12958
%%WWWDIR%%/settings/Controller/CertificateController.php
12649
%%WWWDIR%%/settings/Controller/ChangePasswordController.php
12959
%%WWWDIR%%/settings/Controller/ChangePasswordController.php
12650
%%WWWDIR%%/settings/Controller/CheckSetupController.php
12960
%%WWWDIR%%/settings/Controller/CheckSetupController.php
12961
%%WWWDIR%%/settings/Controller/CommonSettingsTrait.php
12651
%%WWWDIR%%/settings/Controller/EncryptionController.php
12962
%%WWWDIR%%/settings/Controller/EncryptionController.php
12652
%%WWWDIR%%/settings/Controller/GroupsController.php
12963
%%WWWDIR%%/settings/Controller/GroupsController.php
12653
%%WWWDIR%%/settings/Controller/LogSettingsController.php
12964
%%WWWDIR%%/settings/Controller/LogSettingsController.php
12654
%%WWWDIR%%/settings/Controller/MailSettingsController.php
12965
%%WWWDIR%%/settings/Controller/MailSettingsController.php
12966
%%WWWDIR%%/settings/Controller/PersonalSettingsController.php
12655
%%WWWDIR%%/settings/Controller/SecuritySettingsController.php
12967
%%WWWDIR%%/settings/Controller/SecuritySettingsController.php
12656
%%WWWDIR%%/settings/Controller/UsersController.php
12968
%%WWWDIR%%/settings/Controller/UsersController.php
12657
%%WWWDIR%%/settings/Hooks.php
12969
%%WWWDIR%%/settings/Hooks.php
Lines 12664-12670 Link Here
12664
%%WWWDIR%%/settings/ajax/togglesubadmins.php
12976
%%WWWDIR%%/settings/ajax/togglesubadmins.php
12665
%%WWWDIR%%/settings/ajax/uninstallapp.php
12977
%%WWWDIR%%/settings/ajax/uninstallapp.php
12666
%%WWWDIR%%/settings/ajax/updateapp.php
12978
%%WWWDIR%%/settings/ajax/updateapp.php
12667
%%WWWDIR%%/settings/css/settings.css
12979
%%WWWDIR%%/settings/css/settings.scss
12668
%%WWWDIR%%/settings/help.php
12980
%%WWWDIR%%/settings/help.php
12669
%%WWWDIR%%/settings/img/admin.svg
12981
%%WWWDIR%%/settings/img/admin.svg
12670
%%WWWDIR%%/settings/img/apps.svg
12982
%%WWWDIR%%/settings/img/apps.svg
Lines 12685-12692 Link Here
12685
%%WWWDIR%%/settings/js/federationscopemenu.js
12997
%%WWWDIR%%/settings/js/federationscopemenu.js
12686
%%WWWDIR%%/settings/js/federationsettingsview.js
12998
%%WWWDIR%%/settings/js/federationsettingsview.js
12687
%%WWWDIR%%/settings/js/log.js
12999
%%WWWDIR%%/settings/js/log.js
12688
%%WWWDIR%%/settings/js/personal.js
12689
%%WWWDIR%%/settings/js/settings.js
13000
%%WWWDIR%%/settings/js/settings.js
13001
%%WWWDIR%%/settings/js/settings/authtoken-init.js
13002
%%WWWDIR%%/settings/js/settings/personalInfo.js
12690
%%WWWDIR%%/settings/js/users/deleteHandler.js
13003
%%WWWDIR%%/settings/js/users/deleteHandler.js
12691
%%WWWDIR%%/settings/js/users/filter.js
13004
%%WWWDIR%%/settings/js/users/filter.js
12692
%%WWWDIR%%/settings/js/users/groups.js
13005
%%WWWDIR%%/settings/js/users/groups.js
Lines 12726-12731 Link Here
12726
%%WWWDIR%%/settings/l10n/eo.json
13039
%%WWWDIR%%/settings/l10n/eo.json
12727
%%WWWDIR%%/settings/l10n/es.js
13040
%%WWWDIR%%/settings/l10n/es.js
12728
%%WWWDIR%%/settings/l10n/es.json
13041
%%WWWDIR%%/settings/l10n/es.json
13042
%%WWWDIR%%/settings/l10n/es_419.js
13043
%%WWWDIR%%/settings/l10n/es_419.json
12729
%%WWWDIR%%/settings/l10n/es_AR.js
13044
%%WWWDIR%%/settings/l10n/es_AR.js
12730
%%WWWDIR%%/settings/l10n/es_AR.json
13045
%%WWWDIR%%/settings/l10n/es_AR.json
12731
%%WWWDIR%%/settings/l10n/es_CL.js
13046
%%WWWDIR%%/settings/l10n/es_CL.js
Lines 12854-12875 Link Here
12854
%%WWWDIR%%/settings/l10n/zh_HK.json
13169
%%WWWDIR%%/settings/l10n/zh_HK.json
12855
%%WWWDIR%%/settings/l10n/zh_TW.js
13170
%%WWWDIR%%/settings/l10n/zh_TW.js
12856
%%WWWDIR%%/settings/l10n/zh_TW.json
13171
%%WWWDIR%%/settings/l10n/zh_TW.json
12857
%%WWWDIR%%/settings/personal.php
12858
%%WWWDIR%%/settings/routes.php
13172
%%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
13173
%%WWWDIR%%/settings/templates/apps.php
12868
%%WWWDIR%%/settings/templates/certificates.php
13174
%%WWWDIR%%/settings/templates/certificates.php
12869
%%WWWDIR%%/settings/templates/help.php
13175
%%WWWDIR%%/settings/templates/help.php
12870
%%WWWDIR%%/settings/templates/personal.php
12871
%%WWWDIR%%/settings/templates/settings.development.notice.php
13176
%%WWWDIR%%/settings/templates/settings.development.notice.php
12872
%%WWWDIR%%/settings/templates/settings.php
13177
%%WWWDIR%%/settings/templates/settings.php
13178
%%WWWDIR%%/settings/templates/settings/additional.php
13179
%%WWWDIR%%/settings/templates/settings/admin/additional-mail.php
13180
%%WWWDIR%%/settings/templates/settings/admin/encryption.php
13181
%%WWWDIR%%/settings/templates/settings/admin/server.development.notice.php
13182
%%WWWDIR%%/settings/templates/settings/admin/server.php
13183
%%WWWDIR%%/settings/templates/settings/admin/sharing.php
13184
%%WWWDIR%%/settings/templates/settings/admin/tipstricks.php
13185
%%WWWDIR%%/settings/templates/settings/empty.php
13186
%%WWWDIR%%/settings/templates/settings/frame.php
13187
%%WWWDIR%%/settings/templates/settings/personal/personal.info.php
13188
%%WWWDIR%%/settings/templates/settings/personal/security.php
12873
%%WWWDIR%%/settings/templates/users/main.php
13189
%%WWWDIR%%/settings/templates/users/main.php
12874
%%WWWDIR%%/settings/templates/users/part.createuser.php
13190
%%WWWDIR%%/settings/templates/users/part.createuser.php
12875
%%WWWDIR%%/settings/templates/users/part.grouplist.php
13191
%%WWWDIR%%/settings/templates/users/part.grouplist.php
Lines 12894-12902 Link Here
12894
%%WWWDIR%%/themes/example/core/img/logo.png
13210
%%WWWDIR%%/themes/example/core/img/logo.png
12895
%%WWWDIR%%/themes/example/core/img/logo.svg
13211
%%WWWDIR%%/themes/example/core/img/logo.svg
12896
%%WWWDIR%%/themes/example/defaults.php
13212
%%WWWDIR%%/themes/example/defaults.php
13213
%%WWWDIR%%/updater/index.php
12897
@owner
13214
@owner
12898
@group
13215
@group
12899
%%WWWDIR%%/updater/index.php
12900
%%WWWDIR%%/version.php
13216
%%WWWDIR%%/version.php
12901
@dir %%WWWDIR%%/apps/gallery/documentation/wiki
13217
@dir %%WWWDIR%%/apps/gallery/documentation/wiki
12902
@dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/apps
13218
@dir(%%NEXTCLOUD_USERNAME%%,%%NEXTCLOUD_GROUPNAME%%,) %%WWWDIR%%/apps

Return to bug 223778