Received: by mail.netbsd.org (Postfix, from userid 605) id F2E6184F35; Thu, 21 Jun 2018 23:23:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D7CFE84D24 for ; Thu, 21 Jun 2018 23:23:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 2Ky4PwJxKmed for ; Thu, 21 Jun 2018 23:22:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6D25E84C81 for ; Thu, 21 Jun 2018 23:22:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5477BFBEC; Thu, 21 Jun 2018 23:22:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1529623371254490" MIME-Version: 1.0 Date: Thu, 21 Jun 2018 23:22:51 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/www/php-owncloud To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20180621232251.5477BFBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1529623371254490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: ryoon Date: Thu Jun 21 23:22:51 UTC 2018 Modified Files: pkgsrc/www/php-owncloud: Makefile PLIST distinfo Log Message: Update to 10.0.8 Changelog: Changes in 10.0.8 Dear ownCloud administrator, please find below the changes and known issues in ownCloud Server 10.0.8 that need your attention. You can also read the full ownCloud Server changelog for further details on what has changed. PHP 5.6 deprecation PHP 5.6/7.0 active support has ended on January 19th 2017 / December 3rd 2017 and security support will be dropped by the end of 2018. Many libraries used by ownCloud (including the QA-Suite PHPUnit) will therefore not be maintained actively anymore which forces ownCloud to drop support in one of the next minor server versions as well. Please make sure to upgrade to PHP 7.1 as soon as possible. See the system requirements in the ownCloud documentation. Personal note for public link mail notification One of the usability enhancements of ownCloud Server 10.0.8 is the possibility for users to add a personal note when sending public links via mail. When using customized mail templates it is necessary to either adapt the shipped original template to the customizations or to add the code block for the personal note to customized templates in order to display the personal note in the mail notifications. New mail notifications feature ownCloud Server 10.0.8 introduces a new extensible notification framework. Apart from technical changes under the hood the Notifications app can now also send mails for all notifications that previously were only displayed within the web interfaces (notification bell) or on the Desktop client (notifications API) like incoming federated share or Custom Group notifications, for example. In the “General” settings section users can configure whether they want to receive mails for all notifications, only for those that require an action or decide not to get notifications via mail (by default users will only receive notifications when an action is required). LDAP-related improvements When disabling or deleting user accounts in LDAP, the administrator can choose to either delete or disable respective accounts in ownCloud when executing occ user:sync (-m, --missing-account-action=MISSING-ACCOUNT-ACTION). User accounts that are disabled in ownCloud can now be re-enabled automatically when running occ user:sync if they are enabled in LDAP. When this behavior is desired administrators just need to add the -r, --re-enable option to their cron jobs or when manually executing occ user:sync. Furthermore it is now possible to execute occ user:sync only for single (-u, --uid=UID) or seen (-s, --seenOnly) users (users that are present in the database and have logged in at least once). These new options provide more granularity for administrators in terms of managing occ user:sync performance. Another notable change in behavior of occ user:sync is that administrators now have to explicitly specify the option -c, --showCount to display the number of users to be synchronized. New events for audit logging New events have been added to be used for audit logging, among others. These include configuration changes by administrators and users, file comments (add/edit/delete) and updating existing public links. When logs are forwarded to external analyzers like Splunk, administrators can check to add the new events. The latest version of the Auditing extension (admin_audit) is required. New command to verify and repair file checksums With ownCloud 10 file integrity checking by computing and matching checksums has been introduced to ensure that transferred files arrive at their target in the exact state as their origin. In some rare cases wrong checksums can be written to the database leading to synchronization issues with e.g. the Desktop Client. To mitigate such situations a new command occ files:checksums:verify has been introduced. The command recalculates checksums either for all files of a user or for files within a specified path, and compares them with the values in the database. Naturally the command also offers an option to repair incorrect checksum values (-r, --repair). Please check the available options by executing occ files:checksums:verify --help. Note: Executing this command might take some time depending on the file count. New config setting to specify minimum characters for sharing autocomplete For security reasons the default value for minimum characters to trigger the sharing autocomplete mechanism has been set to “4” (previously it was set to “2”). This is to prevent people from easily downloading lots of email addresses or user names by requesting their first letters through the API. As it is a trade-off between security and usability for some scenarios this high security level might not be desirable. Therefore the value now is configurable via the config.php option 'user.search_min_length' => 4,. Please check which value fits your needs best. New option to granularly configure public link password enforcement With ownCloud 10 the “File Drop” feature has been merged with public link permissions. This kind of public link does not give recipients access to any content, but it gives them the possibility to “drop files”. As a result, it might not always be desirable to enforce password protection for such shares. Given that, passwords for public links can now be enforced based on permissions (read-only, read & write, upload only/File Drop). Please check the administration settings “Sharing” section and configure as desired. New option to exclude apps from integrity check By verifying signature files the integrity check ensures that the code running in an ownCloud instance has not been altered by third parties. Naturally this check can only be successful for code that has been obtained from official ownCloud sources. When providing custom apps (like theme apps) that do not have a signature, the integrity check will fail and notify the administrator. These apps can now be excluded from the integrity check by using the config.php option 'integrity.ignore.missing.app.signature' => ['app_id1', 'app_id2', 'app_id3'],. See config.sample.php for more information. New occ command to modify user details It is now possible to modify user details like display names or mail addresses via the command occ user:modify. Please append --help for more information. occ files:scan can now be executed for groups Apart from using the occ files:scan command for single users and whole instances it can now be executed for groups using -g, --groups=GROUPS. Please append --help for more information. New configurable default format for syslog When using syslog as the log type ('log_type' => 'syslog', in config.php) the default format hahe new format and config.sample.php on how to change it. New config option to enable fallback to HTTP for federated shares For security reasons federated sharing (sharing between different ownCloud instances) strictly requires HTTPS (SSL/TLS). When this g.federation.allowHttpFallback' => false, to true in config.php. Migration related to auth_tokens (app passwords) Upgrading to 10.0.8 includes migrations related to auth_tokens (app passwords). When users have created app passwords as separate passwords l autocomplete for public link share dialog When the “Sharing” settings option Allow users to send mail notifications for shared files for public links is enabled, users can send public links via mail from within the web interface. The behavior of the autocomplete when entering mail addresses in the public link share dialog has been changed. Previously the autocomplete queried for local users, users from federated address books and contacts from CardDAV/Contacts App. As public links are not intended for sharing between ownCloud users (local/federated), those have been removed. Contacts synchronized via CardDAV or created in the Contacts app will still appear as suggestions. Notifications sent by occ can now include links The command occ notifications:generate can be used to send notifications to individual users or groups. With 10.0.8 it is also capable of including links to such notifications using the -l, --link=LINK option. Please append --help for more information. There is also Announcementcenter to conduct such tasks from the web interface but it is currently limited to send notifications to all users. For now administrators can use the occ command if more granularity is required. Global option for CORS domains For security reasons ownCloud has a Same-Origin-Policy that prevents requests to ownCloud resources from other domains than the domain the backend server is hosted on. If ownCloud resources should be accessible from other domains, e.g. for a separate web frontend operated on a different domain, administrators can now globally specify policy exceptions via CORS (Cross-Origin Resource Sharing) using 'cors.allowed-domains' in config.php. Please check config.sample.php for more information. Solved known issues Bogus “Login failed” log entries have been removed (see 10.0.7 known issues) The Provisioning API can now properly set default or zero quota User quota settings can be queried through Provisioning API A regression preventing a user from setting their e-mail address in the settings page has been fixed File deletion as a guest user works correctly (trash bin permissions are checked correctly) Known issues Issues with multiple theme apps and Mail Template Editor As of ownCloud Server 10.0.5 it is only possible to have one theme app enabled simultaneously. When a theme app is enabled and the administrator attempts to enable a second one this will result in an error. However, when also having the Mail Template Editor enabled in this scenario the administrators “General” settings section will be displayed incorrectly. As a remedy administrators can either uninstall the second theme app or disable the Mail Template Editor app. occ transfer:ownership does not transfer public link shares if they were created by the target user (reshare). For developers The global JS variable “oc_current_user” was removed. Please use the public method “OC.getCurrentUser()” instead. Lots of new Symfony events have been added for various user actions, see changelog for details. Documentation ticket: `_ When requesting a private link there is a new HTTP response header “Webdav-Location” that contains the Webdav path to the requested file while the “Location” still points at the frontend URL for viewing the file. Changes in 10.0.7 ownCloud Server 10.0.7 is a hotfix follow-up release that takes care of an issue regarding OAuth authentication. Please consider the ownCloud Server 10.0.5 release notes. Known issues When using application passwords, log entries related to “Login Failed” will appear and can be ignored. For people using fail2ban or other account locking tools based on log parsing, please apply this patch with patch -p1 < 50c78a4bf4c2ab4194f40111b8a34b7e9cc17a14.patch (original pull request here). Changes in 10.0.6 ownCloud Server 10.0.6 is a hotfix follow-up release that takes care of an issue during the build process (https://github.com/owncloud/core/pull/30265). Please consider the ownCloud Server 10.0.5 release notes. Changes in 10.0.5 Dear ownCloud administrator, please find below the changes and known issues in ownCloud Server 10.0.5 that need your attention. You can also read the full ownCloud Server changelog for further details on what has changed. Technology preview for PHP 7.2 support ownCloud catches up with new web technologies. This has mainly been introduced for the open-source community to test and give feedback. PHP 7.2 is not yet supported nor recommended for production scenarios. ownCloud is going to fully support PHP 7.2 with the next major release. php-intl now is a hard requirement Please make sure to have the PHP extension installed before upgrading. Changed: Only allow a single active theme app The theming behavior has been changed so that only a single theme can be active concurrently. This change ensures that themes can not interfere in any way (e.g., override default theming in an arbitrary order). Please make sure to have the desired theme enabled after upgrading. Removed old Dropbox external storage backend (Dropbox API v1) Please switch to the new External Storage: Dropbox app (https://marketplace.owncloud.com/apps/files_external_dropbox) with Dropbox API v2 support to continue providing Dropbox external storages to your users. Fixed: Only set CORS headers on WebDAV endpoint when Origin header is specified ownCloud Server 10.0.4 known issue is resolved. Fixes and improvements for the Mail Template Editor Known issues are resolved: Mail Template Editor works again, got support for app themes and additional templates were added for customization. Mail Template Editor is still bundled with ownCloud Server but will soon be released as a separate app to ownCloud Marketplace. Changelog: https://github.com/owncloud/templateeditor/blob/release/0.2.0/CHANGELOG.md Known issues When using application passwords, log entries related to “Login Failed” will appear, please upgrade to 10.0.7 and check the fix mentionned in its release notes. Changes in 10.0.4¶ Dear ownCloud administrator, please find below the changes and known issues in ownCloud Server 10.0.4 that need your attention. You can also read the full ownCloud Server 10.0.4 changelog for further details on what has changed. More granular sharing restrictions The “Restrict users to only share with users in their groups” option, in the Sharing settings, restricts users to only share with groups which they are a member of, while simultaneously prohibiting sharing with single users that do not belong to any of the users’ groups. To make this more granular, we split this option into two parts and added “Restrict users to only share with groups they are member of”, which differentiates between users and groups. Doing so makes it possible to restrict users from sharing with all users of an installation, limiting them to only being able to share with groups which they are a member of, and vice versa. Configurable solution for indistinguishable user display names The ownCloud sharing dialog displays users according to their display name. As users can choose their display name in self-service (which can be disabled in config.php) and display names are not unique, it is possible that a user can’t distinguish sharing results. To cover this case the displayed user identifiers are now configurable. In the Sharing settings administrators can now configure the display of either mail addresses or user ids. Added “occ files:scan” repair mode to repair filecache inconsistencies We recommend to use this command when directed to do so in the upgrade process. Please refer to the occ command’s files:scan –repair documentation for more information. Detailed mode for “occ security:routes” Administrators can use the output of this command when using a network firewall, to check the appropriateness of configured rules or to get assistance when setting up. Added mode of operations to differentiate between single-instance or clustered setup As ownCloud needs to behave differently when operating in a clustered setup versus a single instance setup, the new config.php option operation.mode has been added. It can take one of two values: single-instance and clustered-instance. For example: 'operation.mode' => 'clustered-instance',. Currently the Market App (ownCloud Marketplace integration) does not support clustered setups and can do harm when used for installing or updating apps. The new config setting prevents this and other actions that are undesired in cluster mode. When operating in a clustered setup, it is mandatory to set this option. Please check the config_sample_php_parameters documentation for more information. Added occ dav:cleanup-chunks command to clean up expired uploads When file uploads are interrupted for any reason, already uploaded file parts (chunks) remain in the underlying storage so that the file upload can resume in a future upload attempt. However, resuming an upload is only possible until the partial upload is expired and deleted, respectively. To clean up chunks (expire and delete) originating from unfinished uploads, administrators can use this newly introduced command. The default expiry time is two days, but it can be specified as a parameter to the command. It is recommended to configure CRON to execute this background job regularly. It is not included in the regular ownCloud background jobs so that the administrators have more flexibility in scheduling it. Please check the background jobs configuration documentation for more information. Administrators can now exclude files from integrity check in config.php¶ When administrators did intentional changes to the ownCloud code they now have the ability to exclude certain files from the integrity checker. Please check “config.sample.php” for the usage of 'integrity.excluded.files'. Modification time value of files is now 64 bits long When upgrading to 10.0.4 migrations may increase update duration dependent on number of files. Updated minimum supported browser versions Users with outdated browsers might get warnings. See the list of supported browser versions. Known issues When using application passwords, log entries related to “Login Failed” will appear, please upgrade to 10.0.7 and check the fix mentioned in its release notes. 10.0.3 resolved known issues SFTP external storages with key pair mode work again Added support for MariaDB 10.2.7+ Encryption panel in admin settings fixed to properly detect current mode after upgrade to ownCloud 10 Removed double quotes from boolean values in status.php output Known issues Impersonate app 0.1.1 does not work with ownCloud Server 10.0.4. Please update to Impersonate 0.1.2 to be able to use the feature with ownCloud 10.0.4. Mounting ownCloud storage via davfs does not work To generate a diff of this commit: cvs rdiff -u -r1.66 -r1.67 pkgsrc/www/php-owncloud/Makefile cvs rdiff -u -r1.42 -r1.43 pkgsrc/www/php-owncloud/PLIST \ pkgsrc/www/php-owncloud/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1529623371254490 Content-Disposition: inline Content-Length: 236730 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/php-owncloud/Makefile diff -u pkgsrc/www/php-owncloud/Makefile:1.66 pkgsrc/www/php-owncloud/Makefile:1.67 --- pkgsrc/www/php-owncloud/Makefile:1.66 Sat Oct 7 13:04:57 2017 +++ pkgsrc/www/php-owncloud/Makefile Thu Jun 21 23:22:51 2018 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.66 2017/10/07 13:04:57 wen Exp $ +# $NetBSD: Makefile,v 1.67 2018/06/21 23:22:51 ryoon Exp $ # -DISTNAME= owncloud-10.0.3 +DISTNAME= owncloud-10.0.8 PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} CATEGORIES= www MASTER_SITES= http://download.owncloud.org/community/ Index: pkgsrc/www/php-owncloud/PLIST diff -u pkgsrc/www/php-owncloud/PLIST:1.42 pkgsrc/www/php-owncloud/PLIST:1.43 --- pkgsrc/www/php-owncloud/PLIST:1.42 Sat Oct 7 13:04:57 2017 +++ pkgsrc/www/php-owncloud/PLIST Thu Jun 21 23:22:51 2018 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.42 2017/10/07 13:04:57 wen Exp $ +@comment $NetBSD: PLIST,v 1.43 2018/06/21 23:22:51 ryoon Exp $ share/owncloud/.htaccess share/owncloud/.user.ini share/owncloud/AUTHORS @@ -202,6 +202,7 @@ share/owncloud/apps/dav/appinfo/Migratio share/owncloud/apps/dav/appinfo/Migrations/Version20170519091921.php share/owncloud/apps/dav/appinfo/Migrations/Version20170526100342.php share/owncloud/apps/dav/appinfo/Migrations/Version20170711193427.php +share/owncloud/apps/dav/appinfo/Migrations/Version20170927201245.php share/owncloud/apps/dav/appinfo/app.php share/owncloud/apps/dav/appinfo/info.xml share/owncloud/apps/dav/appinfo/signature.json @@ -394,6 +395,7 @@ share/owncloud/apps/dav/lib/CardDAV/Sync share/owncloud/apps/dav/lib/CardDAV/SyncService.php share/owncloud/apps/dav/lib/CardDAV/UserAddressBooks.php share/owncloud/apps/dav/lib/CardDAV/Xml/Groups.php +share/owncloud/apps/dav/lib/Command/CleanupChunks.php share/owncloud/apps/dav/lib/Command/CreateAddressBook.php share/owncloud/apps/dav/lib/Command/CreateCalendar.php share/owncloud/apps/dav/lib/Command/SyncBirthdayCalendar.php @@ -407,7 +409,7 @@ share/owncloud/apps/dav/lib/Connector/Sa share/owncloud/apps/dav/lib/Connector/Sabre/ChecksumList.php share/owncloud/apps/dav/lib/Connector/Sabre/CommentPropertiesPlugin.php share/owncloud/apps/dav/lib/Connector/Sabre/CopyEtagHeaderPlugin.php -share/owncloud/apps/dav/lib/Connector/Sabre/CustomPropertiesBackend.php +share/owncloud/apps/dav/lib/Connector/Sabre/CorsPlugin.php share/owncloud/apps/dav/lib/Connector/Sabre/DavAclPlugin.php share/owncloud/apps/dav/lib/Connector/Sabre/Directory.php share/owncloud/apps/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php @@ -435,7 +437,10 @@ share/owncloud/apps/dav/lib/Connector/Sa share/owncloud/apps/dav/lib/Connector/Sabre/TagList.php share/owncloud/apps/dav/lib/Connector/Sabre/TagsPlugin.php share/owncloud/apps/dav/lib/Connector/Sabre/ValidateRequestPlugin.php +share/owncloud/apps/dav/lib/DAV/AbstractCustomPropertiesBackend.php +share/owncloud/apps/dav/lib/DAV/FileCustomPropertiesBackend.php share/owncloud/apps/dav/lib/DAV/GroupPrincipalBackend.php +share/owncloud/apps/dav/lib/DAV/MiscCustomPropertiesBackend.php share/owncloud/apps/dav/lib/DAV/PublicAuth.php share/owncloud/apps/dav/lib/DAV/Sharing/Backend.php share/owncloud/apps/dav/lib/DAV/Sharing/IShareable.php @@ -444,12 +449,12 @@ share/owncloud/apps/dav/lib/DAV/Sharing/ share/owncloud/apps/dav/lib/DAV/Sharing/Xml/ShareRequest.php share/owncloud/apps/dav/lib/DAV/SystemPrincipalBackend.php share/owncloud/apps/dav/lib/Files/BrowserErrorPagePlugin.php -share/owncloud/apps/dav/lib/Files/CustomPropertiesBackend.php share/owncloud/apps/dav/lib/Files/FilesHome.php share/owncloud/apps/dav/lib/Files/RootCollection.php share/owncloud/apps/dav/lib/Files/Sharing/PublicLinkCheckPlugin.php share/owncloud/apps/dav/lib/Files/Xml/FilterRequest.php share/owncloud/apps/dav/lib/HookManager.php +share/owncloud/apps/dav/lib/Repair/RemoveInvalidShares.php share/owncloud/apps/dav/lib/RootCollection.php share/owncloud/apps/dav/lib/Server.php share/owncloud/apps/dav/lib/SystemTag/SystemTagMappingNode.php @@ -459,6 +464,7 @@ share/owncloud/apps/dav/lib/SystemTag/Sy share/owncloud/apps/dav/lib/SystemTag/SystemTagsObjectMappingCollection.php share/owncloud/apps/dav/lib/SystemTag/SystemTagsObjectTypeCollection.php share/owncloud/apps/dav/lib/SystemTag/SystemTagsRelationsCollection.php +share/owncloud/apps/dav/lib/Tree.php share/owncloud/apps/dav/lib/Upload/AssemblyStream.php share/owncloud/apps/dav/lib/Upload/ChunkLocationProvider.php share/owncloud/apps/dav/lib/Upload/ChunkingPlugin.php @@ -467,6 +473,7 @@ share/owncloud/apps/dav/lib/Upload/RootC share/owncloud/apps/dav/lib/Upload/UploadFolder.php share/owncloud/apps/dav/lib/Upload/UploadHome.php share/owncloud/apps/dav/templates/exception.php +share/owncloud/apps/encryption/appinfo/Migrations/Version20170913113840.php share/owncloud/apps/encryption/appinfo/app.php share/owncloud/apps/encryption/appinfo/info.xml share/owncloud/apps/encryption/appinfo/routes.php @@ -617,6 +624,7 @@ share/owncloud/apps/encryption/l10n/zh_T share/owncloud/apps/encryption/l10n/zh_TW.json share/owncloud/apps/encryption/lib/AppInfo/Application.php share/owncloud/apps/encryption/lib/Command/MigrateKeys.php +share/owncloud/apps/encryption/lib/Command/RecreateMasterKey.php share/owncloud/apps/encryption/lib/Command/SelectEncryptionType.php share/owncloud/apps/encryption/lib/Controller/RecoveryController.php share/owncloud/apps/encryption/lib/Controller/SettingsController.php @@ -1165,7 +1173,6 @@ share/owncloud/apps/files/js/newfilemenu share/owncloud/apps/files/js/search.js share/owncloud/apps/files/js/tagsplugin.js share/owncloud/apps/files/js/templates/detailsview.handlebars.js -share/owncloud/apps/files/js/upload.js share/owncloud/apps/files/l10n/ach.js share/owncloud/apps/files/l10n/ach.json share/owncloud/apps/files/l10n/ady.js @@ -1382,6 +1389,7 @@ share/owncloud/apps/files/lib/Capabiliti share/owncloud/apps/files/lib/Command/DeleteOrphanedFiles.php share/owncloud/apps/files/lib/Command/Scan.php share/owncloud/apps/files/lib/Command/TransferOwnership.php +share/owncloud/apps/files/lib/Command/VerifyChecksums.php share/owncloud/apps/files/lib/Controller/ApiController.php share/owncloud/apps/files/lib/Controller/ViewController.php share/owncloud/apps/files/lib/Helper.php @@ -1393,219 +1401,6 @@ share/owncloud/apps/files/templates/file share/owncloud/apps/files/templates/index.php share/owncloud/apps/files/templates/list.php share/owncloud/apps/files/templates/simplelist.php -share/owncloud/apps/files_antivirus/CHANGELOG.md -share/owncloud/apps/files_antivirus/Makefile -share/owncloud/apps/files_antivirus/appinfo/Migrations/Version20170808220321.php -share/owncloud/apps/files_antivirus/appinfo/Migrations/Version20170808221437.php -share/owncloud/apps/files_antivirus/appinfo/Migrations/Version20170808222334.php -share/owncloud/apps/files_antivirus/appinfo/app.php -share/owncloud/apps/files_antivirus/appinfo/application.php -share/owncloud/apps/files_antivirus/appinfo/info.xml -share/owncloud/apps/files_antivirus/appinfo/install.php -share/owncloud/apps/files_antivirus/appinfo/preupdate.php -share/owncloud/apps/files_antivirus/appinfo/routes.php -share/owncloud/apps/files_antivirus/appinfo/signature.json -share/owncloud/apps/files_antivirus/appinfo/update.php -share/owncloud/apps/files_antivirus/controller/rulecontroller.php -share/owncloud/apps/files_antivirus/controller/settingscontroller.php -share/owncloud/apps/files_antivirus/css/settings.css -share/owncloud/apps/files_antivirus/img/app.png -share/owncloud/apps/files_antivirus/img/app.svg -share/owncloud/apps/files_antivirus/js/settings.js -share/owncloud/apps/files_antivirus/l10n/.tx/config -share/owncloud/apps/files_antivirus/l10n/af_ZA.js -share/owncloud/apps/files_antivirus/l10n/af_ZA.json -share/owncloud/apps/files_antivirus/l10n/ar.js -share/owncloud/apps/files_antivirus/l10n/ar.json -share/owncloud/apps/files_antivirus/l10n/ast.js -share/owncloud/apps/files_antivirus/l10n/ast.json -share/owncloud/apps/files_antivirus/l10n/az.js -share/owncloud/apps/files_antivirus/l10n/az.json -share/owncloud/apps/files_antivirus/l10n/be.js -share/owncloud/apps/files_antivirus/l10n/be.json -share/owncloud/apps/files_antivirus/l10n/bg_BG.js -share/owncloud/apps/files_antivirus/l10n/bg_BG.json -share/owncloud/apps/files_antivirus/l10n/bn_BD.js -share/owncloud/apps/files_antivirus/l10n/bn_BD.json -share/owncloud/apps/files_antivirus/l10n/bn_IN.js -share/owncloud/apps/files_antivirus/l10n/bn_IN.json -share/owncloud/apps/files_antivirus/l10n/bs.js -share/owncloud/apps/files_antivirus/l10n/bs.json -share/owncloud/apps/files_antivirus/l10n/ca.js -share/owncloud/apps/files_antivirus/l10n/ca.json -share/owncloud/apps/files_antivirus/l10n/cs_CZ.js -share/owncloud/apps/files_antivirus/l10n/cs_CZ.json -share/owncloud/apps/files_antivirus/l10n/cy_GB.js -share/owncloud/apps/files_antivirus/l10n/cy_GB.json -share/owncloud/apps/files_antivirus/l10n/da.js -share/owncloud/apps/files_antivirus/l10n/da.json -share/owncloud/apps/files_antivirus/l10n/de.js -share/owncloud/apps/files_antivirus/l10n/de.json -share/owncloud/apps/files_antivirus/l10n/de_AT.js -share/owncloud/apps/files_antivirus/l10n/de_AT.json -share/owncloud/apps/files_antivirus/l10n/de_CH.js -share/owncloud/apps/files_antivirus/l10n/de_CH.json -share/owncloud/apps/files_antivirus/l10n/de_DE.js -share/owncloud/apps/files_antivirus/l10n/de_DE.json -share/owncloud/apps/files_antivirus/l10n/el.js -share/owncloud/apps/files_antivirus/l10n/el.json -share/owncloud/apps/files_antivirus/l10n/en_GB.js -share/owncloud/apps/files_antivirus/l10n/en_GB.json -share/owncloud/apps/files_antivirus/l10n/eo.js -share/owncloud/apps/files_antivirus/l10n/eo.json -share/owncloud/apps/files_antivirus/l10n/es.js -share/owncloud/apps/files_antivirus/l10n/es.json -share/owncloud/apps/files_antivirus/l10n/es_AR.js -share/owncloud/apps/files_antivirus/l10n/es_AR.json -share/owncloud/apps/files_antivirus/l10n/es_MX.js -share/owncloud/apps/files_antivirus/l10n/es_MX.json -share/owncloud/apps/files_antivirus/l10n/et_EE.js -share/owncloud/apps/files_antivirus/l10n/et_EE.json -share/owncloud/apps/files_antivirus/l10n/eu.js -share/owncloud/apps/files_antivirus/l10n/eu.json -share/owncloud/apps/files_antivirus/l10n/eu_ES.js -share/owncloud/apps/files_antivirus/l10n/eu_ES.json -share/owncloud/apps/files_antivirus/l10n/fa.js -share/owncloud/apps/files_antivirus/l10n/fa.json -share/owncloud/apps/files_antivirus/l10n/fi.php -share/owncloud/apps/files_antivirus/l10n/fi_FI.js -share/owncloud/apps/files_antivirus/l10n/fi_FI.json -share/owncloud/apps/files_antivirus/l10n/fr.js -share/owncloud/apps/files_antivirus/l10n/fr.json -share/owncloud/apps/files_antivirus/l10n/gl.js -share/owncloud/apps/files_antivirus/l10n/gl.json -share/owncloud/apps/files_antivirus/l10n/he.js -share/owncloud/apps/files_antivirus/l10n/he.json -share/owncloud/apps/files_antivirus/l10n/hi.js -share/owncloud/apps/files_antivirus/l10n/hi.json -share/owncloud/apps/files_antivirus/l10n/hr.js -share/owncloud/apps/files_antivirus/l10n/hr.json -share/owncloud/apps/files_antivirus/l10n/hu_HU.js -share/owncloud/apps/files_antivirus/l10n/hu_HU.json -share/owncloud/apps/files_antivirus/l10n/hy.js -share/owncloud/apps/files_antivirus/l10n/hy.json -share/owncloud/apps/files_antivirus/l10n/ia.js -share/owncloud/apps/files_antivirus/l10n/ia.json -share/owncloud/apps/files_antivirus/l10n/id.js -share/owncloud/apps/files_antivirus/l10n/id.json -share/owncloud/apps/files_antivirus/l10n/is.js -share/owncloud/apps/files_antivirus/l10n/is.json -share/owncloud/apps/files_antivirus/l10n/it.js -share/owncloud/apps/files_antivirus/l10n/it.json -share/owncloud/apps/files_antivirus/l10n/ja.js -share/owncloud/apps/files_antivirus/l10n/ja.json -share/owncloud/apps/files_antivirus/l10n/ka_GE.js -share/owncloud/apps/files_antivirus/l10n/ka_GE.json -share/owncloud/apps/files_antivirus/l10n/km.js -share/owncloud/apps/files_antivirus/l10n/km.json -share/owncloud/apps/files_antivirus/l10n/ko.js -share/owncloud/apps/files_antivirus/l10n/ko.json -share/owncloud/apps/files_antivirus/l10n/ku_IQ.js -share/owncloud/apps/files_antivirus/l10n/ku_IQ.json -share/owncloud/apps/files_antivirus/l10n/lb.js -share/owncloud/apps/files_antivirus/l10n/lb.json -share/owncloud/apps/files_antivirus/l10n/lt_LT.js -share/owncloud/apps/files_antivirus/l10n/lt_LT.json -share/owncloud/apps/files_antivirus/l10n/lv.js -share/owncloud/apps/files_antivirus/l10n/lv.json -share/owncloud/apps/files_antivirus/l10n/mk.js -share/owncloud/apps/files_antivirus/l10n/mk.json -share/owncloud/apps/files_antivirus/l10n/ms_MY.js -share/owncloud/apps/files_antivirus/l10n/ms_MY.json -share/owncloud/apps/files_antivirus/l10n/my_MM.js -share/owncloud/apps/files_antivirus/l10n/my_MM.json -share/owncloud/apps/files_antivirus/l10n/nb_NO.js -share/owncloud/apps/files_antivirus/l10n/nb_NO.json -share/owncloud/apps/files_antivirus/l10n/nl.js -share/owncloud/apps/files_antivirus/l10n/nl.json -share/owncloud/apps/files_antivirus/l10n/nn_NO.js -share/owncloud/apps/files_antivirus/l10n/nn_NO.json -share/owncloud/apps/files_antivirus/l10n/no-php -share/owncloud/apps/files_antivirus/l10n/oc.js -share/owncloud/apps/files_antivirus/l10n/oc.json -share/owncloud/apps/files_antivirus/l10n/pl.js -share/owncloud/apps/files_antivirus/l10n/pl.json -share/owncloud/apps/files_antivirus/l10n/pt_BR.js -share/owncloud/apps/files_antivirus/l10n/pt_BR.json -share/owncloud/apps/files_antivirus/l10n/pt_PT.js -share/owncloud/apps/files_antivirus/l10n/pt_PT.json -share/owncloud/apps/files_antivirus/l10n/ro.js -share/owncloud/apps/files_antivirus/l10n/ro.json -share/owncloud/apps/files_antivirus/l10n/ru.js -share/owncloud/apps/files_antivirus/l10n/ru.json -share/owncloud/apps/files_antivirus/l10n/si_LK.js -share/owncloud/apps/files_antivirus/l10n/si_LK.json -share/owncloud/apps/files_antivirus/l10n/sk.php -share/owncloud/apps/files_antivirus/l10n/sk_SK.js -share/owncloud/apps/files_antivirus/l10n/sk_SK.json -share/owncloud/apps/files_antivirus/l10n/sl.js -share/owncloud/apps/files_antivirus/l10n/sl.json -share/owncloud/apps/files_antivirus/l10n/sq.js -share/owncloud/apps/files_antivirus/l10n/sq.json -share/owncloud/apps/files_antivirus/l10n/sr.js -share/owncloud/apps/files_antivirus/l10n/sr.json -share/owncloud/apps/files_antivirus/l10n/sr@latin.js -share/owncloud/apps/files_antivirus/l10n/sr@latin.json -share/owncloud/apps/files_antivirus/l10n/sv.js -share/owncloud/apps/files_antivirus/l10n/sv.json -share/owncloud/apps/files_antivirus/l10n/ta_LK.js -share/owncloud/apps/files_antivirus/l10n/ta_LK.json -share/owncloud/apps/files_antivirus/l10n/te.js -share/owncloud/apps/files_antivirus/l10n/te.json -share/owncloud/apps/files_antivirus/l10n/th_TH.js -share/owncloud/apps/files_antivirus/l10n/th_TH.json -share/owncloud/apps/files_antivirus/l10n/tr.js -share/owncloud/apps/files_antivirus/l10n/tr.json -share/owncloud/apps/files_antivirus/l10n/ug.js -share/owncloud/apps/files_antivirus/l10n/ug.json -share/owncloud/apps/files_antivirus/l10n/uk.js -share/owncloud/apps/files_antivirus/l10n/uk.json -share/owncloud/apps/files_antivirus/l10n/ur_PK.js -share/owncloud/apps/files_antivirus/l10n/ur_PK.json -share/owncloud/apps/files_antivirus/l10n/vi.js -share/owncloud/apps/files_antivirus/l10n/vi.json -share/owncloud/apps/files_antivirus/l10n/zh_CN.js -share/owncloud/apps/files_antivirus/l10n/zh_CN.json -share/owncloud/apps/files_antivirus/l10n/zh_HK.js -share/owncloud/apps/files_antivirus/l10n/zh_HK.json -share/owncloud/apps/files_antivirus/l10n/zh_TW.js -share/owncloud/apps/files_antivirus/l10n/zh_TW.json -share/owncloud/apps/files_antivirus/lib/activity.php -share/owncloud/apps/files_antivirus/lib/adminpanel.php -share/owncloud/apps/files_antivirus/lib/appconfig.php -share/owncloud/apps/files_antivirus/lib/avirwrapper.php -share/owncloud/apps/files_antivirus/lib/backgroundscanner.php -share/owncloud/apps/files_antivirus/lib/content.php -share/owncloud/apps/files_antivirus/lib/cron/task.php -share/owncloud/apps/files_antivirus/lib/db/item.php -share/owncloud/apps/files_antivirus/lib/db/itemmapper.php -share/owncloud/apps/files_antivirus/lib/db/rule.php -share/owncloud/apps/files_antivirus/lib/db/rulemapper.php -share/owncloud/apps/files_antivirus/lib/iscannable.php -share/owncloud/apps/files_antivirus/lib/item.php -share/owncloud/apps/files_antivirus/lib/notification.php -share/owncloud/apps/files_antivirus/lib/scanner.php -share/owncloud/apps/files_antivirus/lib/scanner/external.php -share/owncloud/apps/files_antivirus/lib/scanner/local.php -share/owncloud/apps/files_antivirus/lib/scannerfactory.php -share/owncloud/apps/files_antivirus/lib/status.php -share/owncloud/apps/files_antivirus/templates/notification.php -share/owncloud/apps/files_antivirus/templates/settings.php -share/owncloud/apps/files_external/3rdparty/Dropbox/API.php -share/owncloud/apps/files_external/3rdparty/Dropbox/Exception.php -share/owncloud/apps/files_external/3rdparty/Dropbox/Exception/Forbidden.php -share/owncloud/apps/files_external/3rdparty/Dropbox/Exception/NotFound.php -share/owncloud/apps/files_external/3rdparty/Dropbox/Exception/OverQuota.php -share/owncloud/apps/files_external/3rdparty/Dropbox/Exception/RequestToken.php -share/owncloud/apps/files_external/3rdparty/Dropbox/OAuth.php -share/owncloud/apps/files_external/3rdparty/Dropbox/OAuth/Consumer/Dropbox.php -share/owncloud/apps/files_external/3rdparty/Dropbox/OAuth/Curl.php -share/owncloud/apps/files_external/3rdparty/Dropbox/OAuth/PEAR.php -share/owncloud/apps/files_external/3rdparty/Dropbox/OAuth/PHP.php -share/owncloud/apps/files_external/3rdparty/Dropbox/OAuth/Wordpress.php -share/owncloud/apps/files_external/3rdparty/Dropbox/OAuth/Zend.php -share/owncloud/apps/files_external/3rdparty/Dropbox/OAuth/ca-bundle.pem -share/owncloud/apps/files_external/3rdparty/Dropbox/autoload.php share/owncloud/apps/files_external/3rdparty/autoload.php share/owncloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Aws.php share/owncloud/apps/files_external/3rdparty/aws-sdk-php/Aws/Common/Client/AbstractClient.php @@ -2427,7 +2222,6 @@ share/owncloud/apps/files_external/3rdpa share/owncloud/apps/files_external/3rdparty/icewind/streams/src/UrlCallBack.php share/owncloud/apps/files_external/3rdparty/icewind/streams/src/Wrapper.php share/owncloud/apps/files_external/ajax/applicable.php -share/owncloud/apps/files_external/ajax/oauth1.php share/owncloud/apps/files_external/ajax/oauth2.php share/owncloud/apps/files_external/appinfo/Migrations/Version20170814051424.php share/owncloud/apps/files_external/appinfo/app.php @@ -2438,7 +2232,6 @@ share/owncloud/apps/files_external/css/e share/owncloud/apps/files_external/css/settings.css share/owncloud/apps/files_external/img/app.svg share/owncloud/apps/files_external/js/app.js -share/owncloud/apps/files_external/js/dropbox.js share/owncloud/apps/files_external/js/gdrive.js share/owncloud/apps/files_external/js/mountsfilelist.js share/owncloud/apps/files_external/js/oauth1.js @@ -2637,7 +2430,6 @@ share/owncloud/apps/files_external/lib/L share/owncloud/apps/files_external/lib/Lib/Backend/AmazonS3.php share/owncloud/apps/files_external/lib/Lib/Backend/Backend.php share/owncloud/apps/files_external/lib/Lib/Backend/DAV.php -share/owncloud/apps/files_external/lib/Lib/Backend/Dropbox.php share/owncloud/apps/files_external/lib/Lib/Backend/Google.php share/owncloud/apps/files_external/lib/Lib/Backend/Local.php share/owncloud/apps/files_external/lib/Lib/Backend/OwnCloud.php @@ -2648,8 +2440,6 @@ share/owncloud/apps/files_external/lib/L share/owncloud/apps/files_external/lib/Lib/Backend/Swift.php share/owncloud/apps/files_external/lib/Lib/LegacyDependencyCheckPolyfill.php share/owncloud/apps/files_external/lib/Lib/Storage/AmazonS3.php -share/owncloud/apps/files_external/lib/Lib/Storage/Dropbox.php -share/owncloud/apps/files_external/lib/Lib/Storage/FTP.php share/owncloud/apps/files_external/lib/Lib/Storage/Google.php share/owncloud/apps/files_external/lib/Lib/Storage/OwnCloud.php share/owncloud/apps/files_external/lib/Lib/Storage/SFTP.php @@ -2668,6 +2458,8 @@ share/owncloud/apps/files_sharing/ajax/s share/owncloud/apps/files_sharing/appinfo/Migrations/Version20170804201125.php share/owncloud/apps/files_sharing/appinfo/Migrations/Version20170804201253.php share/owncloud/apps/files_sharing/appinfo/Migrations/Version20170830112305.php +share/owncloud/apps/files_sharing/appinfo/Migrations/Version20171115154900.php +share/owncloud/apps/files_sharing/appinfo/Migrations/Version20171215103657.php share/owncloud/apps/files_sharing/appinfo/app.php share/owncloud/apps/files_sharing/appinfo/info.xml share/owncloud/apps/files_sharing/appinfo/routes.php @@ -3084,6 +2876,7 @@ share/owncloud/apps/files_trashbin/lib/E share/owncloud/apps/files_trashbin/lib/Expiration.php share/owncloud/apps/files_trashbin/lib/Helper.php share/owncloud/apps/files_trashbin/lib/Hooks.php +share/owncloud/apps/files_trashbin/lib/Quota.php share/owncloud/apps/files_trashbin/lib/Storage.php share/owncloud/apps/files_trashbin/lib/Trashbin.php share/owncloud/apps/files_trashbin/list.php @@ -3460,6 +3253,7 @@ share/owncloud/apps/notifications/COPYIN share/owncloud/apps/notifications/Makefile share/owncloud/apps/notifications/appinfo/Migrations/Version20170801085340.php share/owncloud/apps/notifications/appinfo/Migrations/Version20170801152524.php +share/owncloud/apps/notifications/appinfo/Migrations/Version20180119080933.php share/owncloud/apps/notifications/appinfo/app.php share/owncloud/apps/notifications/appinfo/info.xml share/owncloud/apps/notifications/appinfo/routes.php @@ -3476,13 +3270,22 @@ share/owncloud/apps/notifications/img/sa share/owncloud/apps/notifications/img/sample-new.png share/owncloud/apps/notifications/js/app.js share/owncloud/apps/notifications/js/notification.js +share/owncloud/apps/notifications/js/personal_settings.js share/owncloud/apps/notifications/lib/App.php share/owncloud/apps/notifications/lib/AppInfo/Application.php share/owncloud/apps/notifications/lib/Capabilities.php share/owncloud/apps/notifications/lib/Command/Generate.php +share/owncloud/apps/notifications/lib/Configuration/OptionsStorage.php share/owncloud/apps/notifications/lib/Controller/EndpointController.php +share/owncloud/apps/notifications/lib/Controller/NotificationOptionsController.php share/owncloud/apps/notifications/lib/Handler.php +share/owncloud/apps/notifications/lib/Mailer/NotificationMailer.php +share/owncloud/apps/notifications/lib/Mailer/NotificationMailerAdapter.php share/owncloud/apps/notifications/lib/Notifier.php +share/owncloud/apps/notifications/lib/Panels/Personal/NotificationsPanel.php +share/owncloud/apps/notifications/templates/mail/htmlmail.php +share/owncloud/apps/notifications/templates/mail/plaintextmail.php +share/owncloud/apps/notifications/templates/panels/personal/notifications.php share/owncloud/apps/provisioning_api/appinfo/info.xml share/owncloud/apps/provisioning_api/appinfo/routes.php share/owncloud/apps/provisioning_api/appinfo/signature.json @@ -3649,144 +3452,6 @@ share/owncloud/apps/systemtags/lib/Activ share/owncloud/apps/systemtags/lib/Activity/Listener.php share/owncloud/apps/systemtags/list.php share/owncloud/apps/systemtags/templates/list.php -share/owncloud/apps/templateeditor/app/templateeditor.php -share/owncloud/apps/templateeditor/appinfo/info.xml -share/owncloud/apps/templateeditor/appinfo/routes.php -share/owncloud/apps/templateeditor/appinfo/signature.json -share/owncloud/apps/templateeditor/controller/adminsettingscontroller.php -share/owncloud/apps/templateeditor/css/settings-admin.css -share/owncloud/apps/templateeditor/http/mailtemplateresponse.php -share/owncloud/apps/templateeditor/img/app.svg -share/owncloud/apps/templateeditor/js/settings-admin.js -share/owncloud/apps/templateeditor/l10n/.tx/config -share/owncloud/apps/templateeditor/l10n/ar.js -share/owncloud/apps/templateeditor/l10n/ar.json -share/owncloud/apps/templateeditor/l10n/ast.js -share/owncloud/apps/templateeditor/l10n/ast.json -share/owncloud/apps/templateeditor/l10n/az.js -share/owncloud/apps/templateeditor/l10n/az.json -share/owncloud/apps/templateeditor/l10n/bg_BG.js -share/owncloud/apps/templateeditor/l10n/bg_BG.json -share/owncloud/apps/templateeditor/l10n/bn_BD.js -share/owncloud/apps/templateeditor/l10n/bn_BD.json -share/owncloud/apps/templateeditor/l10n/bn_BD.php -share/owncloud/apps/templateeditor/l10n/bn_IN.js -share/owncloud/apps/templateeditor/l10n/bn_IN.json -share/owncloud/apps/templateeditor/l10n/bn_IN.php -share/owncloud/apps/templateeditor/l10n/bs.php -share/owncloud/apps/templateeditor/l10n/ca.js -share/owncloud/apps/templateeditor/l10n/ca.json -share/owncloud/apps/templateeditor/l10n/cs_CZ.js -share/owncloud/apps/templateeditor/l10n/cs_CZ.json -share/owncloud/apps/templateeditor/l10n/cy_GB.php -share/owncloud/apps/templateeditor/l10n/da.js -share/owncloud/apps/templateeditor/l10n/da.json -share/owncloud/apps/templateeditor/l10n/de.js -share/owncloud/apps/templateeditor/l10n/de.json -share/owncloud/apps/templateeditor/l10n/de_AT.php -share/owncloud/apps/templateeditor/l10n/de_CH.php -share/owncloud/apps/templateeditor/l10n/de_DE.js -share/owncloud/apps/templateeditor/l10n/de_DE.json -share/owncloud/apps/templateeditor/l10n/el.js -share/owncloud/apps/templateeditor/l10n/el.json -share/owncloud/apps/templateeditor/l10n/en_GB.js -share/owncloud/apps/templateeditor/l10n/en_GB.json -share/owncloud/apps/templateeditor/l10n/eo.php -share/owncloud/apps/templateeditor/l10n/es.js -share/owncloud/apps/templateeditor/l10n/es.json -share/owncloud/apps/templateeditor/l10n/es_AR.php -share/owncloud/apps/templateeditor/l10n/es_MX.js -share/owncloud/apps/templateeditor/l10n/es_MX.json -share/owncloud/apps/templateeditor/l10n/et_EE.js -share/owncloud/apps/templateeditor/l10n/et_EE.json -share/owncloud/apps/templateeditor/l10n/eu.js -share/owncloud/apps/templateeditor/l10n/eu.json -share/owncloud/apps/templateeditor/l10n/eu.php -share/owncloud/apps/templateeditor/l10n/eu_ES.php -share/owncloud/apps/templateeditor/l10n/fa.js -share/owncloud/apps/templateeditor/l10n/fa.json -share/owncloud/apps/templateeditor/l10n/fi_FI.js -share/owncloud/apps/templateeditor/l10n/fi_FI.json -share/owncloud/apps/templateeditor/l10n/fr.js -share/owncloud/apps/templateeditor/l10n/fr.json -share/owncloud/apps/templateeditor/l10n/gl.js -share/owncloud/apps/templateeditor/l10n/gl.json -share/owncloud/apps/templateeditor/l10n/he.js -share/owncloud/apps/templateeditor/l10n/he.json -share/owncloud/apps/templateeditor/l10n/hi.php -share/owncloud/apps/templateeditor/l10n/hr.php -share/owncloud/apps/templateeditor/l10n/hu_HU.js -share/owncloud/apps/templateeditor/l10n/hu_HU.json -share/owncloud/apps/templateeditor/l10n/hy.php -share/owncloud/apps/templateeditor/l10n/ia.php -share/owncloud/apps/templateeditor/l10n/id.js -share/owncloud/apps/templateeditor/l10n/id.json -share/owncloud/apps/templateeditor/l10n/is.js -share/owncloud/apps/templateeditor/l10n/is.json -share/owncloud/apps/templateeditor/l10n/it.js -share/owncloud/apps/templateeditor/l10n/it.json -share/owncloud/apps/templateeditor/l10n/ja.js -share/owncloud/apps/templateeditor/l10n/ja.json -share/owncloud/apps/templateeditor/l10n/ka_GE.php -share/owncloud/apps/templateeditor/l10n/km.php -share/owncloud/apps/templateeditor/l10n/ko.js -share/owncloud/apps/templateeditor/l10n/ko.json -share/owncloud/apps/templateeditor/l10n/ku_IQ.php -share/owncloud/apps/templateeditor/l10n/lb.js -share/owncloud/apps/templateeditor/l10n/lb.json -share/owncloud/apps/templateeditor/l10n/lt_LT.php -share/owncloud/apps/templateeditor/l10n/lv.php -share/owncloud/apps/templateeditor/l10n/mk.php -share/owncloud/apps/templateeditor/l10n/ms_MY.php -share/owncloud/apps/templateeditor/l10n/nb_NO.js -share/owncloud/apps/templateeditor/l10n/nb_NO.json -share/owncloud/apps/templateeditor/l10n/nl.js -share/owncloud/apps/templateeditor/l10n/nl.json -share/owncloud/apps/templateeditor/l10n/nn_NO.php -share/owncloud/apps/templateeditor/l10n/oc.js -share/owncloud/apps/templateeditor/l10n/oc.json -share/owncloud/apps/templateeditor/l10n/pl.js -share/owncloud/apps/templateeditor/l10n/pl.json -share/owncloud/apps/templateeditor/l10n/pt_BR.js -share/owncloud/apps/templateeditor/l10n/pt_BR.json -share/owncloud/apps/templateeditor/l10n/pt_PT.js -share/owncloud/apps/templateeditor/l10n/pt_PT.json -share/owncloud/apps/templateeditor/l10n/ro.js -share/owncloud/apps/templateeditor/l10n/ro.json -share/owncloud/apps/templateeditor/l10n/ru.js -share/owncloud/apps/templateeditor/l10n/ru.json -share/owncloud/apps/templateeditor/l10n/si_LK.php -share/owncloud/apps/templateeditor/l10n/sk.php -share/owncloud/apps/templateeditor/l10n/sk_SK.js -share/owncloud/apps/templateeditor/l10n/sk_SK.json -share/owncloud/apps/templateeditor/l10n/sl.js -share/owncloud/apps/templateeditor/l10n/sl.json -share/owncloud/apps/templateeditor/l10n/sq.js -share/owncloud/apps/templateeditor/l10n/sq.json -share/owncloud/apps/templateeditor/l10n/sr.js -share/owncloud/apps/templateeditor/l10n/sr.json -share/owncloud/apps/templateeditor/l10n/sr@latin.php -share/owncloud/apps/templateeditor/l10n/sv.js -share/owncloud/apps/templateeditor/l10n/sv.json -share/owncloud/apps/templateeditor/l10n/ta_LK.php -share/owncloud/apps/templateeditor/l10n/te.php -share/owncloud/apps/templateeditor/l10n/th_TH.js -share/owncloud/apps/templateeditor/l10n/th_TH.json -share/owncloud/apps/templateeditor/l10n/tr.js -share/owncloud/apps/templateeditor/l10n/tr.json -share/owncloud/apps/templateeditor/l10n/ug.php -share/owncloud/apps/templateeditor/l10n/uk.js -share/owncloud/apps/templateeditor/l10n/uk.json -share/owncloud/apps/templateeditor/l10n/ur_PK.php -share/owncloud/apps/templateeditor/l10n/vi.php -share/owncloud/apps/templateeditor/l10n/zh_CN.js -share/owncloud/apps/templateeditor/l10n/zh_CN.json -share/owncloud/apps/templateeditor/l10n/zh_HK.php -share/owncloud/apps/templateeditor/l10n/zh_TW.js -share/owncloud/apps/templateeditor/l10n/zh_TW.json -share/owncloud/apps/templateeditor/lib/adminpanel.php -share/owncloud/apps/templateeditor/lib/mailtemplate.php -share/owncloud/apps/templateeditor/templates/settings-admin.php share/owncloud/apps/theme-example/appinfo/info.xml share/owncloud/apps/theme-example/appinfo/signature.json share/owncloud/apps/theme-example/core/css/styles.css @@ -4008,6 +3673,7 @@ share/owncloud/core/Command/User/Inactiv share/owncloud/core/Command/User/LastSeen.php share/owncloud/core/Command/User/ListUserGroups.php share/owncloud/core/Command/User/ListUsers.php +share/owncloud/core/Command/User/Modify.php share/owncloud/core/Command/User/Report.php share/owncloud/core/Command/User/ResetPassword.php share/owncloud/core/Command/User/Setting.php @@ -4037,6 +3703,10 @@ share/owncloud/core/Migrations/Version20 share/owncloud/core/Migrations/Version20170605143658.php share/owncloud/core/Migrations/Version20170711191432.php share/owncloud/core/Migrations/Version20170804201253.php +share/owncloud/core/Migrations/Version20170928120000.php +share/owncloud/core/Migrations/Version20171026130750.php +share/owncloud/core/Migrations/Version20180123131835.php +share/owncloud/core/Migrations/Version20180319102121.php share/owncloud/core/ajax/appconfig.php share/owncloud/core/ajax/preview.php share/owncloud/core/ajax/share.php @@ -4075,18 +3745,28 @@ share/owncloud/core/doc/admin/_images/ad share/owncloud/core/doc/admin/_images/admin_filehandling-2.png share/owncloud/core/doc/admin/_images/amazons3.png share/owncloud/core/doc/admin/_images/anti-virus-configuration-rules.png +share/owncloud/core/doc/admin/_images/anti-virus-message-host-connection-problem.png +share/owncloud/core/doc/admin/_images/anti-virus-message-misconfiguration-problem.png +share/owncloud/core/doc/admin/_images/anti-virus-message-socket-connection-problem.png share/owncloud/core/doc/admin/_images/antivirus-app.png share/owncloud/core/doc/admin/_images/antivirus-config.png share/owncloud/core/doc/admin/_images/antivirus-daemon-socket.png share/owncloud/core/doc/admin/_images/antivirus-executable.png share/owncloud/core/doc/admin/_images/antivirus-logging.png +share/owncloud/core/doc/admin/_images/app-center-search-for-owncloud.png +share/owncloud/core/doc/admin/_images/app-configuration.png share/owncloud/core/doc/admin/_images/applicable.png share/owncloud/core/doc/admin/_images/auth_backends-2.png share/owncloud/core/doc/admin/_images/auth_backends.png share/owncloud/core/doc/admin/_images/auth_mechanism.png share/owncloud/core/doc/admin/_images/auth_rsa.png +share/owncloud/core/doc/admin/_images/begin-owncloud-uninstall.png share/owncloud/core/doc/admin/_images/code-integrity-admin.png share/owncloud/core/doc/admin/_images/code-integrity-notification.png +share/owncloud/core/doc/admin/_images/configure-mountpoints.png +share/owncloud/core/doc/admin/_images/confirm-clamav-installation.png +share/owncloud/core/doc/admin/_images/confirm-owncloud-uninstall.png +share/owncloud/core/doc/admin/_images/confirm-owncloud-upgrade.png share/owncloud/core/doc/admin/_images/create_public_share-10.png share/owncloud/core/doc/admin/_images/create_public_share-6.png share/owncloud/core/doc/admin/_images/create_public_share-8.png @@ -4095,14 +3775,9 @@ share/owncloud/core/doc/admin/_images/de share/owncloud/core/doc/admin/_images/deprecs-2.png share/owncloud/core/doc/admin/_images/deprecs-3.png share/owncloud/core/doc/admin/_images/download-form.png -share/owncloud/core/doc/admin/_images/dropbox-1.png -share/owncloud/core/doc/admin/_images/dropbox-2.png -share/owncloud/core/doc/admin/_images/dropbox-3.png -share/owncloud/core/doc/admin/_images/dropbox-4.png -share/owncloud/core/doc/admin/_images/dropbox-5.png -share/owncloud/core/doc/admin/_images/dropbox-6.png +share/owncloud/core/doc/admin/_images/dropbox-apps-folders.png share/owncloud/core/doc/admin/_images/dropbox-oc.png -share/owncloud/core/doc/admin/_images/dropbox.png +share/owncloud/core/doc/admin/_images/dropbox-share-available.png share/owncloud/core/doc/admin/_images/enable-app.png share/owncloud/core/doc/admin/_images/encryption1.png share/owncloud/core/doc/admin/_images/encryption10.png @@ -4118,6 +3793,7 @@ share/owncloud/core/doc/admin/_images/ex share/owncloud/core/doc/admin/_images/external-sites-3.png share/owncloud/core/doc/admin/_images/external-sites-4.png share/owncloud/core/doc/admin/_images/external-sites-5.png +share/owncloud/core/doc/admin/_images/external-storage-dropbox-highlighted.png share/owncloud/core/doc/admin/_images/external-storage-google-drive-and-dropbox-configuration.png share/owncloud/core/doc/admin/_images/federation-0.png share/owncloud/core/doc/admin/_images/federation-1.png @@ -4141,16 +3817,15 @@ share/owncloud/core/doc/admin/_images/go share/owncloud/core/doc/admin/_images/google-drive8.png share/owncloud/core/doc/admin/_images/google-drive9.png share/owncloud/core/doc/admin/_images/impersonate-add-groups.png -share/owncloud/core/doc/admin/_images/impersonate-installed.png share/owncloud/core/doc/admin/_images/impersonate-settings.png -share/owncloud/core/doc/admin/_images/impersonate-uninstalled.png share/owncloud/core/doc/admin/_images/impersonating-a-user.png share/owncloud/core/doc/admin/_images/import-ssl-cert-1.png share/owncloud/core/doc/admin/_images/import-ssl-cert-2.png share/owncloud/core/doc/admin/_images/import-the-virtual-appliance.png +share/owncloud/core/doc/admin/_images/install-clamav.png share/owncloud/core/doc/admin/_images/install-wizard-a.png share/owncloud/core/doc/admin/_images/install-wizard-a1.png -share/owncloud/core/doc/admin/_images/install-wizard-a4.png +share/owncloud/core/doc/admin/_images/installed-applications-owncloud.png share/owncloud/core/doc/admin/_images/json-alias-after.png share/owncloud/core/doc/admin/_images/json-alias-before.png share/owncloud/core/doc/admin/_images/ldap-advanced-1-connection.png @@ -4174,14 +3849,25 @@ share/owncloud/core/doc/admin/_images/op share/owncloud/core/doc/admin/_images/oracle-1.png share/owncloud/core/doc/admin/_images/ownbrander-1.png share/owncloud/core/doc/admin/_images/ownbrander-11.png +share/owncloud/core/doc/admin/_images/owncloud-app-ready-for-update.png +share/owncloud/core/doc/admin/_images/owncloud-app-version-confirmation.png +share/owncloud/core/doc/admin/_images/owncloud-confirm-install.png share/owncloud/core/doc/admin/_images/owncloud-market-custom-groups-install.png share/owncloud/core/doc/admin/_images/owncloud-market-custom-groups.png +share/owncloud/core/doc/admin/_images/owncloud-ui-login.png +share/owncloud/core/doc/admin/_images/owncloud-update-app-installation-notes.png share/owncloud/core/doc/admin/_images/password-policy-app.png share/owncloud/core/doc/admin/_images/phpinfo.png share/owncloud/core/doc/admin/_images/picking-a-user-to-impersonate.png +share/owncloud/core/doc/admin/_images/portal.png share/owncloud/core/doc/admin/_images/preview_images.png share/owncloud/core/doc/admin/_images/rackspace.png +share/owncloud/core/doc/admin/_images/register-an-application.png +share/owncloud/core/doc/admin/_images/security-app-password-policy.png share/owncloud/core/doc/admin/_images/security-setup-warning-1.png +share/owncloud/core/doc/admin/_images/set-application-name.png +share/owncloud/core/doc/admin/_images/set-permissions.png +share/owncloud/core/doc/admin/_images/set-redirect-urls.png share/owncloud/core/doc/admin/_images/sharepoint-1.png share/owncloud/core/doc/admin/_images/sharepoint-2.png share/owncloud/core/doc/admin/_images/sharepoint-3.png @@ -4189,19 +3875,32 @@ share/owncloud/core/doc/admin/_images/sh share/owncloud/core/doc/admin/_images/sharing-files-2.png share/owncloud/core/doc/admin/_images/sharing-files-settings.png share/owncloud/core/doc/admin/_images/sharing-files-via-social-media.png -share/owncloud/core/doc/admin/_images/shib-gui1.png -share/owncloud/core/doc/admin/_images/shib-gui4.png share/owncloud/core/doc/admin/_images/shib-gui5.png share/owncloud/core/doc/admin/_images/shib-gui6.png -share/owncloud/core/doc/admin/_images/shibboleth-personal.png share/owncloud/core/doc/admin/_images/skeleton-files.png share/owncloud/core/doc/admin/_images/skeleton-files1.png share/owncloud/core/doc/admin/_images/smb.png share/owncloud/core/doc/admin/_images/smtp-config-php-sendmail.png share/owncloud/core/doc/admin/_images/smtp-config-smtp.png -share/owncloud/core/doc/admin/_images/smtp-config-wizard.png +share/owncloud/core/doc/admin/_images/ssllabs.png +share/owncloud/core/doc/admin/_images/step-1.png +share/owncloud/core/doc/admin/_images/step-10.png +share/owncloud/core/doc/admin/_images/step-2.png +share/owncloud/core/doc/admin/_images/step-3.png +share/owncloud/core/doc/admin/_images/step-4.png +share/owncloud/core/doc/admin/_images/step-5.png +share/owncloud/core/doc/admin/_images/step-6.png +share/owncloud/core/doc/admin/_images/step-7.png +share/owncloud/core/doc/admin/_images/step-8.png +share/owncloud/core/doc/admin/_images/step-9.png +share/owncloud/core/doc/admin/_images/successful-connection-to-dropbox.png share/owncloud/core/doc/admin/_images/trashbin-1.png +share/owncloud/core/doc/admin/_images/ucs-owncloud-portal.png +share/owncloud/core/doc/admin/_images/ucs-owncloud-portal1.png +share/owncloud/core/doc/admin/_images/ucs-software-package-management.png +share/owncloud/core/doc/admin/_images/univention-management-console-software-update-highlighted.png share/owncloud/core/doc/admin/_images/univention-management-console.png +share/owncloud/core/doc/admin/_images/univention-software-update-dashboard.png share/owncloud/core/doc/admin/_images/upgrade-1.png share/owncloud/core/doc/admin/_images/upgrade-2.png share/owncloud/core/doc/admin/_images/user_mounts.png @@ -4220,130 +3919,144 @@ share/owncloud/core/doc/admin/_images/wo share/owncloud/core/doc/admin/_images/workflow-3.png share/owncloud/core/doc/admin/_images/workflow-4.png share/owncloud/core/doc/admin/_images/workflow-5.png -share/owncloud/core/doc/admin/_sources/appliance/index.txt -share/owncloud/core/doc/admin/_sources/appliance/installation.txt -share/owncloud/core/doc/admin/_sources/appliance/what-is-it.txt -share/owncloud/core/doc/admin/_sources/configuration/database/db_conversion.txt -share/owncloud/core/doc/admin/_sources/configuration/database/index.txt -share/owncloud/core/doc/admin/_sources/configuration/database/linux_database_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/files/big_file_upload_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/files/default_files_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/files/encryption_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/amazons3.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/auth_mechanisms.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/dropbox.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/ftp.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/google.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/local.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/openstack.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/owncloud.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/sftp.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/smb.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/webdav.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/files/external_storage_configuration_gui.txt -share/owncloud/core/doc/admin/_sources/configuration/files/federated_cloud_sharing_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/files/file_sharing_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/files/file_versioning.txt -share/owncloud/core/doc/admin/_sources/configuration/files/files_locking_transactional.txt -share/owncloud/core/doc/admin/_sources/configuration/files/index.txt -share/owncloud/core/doc/admin/_sources/configuration/files/previews_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/files/trashbin_options.txt -share/owncloud/core/doc/admin/_sources/configuration/index.txt -share/owncloud/core/doc/admin/_sources/configuration/ldap/ldap_proxy_cache_server_setup.txt -share/owncloud/core/doc/admin/_sources/configuration/mimetypes/index.txt -share/owncloud/core/doc/admin/_sources/configuration/server/activity_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/server/antivirus_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/server/automatic_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/server/background_jobs_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/server/caching_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/server/config_sample_php_parameters.txt -share/owncloud/core/doc/admin/_sources/configuration/server/custom_client_repos.txt -share/owncloud/core/doc/admin/_sources/configuration/server/email_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/server/excluded_blacklisted_files.txt -share/owncloud/core/doc/admin/_sources/configuration/server/external_sites.txt -share/owncloud/core/doc/admin/_sources/configuration/server/harden_server.txt -share/owncloud/core/doc/admin/_sources/configuration/server/import_ssl_cert.txt -share/owncloud/core/doc/admin/_sources/configuration/server/index.txt -share/owncloud/core/doc/admin/_sources/configuration/server/index_php_less_urls.txt -share/owncloud/core/doc/admin/_sources/configuration/server/js_css_asset_management_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/server/knowledgebase_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/server/language_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/server/logging_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/server/oc_server_tuning.txt -share/owncloud/core/doc/admin/_sources/configuration/server/occ_command.txt -share/owncloud/core/doc/admin/_sources/configuration/server/reverse_proxy_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/server/security/password-policy.txt -share/owncloud/core/doc/admin/_sources/configuration/server/security_setup_warnings.txt -share/owncloud/core/doc/admin/_sources/configuration/server/thirdparty_php_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/user/index.txt -share/owncloud/core/doc/admin/_sources/configuration/user/reset_admin_password.txt -share/owncloud/core/doc/admin/_sources/configuration/user/reset_user_password.txt -share/owncloud/core/doc/admin/_sources/configuration/user/user_auth_ftp_smb_imap.txt -share/owncloud/core/doc/admin/_sources/configuration/user/user_auth_ldap.txt -share/owncloud/core/doc/admin/_sources/configuration/user/user_configuration.txt -share/owncloud/core/doc/admin/_sources/configuration/user/user_provisioning_api.txt -share/owncloud/core/doc/admin/_sources/contents.txt -share/owncloud/core/doc/admin/_sources/enterprise/clients/creating_branded_apps.txt -share/owncloud/core/doc/admin/_sources/enterprise/clients/custom_client_repos.txt -share/owncloud/core/doc/admin/_sources/enterprise/clients/index.txt -share/owncloud/core/doc/admin/_sources/enterprise/external_storage/enterprise_only_auth.txt -share/owncloud/core/doc/admin/_sources/enterprise/external_storage/index.txt -share/owncloud/core/doc/admin/_sources/enterprise/external_storage/ldap_home_connector_configuration.txt -share/owncloud/core/doc/admin/_sources/enterprise/external_storage/s3_swift_as_primary_object_store_configuration.txt -share/owncloud/core/doc/admin/_sources/enterprise/external_storage/sharepoint-integration_configuration.txt -share/owncloud/core/doc/admin/_sources/enterprise/external_storage/windows-network-drive_configuration.txt -share/owncloud/core/doc/admin/_sources/enterprise/file_management/files_tagging.txt -share/owncloud/core/doc/admin/_sources/enterprise/file_management/index.txt -share/owncloud/core/doc/admin/_sources/enterprise/firewall/file_firewall.txt -share/owncloud/core/doc/admin/_sources/enterprise/firewall/index.txt -share/owncloud/core/doc/admin/_sources/enterprise/index.txt -share/owncloud/core/doc/admin/_sources/enterprise/installation/index.txt -share/owncloud/core/doc/admin/_sources/enterprise/installation/install.txt -share/owncloud/core/doc/admin/_sources/enterprise/installation/oracle_db_configuration.txt -share/owncloud/core/doc/admin/_sources/enterprise/logging/enterprise_logging_apps.txt -share/owncloud/core/doc/admin/_sources/enterprise/logging/index.txt -share/owncloud/core/doc/admin/_sources/enterprise/server_branding/enterprise_server_branding.txt -share/owncloud/core/doc/admin/_sources/enterprise/server_branding/index.txt -share/owncloud/core/doc/admin/_sources/enterprise/user_management/index.txt -share/owncloud/core/doc/admin/_sources/enterprise/user_management/user_auth_shibboleth.txt -share/owncloud/core/doc/admin/_sources/index.txt -share/owncloud/core/doc/admin/_sources/installation/apps_management_installation.txt -share/owncloud/core/doc/admin/_sources/installation/apps_supported.txt -share/owncloud/core/doc/admin/_sources/installation/changing_the_web_route.txt -share/owncloud/core/doc/admin/_sources/installation/command_line_installation.txt -share/owncloud/core/doc/admin/_sources/installation/configuration_notes_and_tips.txt -share/owncloud/core/doc/admin/_sources/installation/deployment_considerations.txt -share/owncloud/core/doc/admin/_sources/installation/deployment_recommendations.txt -share/owncloud/core/doc/admin/_sources/installation/index.txt -share/owncloud/core/doc/admin/_sources/installation/installation_wizard.txt -share/owncloud/core/doc/admin/_sources/installation/linux_installation.txt -share/owncloud/core/doc/admin/_sources/installation/nginx_configuration.txt -share/owncloud/core/doc/admin/_sources/installation/selinux_configuration.txt -share/owncloud/core/doc/admin/_sources/installation/source_installation.txt -share/owncloud/core/doc/admin/_sources/installation/system_requirements.txt -share/owncloud/core/doc/admin/_sources/installation/troubleshooting.txt -share/owncloud/core/doc/admin/_sources/issues/code_signing.txt -share/owncloud/core/doc/admin/_sources/issues/general_troubleshooting.txt -share/owncloud/core/doc/admin/_sources/issues/impersonate_users.txt -share/owncloud/core/doc/admin/_sources/issues/index.txt -share/owncloud/core/doc/admin/_sources/maintenance/backup.txt -share/owncloud/core/doc/admin/_sources/maintenance/enable_maintenance.txt -share/owncloud/core/doc/admin/_sources/maintenance/index.txt -share/owncloud/core/doc/admin/_sources/maintenance/manual_upgrade.txt -share/owncloud/core/doc/admin/_sources/maintenance/manually-moving-data-folders.txt -share/owncloud/core/doc/admin/_sources/maintenance/migrating.txt -share/owncloud/core/doc/admin/_sources/maintenance/package_upgrade.txt -share/owncloud/core/doc/admin/_sources/maintenance/restore.txt -share/owncloud/core/doc/admin/_sources/maintenance/update.txt -share/owncloud/core/doc/admin/_sources/maintenance/upgrade.txt -share/owncloud/core/doc/admin/_sources/performance/index.txt -share/owncloud/core/doc/admin/_sources/performance/redis.txt -share/owncloud/core/doc/admin/_sources/release_notes.txt -share/owncloud/core/doc/admin/_sources/upgrading/index.txt -share/owncloud/core/doc/admin/_sources/upgrading/marketplace_apps.txt -share/owncloud/core/doc/admin/_sources/upgrading/upgrade_php.txt -share/owncloud/core/doc/admin/_sources/whats_new_admin.txt +share/owncloud/core/doc/admin/_sources/appliance/Active_Directory.rst.txt +share/owncloud/core/doc/admin/_sources/appliance/Backup.rst.txt +share/owncloud/core/doc/admin/_sources/appliance/Clamav.rst.txt +share/owncloud/core/doc/admin/_sources/appliance/Collabora.rst.txt +share/owncloud/core/doc/admin/_sources/appliance/certificates.rst.txt +share/owncloud/core/doc/admin/_sources/appliance/howto-update-owncloud.rst.txt +share/owncloud/core/doc/admin/_sources/appliance/index.rst.txt +share/owncloud/core/doc/admin/_sources/appliance/installation.rst.txt +share/owncloud/core/doc/admin/_sources/appliance/login_information.rst.txt +share/owncloud/core/doc/admin/_sources/appliance/managing-ucs.rst.txt +share/owncloud/core/doc/admin/_sources/appliance/ucs/add-groups-and-users.rst.txt +share/owncloud/core/doc/admin/_sources/appliance/what-is-it.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/database/db_conversion.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/database/index.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/database/linux_database_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/big_file_upload_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/default_files_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/encryption_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/amazons3.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/auth_mechanisms.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/dropbox.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/ftp.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/google.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/local.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/openstack.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/owncloud.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/sftp.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/smb.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage/webdav.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/external_storage_configuration_gui.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/federated_cloud_sharing_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/file_sharing_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/file_versioning.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/files_locking_transactional.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/index.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/previews_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/files/trashbin_options.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/index.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/ldap/ldap_proxy_cache_server_setup.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/mimetypes/index.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/activity_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/antivirus_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/automatic_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/background_jobs_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/caching_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/config_sample_php_parameters.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/custom_client_repos.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/email_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/excluded_blacklisted_files.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/external_sites.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/harden_server.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/import_ssl_cert.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/index.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/index_php_less_urls.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/knowledgebase_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/language_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/logging_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/oc_server_tuning.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/occ_command.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/reverse_proxy_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/security/password-policy.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/security_setup_warnings.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/server/thirdparty_php_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/user/index.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/user/reset_admin_password.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/user/reset_user_password.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/user/user_auth_ftp_smb_imap.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/user/user_auth_ldap.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/user/user_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/user/user_provisioning_api.rst.txt +share/owncloud/core/doc/admin/_sources/configuration/user/user_roles.rst.txt +share/owncloud/core/doc/admin/_sources/contents.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/clients/creating_branded_apps.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/clients/custom_client_repos.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/clients/index.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/external_storage/enterprise_only_auth.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/external_storage/index.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/external_storage/ldap_home_connector_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/external_storage/onedrive.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/external_storage/s3_swift_as_primary_object_store_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/external_storage/sharepoint-integration_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/external_storage/windows-network-drive_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/file_management/files_tagging.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/file_management/index.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/firewall/file_firewall.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/firewall/index.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/index.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/installation/index.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/installation/install.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/installation/oracle_db_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/logging/enterprise_logging_apps.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/logging/index.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/ransomware-protection/index.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/server_branding/enterprise_server_branding.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/server_branding/index.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/user_management/index.rst.txt +share/owncloud/core/doc/admin/_sources/enterprise/user_management/user_auth_shibboleth.rst.txt +share/owncloud/core/doc/admin/_sources/faq/index.rst.txt +share/owncloud/core/doc/admin/_sources/index.rst.txt +share/owncloud/core/doc/admin/_sources/installation/apps_management_installation.rst.txt +share/owncloud/core/doc/admin/_sources/installation/apps_supported.rst.txt +share/owncloud/core/doc/admin/_sources/installation/changing_the_web_route.rst.txt +share/owncloud/core/doc/admin/_sources/installation/command_line_installation.rst.txt +share/owncloud/core/doc/admin/_sources/installation/configuration_notes_and_tips.rst.txt +share/owncloud/core/doc/admin/_sources/installation/deployment_considerations.rst.txt +share/owncloud/core/doc/admin/_sources/installation/deployment_recommendations.rst.txt +share/owncloud/core/doc/admin/_sources/installation/docker/index.rst.txt +share/owncloud/core/doc/admin/_sources/installation/index.rst.txt +share/owncloud/core/doc/admin/_sources/installation/installation_wizard.rst.txt +share/owncloud/core/doc/admin/_sources/installation/letsencrypt/apache.rst.txt +share/owncloud/core/doc/admin/_sources/installation/letsencrypt/index.rst.txt +share/owncloud/core/doc/admin/_sources/installation/letsencrypt/nginx.rst.txt +share/owncloud/core/doc/admin/_sources/installation/linux_installation.rst.txt +share/owncloud/core/doc/admin/_sources/installation/nginx_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/installation/selinux_configuration.rst.txt +share/owncloud/core/doc/admin/_sources/installation/source_installation.rst.txt +share/owncloud/core/doc/admin/_sources/installation/system_requirements.rst.txt +share/owncloud/core/doc/admin/_sources/installation/troubleshooting.rst.txt +share/owncloud/core/doc/admin/_sources/issues/code_signing.rst.txt +share/owncloud/core/doc/admin/_sources/issues/general_troubleshooting.rst.txt +share/owncloud/core/doc/admin/_sources/issues/impersonate_users.rst.txt +share/owncloud/core/doc/admin/_sources/issues/index.rst.txt +share/owncloud/core/doc/admin/_sources/maintenance/backup.rst.txt +share/owncloud/core/doc/admin/_sources/maintenance/enable_maintenance.rst.txt +share/owncloud/core/doc/admin/_sources/maintenance/index.rst.txt +share/owncloud/core/doc/admin/_sources/maintenance/manual_upgrade.rst.txt +share/owncloud/core/doc/admin/_sources/maintenance/manually-moving-data-folders.rst.txt +share/owncloud/core/doc/admin/_sources/maintenance/migrating.rst.txt +share/owncloud/core/doc/admin/_sources/maintenance/package_upgrade.rst.txt +share/owncloud/core/doc/admin/_sources/maintenance/restore.rst.txt +share/owncloud/core/doc/admin/_sources/maintenance/update.rst.txt +share/owncloud/core/doc/admin/_sources/maintenance/upgrade.rst.txt +share/owncloud/core/doc/admin/_sources/release_notes.rst.txt +share/owncloud/core/doc/admin/_sources/upgrading/index.rst.txt +share/owncloud/core/doc/admin/_sources/upgrading/marketplace_apps.rst.txt +share/owncloud/core/doc/admin/_sources/upgrading/upgrade_php.rst.txt +share/owncloud/core/doc/admin/_sources/whats_new_admin.rst.txt share/owncloud/core/doc/admin/_static/ajax-loader.gif share/owncloud/core/doc/admin/_static/basic.css share/owncloud/core/doc/admin/_static/bootstrap-3.1.0/css/bootstrap-theme.css @@ -4397,7 +4110,7 @@ share/owncloud/core/doc/admin/_static/im share/owncloud/core/doc/admin/_static/img/social/twitterround.png share/owncloud/core/doc/admin/_static/img/social/youtube.svg share/owncloud/core/doc/admin/_static/img/warning.svg -share/owncloud/core/doc/admin/_static/jquery-1.11.1.js +share/owncloud/core/doc/admin/_static/jquery-3.1.0.js share/owncloud/core/doc/admin/_static/jquery.js share/owncloud/core/doc/admin/_static/js/jquery-1.11.0.min.js share/owncloud/core/doc/admin/_static/js/jquery-fix.js @@ -4425,8 +4138,17 @@ share/owncloud/core/doc/admin/_static/un share/owncloud/core/doc/admin/_static/up-pressed.png share/owncloud/core/doc/admin/_static/up.png share/owncloud/core/doc/admin/_static/websupport.js +share/owncloud/core/doc/admin/appliance/Active_Directory.html +share/owncloud/core/doc/admin/appliance/Backup.html +share/owncloud/core/doc/admin/appliance/Clamav.html +share/owncloud/core/doc/admin/appliance/Collabora.html +share/owncloud/core/doc/admin/appliance/certificates.html +share/owncloud/core/doc/admin/appliance/howto-update-owncloud.html share/owncloud/core/doc/admin/appliance/index.html share/owncloud/core/doc/admin/appliance/installation.html +share/owncloud/core/doc/admin/appliance/login_information.html +share/owncloud/core/doc/admin/appliance/managing-ucs.html +share/owncloud/core/doc/admin/appliance/ucs/add-groups-and-users.html share/owncloud/core/doc/admin/appliance/what-is-it.html share/owncloud/core/doc/admin/configuration/database/db_conversion.html share/owncloud/core/doc/admin/configuration/database/index.html @@ -4471,7 +4193,6 @@ share/owncloud/core/doc/admin/configurat share/owncloud/core/doc/admin/configuration/server/import_ssl_cert.html share/owncloud/core/doc/admin/configuration/server/index.html share/owncloud/core/doc/admin/configuration/server/index_php_less_urls.html -share/owncloud/core/doc/admin/configuration/server/js_css_asset_management_configuration.html share/owncloud/core/doc/admin/configuration/server/knowledgebase_configuration.html share/owncloud/core/doc/admin/configuration/server/language_configuration.html share/owncloud/core/doc/admin/configuration/server/logging_configuration.html @@ -4488,6 +4209,7 @@ share/owncloud/core/doc/admin/configurat share/owncloud/core/doc/admin/configuration/user/user_auth_ldap.html share/owncloud/core/doc/admin/configuration/user/user_configuration.html share/owncloud/core/doc/admin/configuration/user/user_provisioning_api.html +share/owncloud/core/doc/admin/configuration/user/user_roles.html share/owncloud/core/doc/admin/contents.html share/owncloud/core/doc/admin/enterprise/clients/creating_branded_apps.html share/owncloud/core/doc/admin/enterprise/clients/custom_client_repos.html @@ -4495,6 +4217,7 @@ share/owncloud/core/doc/admin/enterprise share/owncloud/core/doc/admin/enterprise/external_storage/enterprise_only_auth.html share/owncloud/core/doc/admin/enterprise/external_storage/index.html share/owncloud/core/doc/admin/enterprise/external_storage/ldap_home_connector_configuration.html +share/owncloud/core/doc/admin/enterprise/external_storage/onedrive.html share/owncloud/core/doc/admin/enterprise/external_storage/s3_swift_as_primary_object_store_configuration.html share/owncloud/core/doc/admin/enterprise/external_storage/sharepoint-integration_configuration.html share/owncloud/core/doc/admin/enterprise/external_storage/windows-network-drive_configuration.html @@ -4508,10 +4231,12 @@ share/owncloud/core/doc/admin/enterprise share/owncloud/core/doc/admin/enterprise/installation/oracle_db_configuration.html share/owncloud/core/doc/admin/enterprise/logging/enterprise_logging_apps.html share/owncloud/core/doc/admin/enterprise/logging/index.html +share/owncloud/core/doc/admin/enterprise/ransomware-protection/index.html share/owncloud/core/doc/admin/enterprise/server_branding/enterprise_server_branding.html share/owncloud/core/doc/admin/enterprise/server_branding/index.html share/owncloud/core/doc/admin/enterprise/user_management/index.html share/owncloud/core/doc/admin/enterprise/user_management/user_auth_shibboleth.html +share/owncloud/core/doc/admin/faq/index.html share/owncloud/core/doc/admin/genindex.html share/owncloud/core/doc/admin/index.html share/owncloud/core/doc/admin/installation/apps_management_installation.html @@ -4521,8 +4246,12 @@ share/owncloud/core/doc/admin/installati share/owncloud/core/doc/admin/installation/configuration_notes_and_tips.html share/owncloud/core/doc/admin/installation/deployment_considerations.html share/owncloud/core/doc/admin/installation/deployment_recommendations.html +share/owncloud/core/doc/admin/installation/docker/index.html share/owncloud/core/doc/admin/installation/index.html share/owncloud/core/doc/admin/installation/installation_wizard.html +share/owncloud/core/doc/admin/installation/letsencrypt/apache.html +share/owncloud/core/doc/admin/installation/letsencrypt/index.html +share/owncloud/core/doc/admin/installation/letsencrypt/nginx.html share/owncloud/core/doc/admin/installation/linux_installation.html share/owncloud/core/doc/admin/installation/nginx_configuration.html share/owncloud/core/doc/admin/installation/selinux_configuration.html @@ -4544,8 +4273,6 @@ share/owncloud/core/doc/admin/maintenanc share/owncloud/core/doc/admin/maintenance/update.html share/owncloud/core/doc/admin/maintenance/upgrade.html share/owncloud/core/doc/admin/objects.inv -share/owncloud/core/doc/admin/performance/index.html -share/owncloud/core/doc/admin/performance/redis.html share/owncloud/core/doc/admin/release_notes.html share/owncloud/core/doc/admin/search.html share/owncloud/core/doc/admin/searchindex.js @@ -4553,7 +4280,6 @@ share/owncloud/core/doc/admin/upgrading/ share/owncloud/core/doc/admin/upgrading/marketplace_apps.html share/owncloud/core/doc/admin/upgrading/upgrade_php.html share/owncloud/core/doc/admin/whats_new_admin.html -share/owncloud/core/doc/user/_images/add-user-to-guests.png share/owncloud/core/doc/user/_images/contact_thunderbird-Symbol_Gear.jpg share/owncloud/core/doc/user/_images/contact_thunderbird-Symbol_Impeller.jpg share/owncloud/core/doc/user/_images/contact_thunderbird-URL_config.jpg @@ -4609,6 +4335,7 @@ share/owncloud/core/doc/user/_images/pri share/owncloud/core/doc/user/_images/public-link-settings.png share/owncloud/core/doc/user/_images/quota1.png share/owncloud/core/doc/user/_images/rename-custom-group.png +share/owncloud/core/doc/user/_images/restore-files.png share/owncloud/core/doc/user/_images/settings_devices.png share/owncloud/core/doc/user/_images/settings_devices_add.png share/owncloud/core/doc/user/_images/settings_sessions.png @@ -4617,42 +4344,42 @@ share/owncloud/core/doc/user/_images/use share/owncloud/core/doc/user/_images/video_player_2.png share/owncloud/core/doc/user/_images/webdav_dolphin.png share/owncloud/core/doc/user/_images/webdav_gnome3_nautilus.png -share/owncloud/core/doc/user/_sources/contents.txt -share/owncloud/core/doc/user/_sources/external_storage/external_storage.txt -share/owncloud/core/doc/user/_sources/external_storage/index.txt -share/owncloud/core/doc/user/_sources/external_storage/sharepoint_connecting.txt -share/owncloud/core/doc/user/_sources/files/access_webdav.txt -share/owncloud/core/doc/user/_sources/files/deleted_file_management.txt -share/owncloud/core/doc/user/_sources/files/desktop_mobile_sync.txt -share/owncloud/core/doc/user/_sources/files/encrypting_files.txt -share/owncloud/core/doc/user/_sources/files/federated_cloud_sharing.txt -share/owncloud/core/doc/user/_sources/files/gallery_app.txt -share/owncloud/core/doc/user/_sources/files/index.txt -share/owncloud/core/doc/user/_sources/files/large_file_upload.txt -share/owncloud/core/doc/user/_sources/files/public_link_shares.txt -share/owncloud/core/doc/user/_sources/files/troubleshooting.txt -share/owncloud/core/doc/user/_sources/files/version_control.txt -share/owncloud/core/doc/user/_sources/files/webgui/comments.txt -share/owncloud/core/doc/user/_sources/files/webgui/custom_groups.txt -share/owncloud/core/doc/user/_sources/files/webgui/index.txt -share/owncloud/core/doc/user/_sources/files/webgui/navigating.txt -share/owncloud/core/doc/user/_sources/files/webgui/overview.txt -share/owncloud/core/doc/user/_sources/files/webgui/quota.txt -share/owncloud/core/doc/user/_sources/files/webgui/sharing.txt -share/owncloud/core/doc/user/_sources/files/webgui/tagging.txt -share/owncloud/core/doc/user/_sources/index.txt -share/owncloud/core/doc/user/_sources/pim/calendar.txt -share/owncloud/core/doc/user/_sources/pim/contacts.txt -share/owncloud/core/doc/user/_sources/pim/index.txt -share/owncloud/core/doc/user/_sources/pim/sync_ios.txt -share/owncloud/core/doc/user/_sources/pim/sync_kde.txt -share/owncloud/core/doc/user/_sources/pim/sync_osx.txt -share/owncloud/core/doc/user/_sources/pim/sync_thunderbird.txt -share/owncloud/core/doc/user/_sources/pim/troubleshooting.txt -share/owncloud/core/doc/user/_sources/session_management.txt -share/owncloud/core/doc/user/_sources/userpreferences.txt -share/owncloud/core/doc/user/_sources/webinterface.txt -share/owncloud/core/doc/user/_sources/whats_new.txt +share/owncloud/core/doc/user/_sources/contents.rst.txt +share/owncloud/core/doc/user/_sources/external_storage/external_storage.rst.txt +share/owncloud/core/doc/user/_sources/external_storage/index.rst.txt +share/owncloud/core/doc/user/_sources/external_storage/sharepoint_connecting.rst.txt +share/owncloud/core/doc/user/_sources/files/access_webdav.rst.txt +share/owncloud/core/doc/user/_sources/files/deleted_file_management.rst.txt +share/owncloud/core/doc/user/_sources/files/desktop_mobile_sync.rst.txt +share/owncloud/core/doc/user/_sources/files/encrypting_files.rst.txt +share/owncloud/core/doc/user/_sources/files/federated_cloud_sharing.rst.txt +share/owncloud/core/doc/user/_sources/files/gallery_app.rst.txt +share/owncloud/core/doc/user/_sources/files/index.rst.txt +share/owncloud/core/doc/user/_sources/files/large_file_upload.rst.txt +share/owncloud/core/doc/user/_sources/files/public_link_shares.rst.txt +share/owncloud/core/doc/user/_sources/files/troubleshooting.rst.txt +share/owncloud/core/doc/user/_sources/files/version_control.rst.txt +share/owncloud/core/doc/user/_sources/files/webgui/comments.rst.txt +share/owncloud/core/doc/user/_sources/files/webgui/custom_groups.rst.txt +share/owncloud/core/doc/user/_sources/files/webgui/index.rst.txt +share/owncloud/core/doc/user/_sources/files/webgui/navigating.rst.txt +share/owncloud/core/doc/user/_sources/files/webgui/overview.rst.txt +share/owncloud/core/doc/user/_sources/files/webgui/quota.rst.txt +share/owncloud/core/doc/user/_sources/files/webgui/sharing.rst.txt +share/owncloud/core/doc/user/_sources/files/webgui/tagging.rst.txt +share/owncloud/core/doc/user/_sources/index.rst.txt +share/owncloud/core/doc/user/_sources/pim/calendar.rst.txt +share/owncloud/core/doc/user/_sources/pim/contacts.rst.txt +share/owncloud/core/doc/user/_sources/pim/index.rst.txt +share/owncloud/core/doc/user/_sources/pim/sync_ios.rst.txt +share/owncloud/core/doc/user/_sources/pim/sync_kde.rst.txt +share/owncloud/core/doc/user/_sources/pim/sync_osx.rst.txt +share/owncloud/core/doc/user/_sources/pim/sync_thunderbird.rst.txt +share/owncloud/core/doc/user/_sources/pim/troubleshooting.rst.txt +share/owncloud/core/doc/user/_sources/session_management.rst.txt +share/owncloud/core/doc/user/_sources/userpreferences.rst.txt +share/owncloud/core/doc/user/_sources/webinterface.rst.txt +share/owncloud/core/doc/user/_sources/whats_new.rst.txt share/owncloud/core/doc/user/_static/ajax-loader.gif share/owncloud/core/doc/user/_static/basic.css share/owncloud/core/doc/user/_static/bootstrap-3.1.0/css/bootstrap-theme.css @@ -4706,7 +4433,7 @@ share/owncloud/core/doc/user/_static/img share/owncloud/core/doc/user/_static/img/social/twitterround.png share/owncloud/core/doc/user/_static/img/social/youtube.svg share/owncloud/core/doc/user/_static/img/warning.svg -share/owncloud/core/doc/user/_static/jquery-1.11.1.js +share/owncloud/core/doc/user/_static/jquery-3.1.0.js share/owncloud/core/doc/user/_static/jquery.js share/owncloud/core/doc/user/_static/js/jquery-1.11.0.min.js share/owncloud/core/doc/user/_static/js/jquery-fix.js @@ -6527,6 +6254,7 @@ share/owncloud/core/vendor/moment/templa share/owncloud/core/vendor/moment/templates/globals.js share/owncloud/core/vendor/moment/templates/locale-header.js share/owncloud/core/vendor/moment/templates/test-header.js +share/owncloud/core/vendor/select2/CONTRIBUTING.md share/owncloud/core/vendor/select2/LICENSE share/owncloud/core/vendor/select2/README.md share/owncloud/core/vendor/select2/component.json @@ -6539,6 +6267,7 @@ share/owncloud/core/vendor/select2/selec share/owncloud/core/vendor/select2/select2.min.js share/owncloud/core/vendor/select2/select2.png share/owncloud/core/vendor/select2/select2_locale_ar.js +share/owncloud/core/vendor/select2/select2_locale_az.js share/owncloud/core/vendor/select2/select2_locale_bg.js share/owncloud/core/vendor/select2/select2_locale_ca.js share/owncloud/core/vendor/select2/select2_locale_cs.js @@ -6566,8 +6295,8 @@ share/owncloud/core/vendor/select2/selec share/owncloud/core/vendor/select2/select2_locale_lv.js share/owncloud/core/vendor/select2/select2_locale_mk.js share/owncloud/core/vendor/select2/select2_locale_ms.js +share/owncloud/core/vendor/select2/select2_locale_nb.js share/owncloud/core/vendor/select2/select2_locale_nl.js -share/owncloud/core/vendor/select2/select2_locale_no.js share/owncloud/core/vendor/select2/select2_locale_pl.js share/owncloud/core/vendor/select2/select2_locale_pt-BR.js share/owncloud/core/vendor/select2/select2_locale_pt-PT.js @@ -6578,11 +6307,66 @@ share/owncloud/core/vendor/select2/selec share/owncloud/core/vendor/select2/select2_locale_sv.js share/owncloud/core/vendor/select2/select2_locale_th.js share/owncloud/core/vendor/select2/select2_locale_tr.js +share/owncloud/core/vendor/select2/select2_locale_ug-CN.js share/owncloud/core/vendor/select2/select2_locale_uk.js share/owncloud/core/vendor/select2/select2_locale_vi.js share/owncloud/core/vendor/select2/select2_locale_zh-CN.js share/owncloud/core/vendor/select2/select2_locale_zh-TW.js share/owncloud/core/vendor/select2/select2x2.png +share/owncloud/core/vendor/showdown/CHANGELOG.md +share/owncloud/core/vendor/showdown/CONTRIBUTING.md +share/owncloud/core/vendor/showdown/CREDITS.md +share/owncloud/core/vendor/showdown/DONATIONS.md +share/owncloud/core/vendor/showdown/README.md +share/owncloud/core/vendor/showdown/dist/showdown.js +share/owncloud/core/vendor/showdown/dist/showdown.js.map +share/owncloud/core/vendor/showdown/dist/showdown.min.js +share/owncloud/core/vendor/showdown/dist/showdown.min.js.map +share/owncloud/core/vendor/showdown/license.txt +share/owncloud/core/vendor/showdown/src/cli/cli.js +share/owncloud/core/vendor/showdown/src/cli/makehtml.cmd.js +share/owncloud/core/vendor/showdown/src/cli/messenger.js +share/owncloud/core/vendor/showdown/src/converter.js +share/owncloud/core/vendor/showdown/src/helpers.js +share/owncloud/core/vendor/showdown/src/loader.js +share/owncloud/core/vendor/showdown/src/options.js +share/owncloud/core/vendor/showdown/src/showdown.js +share/owncloud/core/vendor/showdown/src/subParsers/anchors.js +share/owncloud/core/vendor/showdown/src/subParsers/autoLinks.js +share/owncloud/core/vendor/showdown/src/subParsers/blockGamut.js +share/owncloud/core/vendor/showdown/src/subParsers/blockQuotes.js +share/owncloud/core/vendor/showdown/src/subParsers/codeBlocks.js +share/owncloud/core/vendor/showdown/src/subParsers/codeSpans.js +share/owncloud/core/vendor/showdown/src/subParsers/completeHTMLDocument.js +share/owncloud/core/vendor/showdown/src/subParsers/detab.js +share/owncloud/core/vendor/showdown/src/subParsers/ellipsis.js +share/owncloud/core/vendor/showdown/src/subParsers/emoji.js +share/owncloud/core/vendor/showdown/src/subParsers/encodeAmpsAndAngles.js +share/owncloud/core/vendor/showdown/src/subParsers/encodeBackslashEscapes.js +share/owncloud/core/vendor/showdown/src/subParsers/encodeCode.js +share/owncloud/core/vendor/showdown/src/subParsers/escapeSpecialCharsWithinTagAttributes.js +share/owncloud/core/vendor/showdown/src/subParsers/githubCodeBlocks.js +share/owncloud/core/vendor/showdown/src/subParsers/hashBlock.js +share/owncloud/core/vendor/showdown/src/subParsers/hashCodeTags.js +share/owncloud/core/vendor/showdown/src/subParsers/hashElement.js +share/owncloud/core/vendor/showdown/src/subParsers/hashHTMLBlocks.js +share/owncloud/core/vendor/showdown/src/subParsers/hashHTMLSpans.js +share/owncloud/core/vendor/showdown/src/subParsers/hashPreCodeTags.js +share/owncloud/core/vendor/showdown/src/subParsers/headers.js +share/owncloud/core/vendor/showdown/src/subParsers/horizontalRule.js +share/owncloud/core/vendor/showdown/src/subParsers/images.js +share/owncloud/core/vendor/showdown/src/subParsers/italicsAndBold.js +share/owncloud/core/vendor/showdown/src/subParsers/lists.js +share/owncloud/core/vendor/showdown/src/subParsers/metadata.js +share/owncloud/core/vendor/showdown/src/subParsers/outdent.js +share/owncloud/core/vendor/showdown/src/subParsers/paragraphs.js +share/owncloud/core/vendor/showdown/src/subParsers/runExtension.js +share/owncloud/core/vendor/showdown/src/subParsers/spanGamut.js +share/owncloud/core/vendor/showdown/src/subParsers/strikethrough.js +share/owncloud/core/vendor/showdown/src/subParsers/stripLinkDefinitions.js +share/owncloud/core/vendor/showdown/src/subParsers/tables.js +share/owncloud/core/vendor/showdown/src/subParsers/underline.js +share/owncloud/core/vendor/showdown/src/subParsers/unescapeSpecialChars.js share/owncloud/core/vendor/snapjs/.jshintrc share/owncloud/core/vendor/snapjs/.travis.yml share/owncloud/core/vendor/snapjs/Gemfile @@ -6634,6 +6418,26 @@ share/owncloud/lib/composer/composer/aut share/owncloud/lib/composer/composer/autoload_static.php share/owncloud/lib/composer/composer/include_paths.php share/owncloud/lib/composer/composer/installed.json +share/owncloud/lib/composer/container-interop/container-interop/LICENSE +share/owncloud/lib/composer/container-interop/container-interop/README.md +share/owncloud/lib/composer/container-interop/container-interop/composer.json +share/owncloud/lib/composer/container-interop/container-interop/docs/ContainerInterface-meta.md +share/owncloud/lib/composer/container-interop/container-interop/docs/ContainerInterface.md +share/owncloud/lib/composer/container-interop/container-interop/docs/Delegate-lookup-meta.md +share/owncloud/lib/composer/container-interop/container-interop/docs/Delegate-lookup.md +share/owncloud/lib/composer/container-interop/container-interop/docs/images/interoperating_containers.png +share/owncloud/lib/composer/container-interop/container-interop/docs/images/priority.png +share/owncloud/lib/composer/container-interop/container-interop/docs/images/side_by_side_containers.png +share/owncloud/lib/composer/container-interop/container-interop/src/Interop/Container/ContainerInterface.php +share/owncloud/lib/composer/container-interop/container-interop/src/Interop/Container/Exception/ContainerException.php +share/owncloud/lib/composer/container-interop/container-interop/src/Interop/Container/Exception/NotFoundException.php +share/owncloud/lib/composer/deepdiver/zipstreamer/.travis.yml +share/owncloud/lib/composer/deepdiver/zipstreamer/COPYING +share/owncloud/lib/composer/deepdiver/zipstreamer/MANUAL.md +share/owncloud/lib/composer/deepdiver/zipstreamer/README.md +share/owncloud/lib/composer/deepdiver/zipstreamer/composer.json +share/owncloud/lib/composer/deepdiver/zipstreamer/src/ZipStreamer.php +share/owncloud/lib/composer/deepdiver/zipstreamer/src/lib/Count64.php share/owncloud/lib/composer/deepdiver1975/tarstreamer/.scrutinizer.yml share/owncloud/lib/composer/deepdiver1975/tarstreamer/.travis.yml share/owncloud/lib/composer/deepdiver1975/tarstreamer/LICENSE @@ -7290,6 +7094,7 @@ share/owncloud/lib/composer/league/flysy share/owncloud/lib/composer/league/flysystem/composer.json share/owncloud/lib/composer/league/flysystem/src/Adapter/AbstractAdapter.php share/owncloud/lib/composer/league/flysystem/src/Adapter/AbstractFtpAdapter.php +share/owncloud/lib/composer/league/flysystem/src/Adapter/CanOverwriteFiles.php share/owncloud/lib/composer/league/flysystem/src/Adapter/Ftp.php share/owncloud/lib/composer/league/flysystem/src/Adapter/Ftpd.php share/owncloud/lib/composer/league/flysystem/src/Adapter/Local.php @@ -7310,6 +7115,7 @@ share/owncloud/lib/composer/league/flysy share/owncloud/lib/composer/league/flysystem/src/FileNotFoundException.php share/owncloud/lib/composer/league/flysystem/src/Filesystem.php share/owncloud/lib/composer/league/flysystem/src/FilesystemInterface.php +share/owncloud/lib/composer/league/flysystem/src/FilesystemNotFoundException.php share/owncloud/lib/composer/league/flysystem/src/Handler.php share/owncloud/lib/composer/league/flysystem/src/MountManager.php share/owncloud/lib/composer/league/flysystem/src/NotSupportedException.php @@ -7332,6 +7138,7 @@ share/owncloud/lib/composer/league/flysy share/owncloud/lib/composer/league/flysystem/src/Util/ContentListingFormatter.php share/owncloud/lib/composer/league/flysystem/src/Util/MimeType.php share/owncloud/lib/composer/league/flysystem/src/Util/StreamHasher.php +share/owncloud/lib/composer/lukasreschke/id3parser/LICENSE share/owncloud/lib/composer/lukasreschke/id3parser/README.md share/owncloud/lib/composer/lukasreschke/id3parser/composer.json share/owncloud/lib/composer/lukasreschke/id3parser/src/ID3Parser.php @@ -7341,16 +7148,6 @@ share/owncloud/lib/composer/lukasreschke share/owncloud/lib/composer/lukasreschke/id3parser/src/getID3/getid3_exception.php share/owncloud/lib/composer/lukasreschke/id3parser/src/getID3/getid3_handler.php share/owncloud/lib/composer/lukasreschke/id3parser/src/getID3/getid3_lib.php -share/owncloud/lib/composer/mcnetic/zipstreamer/.travis.yml -share/owncloud/lib/composer/mcnetic/zipstreamer/COPYING -share/owncloud/lib/composer/mcnetic/zipstreamer/MANUAL.md -share/owncloud/lib/composer/mcnetic/zipstreamer/README.md -share/owncloud/lib/composer/mcnetic/zipstreamer/composer.json -share/owncloud/lib/composer/mcnetic/zipstreamer/src/ZipStreamer.php -share/owncloud/lib/composer/mcnetic/zipstreamer/src/lib/Count64.php -share/owncloud/lib/composer/natxet/CssMin/README -share/owncloud/lib/composer/natxet/CssMin/composer.json -share/owncloud/lib/composer/natxet/CssMin/src/CssMin.php share/owncloud/lib/composer/nikic/php-parser/.travis.yml share/owncloud/lib/composer/nikic/php-parser/CHANGELOG.md share/owncloud/lib/composer/nikic/php-parser/LICENSE @@ -7725,7 +7522,6 @@ share/owncloud/lib/composer/phpseclib/ph share/owncloud/lib/composer/phpseclib/phpseclib/LICENSE share/owncloud/lib/composer/phpseclib/phpseclib/README.md share/owncloud/lib/composer/phpseclib/phpseclib/composer.json -share/owncloud/lib/composer/phpseclib/phpseclib/composer.lock share/owncloud/lib/composer/phpseclib/phpseclib/phpseclib/Crypt/AES.php share/owncloud/lib/composer/phpseclib/phpseclib/phpseclib/Crypt/Base.php share/owncloud/lib/composer/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php @@ -7772,6 +7568,12 @@ share/owncloud/lib/composer/pimple/pimpl share/owncloud/lib/composer/pimple/pimple/src/Pimple/Tests/Fixtures/Service.php share/owncloud/lib/composer/pimple/pimple/src/Pimple/Tests/PimpleServiceProviderInterfaceTest.php share/owncloud/lib/composer/pimple/pimple/src/Pimple/Tests/PimpleTest.php +share/owncloud/lib/composer/psr/container/LICENSE +share/owncloud/lib/composer/psr/container/README.md +share/owncloud/lib/composer/psr/container/composer.json +share/owncloud/lib/composer/psr/container/src/ContainerExceptionInterface.php +share/owncloud/lib/composer/psr/container/src/ContainerInterface.php +share/owncloud/lib/composer/psr/container/src/NotFoundExceptionInterface.php share/owncloud/lib/composer/psr/log/LICENSE share/owncloud/lib/composer/psr/log/Psr/Log/AbstractLogger.php share/owncloud/lib/composer/psr/log/Psr/Log/InvalidArgumentException.php @@ -7785,533 +7587,535 @@ share/owncloud/lib/composer/psr/log/Psr/ share/owncloud/lib/composer/psr/log/README.md share/owncloud/lib/composer/psr/log/composer.json share/owncloud/lib/composer/punic/punic/LICENSE.txt -share/owncloud/lib/composer/punic/punic/README.md share/owncloud/lib/composer/punic/punic/UNICODE-LICENSE.txt -share/owncloud/lib/composer/punic/punic/code/Calendar.php -share/owncloud/lib/composer/punic/punic/code/Comparer.php -share/owncloud/lib/composer/punic/punic/code/Currency.php -share/owncloud/lib/composer/punic/punic/code/Data.php -share/owncloud/lib/composer/punic/punic/code/Exception.php -share/owncloud/lib/composer/punic/punic/code/Exception/BadArgumentType.php -share/owncloud/lib/composer/punic/punic/code/Exception/BadDataFileContents.php -share/owncloud/lib/composer/punic/punic/code/Exception/DataFileNotFound.php -share/owncloud/lib/composer/punic/punic/code/Exception/DataFileNotReadable.php -share/owncloud/lib/composer/punic/punic/code/Exception/DataFolderNotFound.php -share/owncloud/lib/composer/punic/punic/code/Exception/InvalidDataFile.php -share/owncloud/lib/composer/punic/punic/code/Exception/InvalidLocale.php -share/owncloud/lib/composer/punic/punic/code/Exception/NotImplemented.php -share/owncloud/lib/composer/punic/punic/code/Exception/ValueNotInList.php -share/owncloud/lib/composer/punic/punic/code/Language.php -share/owncloud/lib/composer/punic/punic/code/Misc.php -share/owncloud/lib/composer/punic/punic/code/Number.php -share/owncloud/lib/composer/punic/punic/code/Phone.php -share/owncloud/lib/composer/punic/punic/code/Plural.php -share/owncloud/lib/composer/punic/punic/code/Territory.php -share/owncloud/lib/composer/punic/punic/code/Unit.php -share/owncloud/lib/composer/punic/punic/code/data/ar/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/ar/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/ar/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/ar/languages.json -share/owncloud/lib/composer/punic/punic/code/data/ar/layout.json -share/owncloud/lib/composer/punic/punic/code/data/ar/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/ar/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/ar/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/ar/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/ar/territories.json -share/owncloud/lib/composer/punic/punic/code/data/ar/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/ar/units.json -share/owncloud/lib/composer/punic/punic/code/data/ca/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/ca/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/ca/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/ca/languages.json -share/owncloud/lib/composer/punic/punic/code/data/ca/layout.json -share/owncloud/lib/composer/punic/punic/code/data/ca/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/ca/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/ca/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/ca/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/ca/territories.json -share/owncloud/lib/composer/punic/punic/code/data/ca/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/ca/units.json -share/owncloud/lib/composer/punic/punic/code/data/cs/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/cs/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/cs/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/cs/languages.json -share/owncloud/lib/composer/punic/punic/code/data/cs/layout.json -share/owncloud/lib/composer/punic/punic/code/data/cs/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/cs/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/cs/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/cs/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/cs/territories.json -share/owncloud/lib/composer/punic/punic/code/data/cs/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/cs/units.json -share/owncloud/lib/composer/punic/punic/code/data/currencyData.json -share/owncloud/lib/composer/punic/punic/code/data/da/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/da/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/da/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/da/languages.json -share/owncloud/lib/composer/punic/punic/code/data/da/layout.json -share/owncloud/lib/composer/punic/punic/code/data/da/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/da/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/da/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/da/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/da/territories.json -share/owncloud/lib/composer/punic/punic/code/data/da/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/da/units.json -share/owncloud/lib/composer/punic/punic/code/data/de/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/de/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/de/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/de/languages.json -share/owncloud/lib/composer/punic/punic/code/data/de/layout.json -share/owncloud/lib/composer/punic/punic/code/data/de/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/de/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/de/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/de/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/de/territories.json -share/owncloud/lib/composer/punic/punic/code/data/de/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/de/units.json -share/owncloud/lib/composer/punic/punic/code/data/el/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/el/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/el/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/el/languages.json -share/owncloud/lib/composer/punic/punic/code/data/el/layout.json -share/owncloud/lib/composer/punic/punic/code/data/el/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/el/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/el/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/el/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/el/territories.json -share/owncloud/lib/composer/punic/punic/code/data/el/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/el/units.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/languages.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/layout.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/territories.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-AU/units.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/languages.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/layout.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/territories.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-CA/units.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/languages.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/layout.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/territories.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-GB/units.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/languages.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/layout.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/territories.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-HK/units.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/languages.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/layout.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/territories.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/en-IN/units.json -share/owncloud/lib/composer/punic/punic/code/data/en/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/en/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/en/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/en/languages.json -share/owncloud/lib/composer/punic/punic/code/data/en/layout.json -share/owncloud/lib/composer/punic/punic/code/data/en/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/en/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/en/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/en/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/en/territories.json -share/owncloud/lib/composer/punic/punic/code/data/en/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/en/units.json -share/owncloud/lib/composer/punic/punic/code/data/es/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/es/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/es/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/es/languages.json -share/owncloud/lib/composer/punic/punic/code/data/es/layout.json -share/owncloud/lib/composer/punic/punic/code/data/es/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/es/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/es/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/es/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/es/territories.json -share/owncloud/lib/composer/punic/punic/code/data/es/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/es/units.json -share/owncloud/lib/composer/punic/punic/code/data/fi/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/fi/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/fi/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/fi/languages.json -share/owncloud/lib/composer/punic/punic/code/data/fi/layout.json -share/owncloud/lib/composer/punic/punic/code/data/fi/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/fi/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/fi/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/fi/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/fi/territories.json -share/owncloud/lib/composer/punic/punic/code/data/fi/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/fi/units.json -share/owncloud/lib/composer/punic/punic/code/data/fr/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/fr/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/fr/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/fr/languages.json -share/owncloud/lib/composer/punic/punic/code/data/fr/layout.json -share/owncloud/lib/composer/punic/punic/code/data/fr/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/fr/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/fr/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/fr/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/fr/territories.json -share/owncloud/lib/composer/punic/punic/code/data/fr/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/fr/units.json -share/owncloud/lib/composer/punic/punic/code/data/he/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/he/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/he/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/he/languages.json -share/owncloud/lib/composer/punic/punic/code/data/he/layout.json -share/owncloud/lib/composer/punic/punic/code/data/he/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/he/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/he/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/he/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/he/territories.json -share/owncloud/lib/composer/punic/punic/code/data/he/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/he/units.json -share/owncloud/lib/composer/punic/punic/code/data/hi/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/hi/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/hi/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/hi/languages.json -share/owncloud/lib/composer/punic/punic/code/data/hi/layout.json -share/owncloud/lib/composer/punic/punic/code/data/hi/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/hi/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/hi/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/hi/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/hi/territories.json -share/owncloud/lib/composer/punic/punic/code/data/hi/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/hi/units.json -share/owncloud/lib/composer/punic/punic/code/data/hr/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/hr/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/hr/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/hr/languages.json -share/owncloud/lib/composer/punic/punic/code/data/hr/layout.json -share/owncloud/lib/composer/punic/punic/code/data/hr/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/hr/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/hr/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/hr/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/hr/territories.json -share/owncloud/lib/composer/punic/punic/code/data/hr/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/hr/units.json -share/owncloud/lib/composer/punic/punic/code/data/hu/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/hu/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/hu/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/hu/languages.json -share/owncloud/lib/composer/punic/punic/code/data/hu/layout.json -share/owncloud/lib/composer/punic/punic/code/data/hu/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/hu/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/hu/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/hu/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/hu/territories.json -share/owncloud/lib/composer/punic/punic/code/data/hu/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/hu/units.json -share/owncloud/lib/composer/punic/punic/code/data/it/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/it/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/it/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/it/languages.json -share/owncloud/lib/composer/punic/punic/code/data/it/layout.json -share/owncloud/lib/composer/punic/punic/code/data/it/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/it/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/it/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/it/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/it/territories.json -share/owncloud/lib/composer/punic/punic/code/data/it/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/it/units.json -share/owncloud/lib/composer/punic/punic/code/data/ja/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/ja/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/ja/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/ja/languages.json -share/owncloud/lib/composer/punic/punic/code/data/ja/layout.json -share/owncloud/lib/composer/punic/punic/code/data/ja/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/ja/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/ja/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/ja/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/ja/territories.json -share/owncloud/lib/composer/punic/punic/code/data/ja/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/ja/units.json -share/owncloud/lib/composer/punic/punic/code/data/ko/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/ko/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/ko/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/ko/languages.json -share/owncloud/lib/composer/punic/punic/code/data/ko/layout.json -share/owncloud/lib/composer/punic/punic/code/data/ko/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/ko/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/ko/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/ko/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/ko/territories.json -share/owncloud/lib/composer/punic/punic/code/data/ko/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/ko/units.json -share/owncloud/lib/composer/punic/punic/code/data/likelySubtags.json -share/owncloud/lib/composer/punic/punic/code/data/measurementData.json -share/owncloud/lib/composer/punic/punic/code/data/metaZones.json -share/owncloud/lib/composer/punic/punic/code/data/nb/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/nb/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/nb/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/nb/languages.json -share/owncloud/lib/composer/punic/punic/code/data/nb/layout.json -share/owncloud/lib/composer/punic/punic/code/data/nb/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/nb/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/nb/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/nb/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/nb/territories.json -share/owncloud/lib/composer/punic/punic/code/data/nb/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/nb/units.json -share/owncloud/lib/composer/punic/punic/code/data/nl/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/nl/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/nl/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/nl/languages.json -share/owncloud/lib/composer/punic/punic/code/data/nl/layout.json -share/owncloud/lib/composer/punic/punic/code/data/nl/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/nl/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/nl/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/nl/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/nl/territories.json -share/owncloud/lib/composer/punic/punic/code/data/nl/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/nl/units.json -share/owncloud/lib/composer/punic/punic/code/data/nn/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/nn/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/nn/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/nn/languages.json -share/owncloud/lib/composer/punic/punic/code/data/nn/layout.json -share/owncloud/lib/composer/punic/punic/code/data/nn/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/nn/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/nn/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/nn/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/nn/territories.json -share/owncloud/lib/composer/punic/punic/code/data/nn/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/nn/units.json -share/owncloud/lib/composer/punic/punic/code/data/parentLocales.json -share/owncloud/lib/composer/punic/punic/code/data/pl/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/pl/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/pl/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/pl/languages.json -share/owncloud/lib/composer/punic/punic/code/data/pl/layout.json -share/owncloud/lib/composer/punic/punic/code/data/pl/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/pl/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/pl/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/pl/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/pl/territories.json -share/owncloud/lib/composer/punic/punic/code/data/pl/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/pl/units.json -share/owncloud/lib/composer/punic/punic/code/data/plurals.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/languages.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/layout.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/territories.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/pt-PT/units.json -share/owncloud/lib/composer/punic/punic/code/data/pt/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/pt/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/pt/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/pt/languages.json -share/owncloud/lib/composer/punic/punic/code/data/pt/layout.json -share/owncloud/lib/composer/punic/punic/code/data/pt/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/pt/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/pt/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/pt/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/pt/territories.json -share/owncloud/lib/composer/punic/punic/code/data/pt/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/pt/units.json -share/owncloud/lib/composer/punic/punic/code/data/ro/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/ro/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/ro/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/ro/languages.json -share/owncloud/lib/composer/punic/punic/code/data/ro/layout.json -share/owncloud/lib/composer/punic/punic/code/data/ro/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/ro/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/ro/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/ro/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/ro/territories.json -share/owncloud/lib/composer/punic/punic/code/data/ro/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/ro/units.json -share/owncloud/lib/composer/punic/punic/code/data/root/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/root/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/root/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/root/languages.json -share/owncloud/lib/composer/punic/punic/code/data/root/layout.json -share/owncloud/lib/composer/punic/punic/code/data/root/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/root/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/root/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/root/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/root/territories.json -share/owncloud/lib/composer/punic/punic/code/data/root/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/root/units.json -share/owncloud/lib/composer/punic/punic/code/data/ru/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/ru/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/ru/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/ru/languages.json -share/owncloud/lib/composer/punic/punic/code/data/ru/layout.json -share/owncloud/lib/composer/punic/punic/code/data/ru/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/ru/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/ru/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/ru/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/ru/territories.json -share/owncloud/lib/composer/punic/punic/code/data/ru/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/ru/units.json -share/owncloud/lib/composer/punic/punic/code/data/sk/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/sk/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/sk/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/sk/languages.json -share/owncloud/lib/composer/punic/punic/code/data/sk/layout.json -share/owncloud/lib/composer/punic/punic/code/data/sk/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/sk/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/sk/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/sk/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/sk/territories.json -share/owncloud/lib/composer/punic/punic/code/data/sk/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/sk/units.json -share/owncloud/lib/composer/punic/punic/code/data/sl/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/sl/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/sl/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/sl/languages.json -share/owncloud/lib/composer/punic/punic/code/data/sl/layout.json -share/owncloud/lib/composer/punic/punic/code/data/sl/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/sl/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/sl/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/sl/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/sl/territories.json -share/owncloud/lib/composer/punic/punic/code/data/sl/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/sl/units.json -share/owncloud/lib/composer/punic/punic/code/data/sr/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/sr/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/sr/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/sr/languages.json -share/owncloud/lib/composer/punic/punic/code/data/sr/layout.json -share/owncloud/lib/composer/punic/punic/code/data/sr/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/sr/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/sr/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/sr/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/sr/territories.json -share/owncloud/lib/composer/punic/punic/code/data/sr/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/sr/units.json -share/owncloud/lib/composer/punic/punic/code/data/sv/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/sv/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/sv/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/sv/languages.json -share/owncloud/lib/composer/punic/punic/code/data/sv/layout.json -share/owncloud/lib/composer/punic/punic/code/data/sv/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/sv/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/sv/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/sv/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/sv/territories.json -share/owncloud/lib/composer/punic/punic/code/data/sv/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/sv/units.json -share/owncloud/lib/composer/punic/punic/code/data/telephoneCodeData.json -share/owncloud/lib/composer/punic/punic/code/data/territoryContainment.json -share/owncloud/lib/composer/punic/punic/code/data/territoryInfo.json -share/owncloud/lib/composer/punic/punic/code/data/th/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/th/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/th/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/th/languages.json -share/owncloud/lib/composer/punic/punic/code/data/th/layout.json -share/owncloud/lib/composer/punic/punic/code/data/th/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/th/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/th/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/th/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/th/territories.json -share/owncloud/lib/composer/punic/punic/code/data/th/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/th/units.json -share/owncloud/lib/composer/punic/punic/code/data/tr/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/tr/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/tr/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/tr/languages.json -share/owncloud/lib/composer/punic/punic/code/data/tr/layout.json -share/owncloud/lib/composer/punic/punic/code/data/tr/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/tr/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/tr/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/tr/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/tr/territories.json -share/owncloud/lib/composer/punic/punic/code/data/tr/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/tr/units.json -share/owncloud/lib/composer/punic/punic/code/data/uk/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/uk/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/uk/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/uk/languages.json -share/owncloud/lib/composer/punic/punic/code/data/uk/layout.json -share/owncloud/lib/composer/punic/punic/code/data/uk/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/uk/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/uk/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/uk/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/uk/territories.json -share/owncloud/lib/composer/punic/punic/code/data/uk/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/uk/units.json -share/owncloud/lib/composer/punic/punic/code/data/vi/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/vi/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/vi/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/vi/languages.json -share/owncloud/lib/composer/punic/punic/code/data/vi/layout.json -share/owncloud/lib/composer/punic/punic/code/data/vi/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/vi/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/vi/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/vi/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/vi/territories.json -share/owncloud/lib/composer/punic/punic/code/data/vi/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/vi/units.json -share/owncloud/lib/composer/punic/punic/code/data/weekData.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/languages.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/layout.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/territories.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/zh-Hant/units.json -share/owncloud/lib/composer/punic/punic/code/data/zh/calendar.json -share/owncloud/lib/composer/punic/punic/code/data/zh/currencies.json -share/owncloud/lib/composer/punic/punic/code/data/zh/dateFields.json -share/owncloud/lib/composer/punic/punic/code/data/zh/languages.json -share/owncloud/lib/composer/punic/punic/code/data/zh/layout.json -share/owncloud/lib/composer/punic/punic/code/data/zh/listPatterns.json -share/owncloud/lib/composer/punic/punic/code/data/zh/localeDisplayNames.json -share/owncloud/lib/composer/punic/punic/code/data/zh/measurementSystemNames.json -share/owncloud/lib/composer/punic/punic/code/data/zh/numbers.json -share/owncloud/lib/composer/punic/punic/code/data/zh/territories.json -share/owncloud/lib/composer/punic/punic/code/data/zh/timeZoneNames.json -share/owncloud/lib/composer/punic/punic/code/data/zh/units.json share/owncloud/lib/composer/punic/punic/composer.json share/owncloud/lib/composer/punic/punic/punic.php +share/owncloud/lib/composer/punic/punic/src/Calendar.php +share/owncloud/lib/composer/punic/punic/src/Comparer.php +share/owncloud/lib/composer/punic/punic/src/Currency.php +share/owncloud/lib/composer/punic/punic/src/Data.php +share/owncloud/lib/composer/punic/punic/src/Exception.php +share/owncloud/lib/composer/punic/punic/src/Exception/BadArgumentType.php +share/owncloud/lib/composer/punic/punic/src/Exception/BadDataFileContents.php +share/owncloud/lib/composer/punic/punic/src/Exception/DataFileNotFound.php +share/owncloud/lib/composer/punic/punic/src/Exception/DataFileNotReadable.php +share/owncloud/lib/composer/punic/punic/src/Exception/DataFolderNotFound.php +share/owncloud/lib/composer/punic/punic/src/Exception/InvalidDataFile.php +share/owncloud/lib/composer/punic/punic/src/Exception/InvalidLocale.php +share/owncloud/lib/composer/punic/punic/src/Exception/NotImplemented.php +share/owncloud/lib/composer/punic/punic/src/Exception/ValueNotInList.php +share/owncloud/lib/composer/punic/punic/src/Language.php +share/owncloud/lib/composer/punic/punic/src/Misc.php +share/owncloud/lib/composer/punic/punic/src/Number.php +share/owncloud/lib/composer/punic/punic/src/Phone.php +share/owncloud/lib/composer/punic/punic/src/Plural.php +share/owncloud/lib/composer/punic/punic/src/Territory.php +share/owncloud/lib/composer/punic/punic/src/Unit.php +share/owncloud/lib/composer/punic/punic/src/data/ar/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/ar/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/ar/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/ar/languages.php +share/owncloud/lib/composer/punic/punic/src/data/ar/layout.php +share/owncloud/lib/composer/punic/punic/src/data/ar/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/ar/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/ar/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/ar/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/ar/territories.php +share/owncloud/lib/composer/punic/punic/src/data/ar/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/ar/units.php +share/owncloud/lib/composer/punic/punic/src/data/ca/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/ca/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/ca/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/ca/languages.php +share/owncloud/lib/composer/punic/punic/src/data/ca/layout.php +share/owncloud/lib/composer/punic/punic/src/data/ca/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/ca/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/ca/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/ca/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/ca/territories.php +share/owncloud/lib/composer/punic/punic/src/data/ca/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/ca/units.php +share/owncloud/lib/composer/punic/punic/src/data/cs/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/cs/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/cs/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/cs/languages.php +share/owncloud/lib/composer/punic/punic/src/data/cs/layout.php +share/owncloud/lib/composer/punic/punic/src/data/cs/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/cs/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/cs/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/cs/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/cs/territories.php +share/owncloud/lib/composer/punic/punic/src/data/cs/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/cs/units.php +share/owncloud/lib/composer/punic/punic/src/data/currencyData.php +share/owncloud/lib/composer/punic/punic/src/data/da/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/da/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/da/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/da/languages.php +share/owncloud/lib/composer/punic/punic/src/data/da/layout.php +share/owncloud/lib/composer/punic/punic/src/data/da/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/da/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/da/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/da/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/da/territories.php +share/owncloud/lib/composer/punic/punic/src/data/da/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/da/units.php +share/owncloud/lib/composer/punic/punic/src/data/dayPeriods.php +share/owncloud/lib/composer/punic/punic/src/data/de/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/de/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/de/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/de/languages.php +share/owncloud/lib/composer/punic/punic/src/data/de/layout.php +share/owncloud/lib/composer/punic/punic/src/data/de/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/de/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/de/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/de/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/de/territories.php +share/owncloud/lib/composer/punic/punic/src/data/de/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/de/units.php +share/owncloud/lib/composer/punic/punic/src/data/el/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/el/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/el/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/el/languages.php +share/owncloud/lib/composer/punic/punic/src/data/el/layout.php +share/owncloud/lib/composer/punic/punic/src/data/el/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/el/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/el/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/el/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/el/territories.php +share/owncloud/lib/composer/punic/punic/src/data/el/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/el/units.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/languages.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/layout.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/territories.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-AU/units.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/languages.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/layout.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/territories.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-CA/units.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/languages.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/layout.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/territories.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-GB/units.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/languages.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/layout.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/territories.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-HK/units.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/languages.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/layout.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/territories.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/en-IN/units.php +share/owncloud/lib/composer/punic/punic/src/data/en/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/en/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/en/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/en/languages.php +share/owncloud/lib/composer/punic/punic/src/data/en/layout.php +share/owncloud/lib/composer/punic/punic/src/data/en/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/en/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/en/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/en/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/en/territories.php +share/owncloud/lib/composer/punic/punic/src/data/en/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/en/units.php +share/owncloud/lib/composer/punic/punic/src/data/es/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/es/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/es/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/es/languages.php +share/owncloud/lib/composer/punic/punic/src/data/es/layout.php +share/owncloud/lib/composer/punic/punic/src/data/es/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/es/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/es/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/es/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/es/territories.php +share/owncloud/lib/composer/punic/punic/src/data/es/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/es/units.php +share/owncloud/lib/composer/punic/punic/src/data/fi/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/fi/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/fi/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/fi/languages.php +share/owncloud/lib/composer/punic/punic/src/data/fi/layout.php +share/owncloud/lib/composer/punic/punic/src/data/fi/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/fi/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/fi/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/fi/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/fi/territories.php +share/owncloud/lib/composer/punic/punic/src/data/fi/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/fi/units.php +share/owncloud/lib/composer/punic/punic/src/data/fr/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/fr/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/fr/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/fr/languages.php +share/owncloud/lib/composer/punic/punic/src/data/fr/layout.php +share/owncloud/lib/composer/punic/punic/src/data/fr/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/fr/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/fr/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/fr/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/fr/territories.php +share/owncloud/lib/composer/punic/punic/src/data/fr/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/fr/units.php +share/owncloud/lib/composer/punic/punic/src/data/he/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/he/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/he/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/he/languages.php +share/owncloud/lib/composer/punic/punic/src/data/he/layout.php +share/owncloud/lib/composer/punic/punic/src/data/he/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/he/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/he/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/he/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/he/territories.php +share/owncloud/lib/composer/punic/punic/src/data/he/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/he/units.php +share/owncloud/lib/composer/punic/punic/src/data/hi/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/hi/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/hi/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/hi/languages.php +share/owncloud/lib/composer/punic/punic/src/data/hi/layout.php +share/owncloud/lib/composer/punic/punic/src/data/hi/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/hi/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/hi/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/hi/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/hi/territories.php +share/owncloud/lib/composer/punic/punic/src/data/hi/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/hi/units.php +share/owncloud/lib/composer/punic/punic/src/data/hr/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/hr/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/hr/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/hr/languages.php +share/owncloud/lib/composer/punic/punic/src/data/hr/layout.php +share/owncloud/lib/composer/punic/punic/src/data/hr/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/hr/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/hr/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/hr/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/hr/territories.php +share/owncloud/lib/composer/punic/punic/src/data/hr/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/hr/units.php +share/owncloud/lib/composer/punic/punic/src/data/hu/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/hu/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/hu/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/hu/languages.php +share/owncloud/lib/composer/punic/punic/src/data/hu/layout.php +share/owncloud/lib/composer/punic/punic/src/data/hu/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/hu/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/hu/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/hu/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/hu/territories.php +share/owncloud/lib/composer/punic/punic/src/data/hu/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/hu/units.php +share/owncloud/lib/composer/punic/punic/src/data/it/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/it/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/it/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/it/languages.php +share/owncloud/lib/composer/punic/punic/src/data/it/layout.php +share/owncloud/lib/composer/punic/punic/src/data/it/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/it/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/it/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/it/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/it/territories.php +share/owncloud/lib/composer/punic/punic/src/data/it/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/it/units.php +share/owncloud/lib/composer/punic/punic/src/data/ja/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/ja/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/ja/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/ja/languages.php +share/owncloud/lib/composer/punic/punic/src/data/ja/layout.php +share/owncloud/lib/composer/punic/punic/src/data/ja/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/ja/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/ja/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/ja/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/ja/territories.php +share/owncloud/lib/composer/punic/punic/src/data/ja/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/ja/units.php +share/owncloud/lib/composer/punic/punic/src/data/ko/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/ko/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/ko/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/ko/languages.php +share/owncloud/lib/composer/punic/punic/src/data/ko/layout.php +share/owncloud/lib/composer/punic/punic/src/data/ko/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/ko/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/ko/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/ko/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/ko/territories.php +share/owncloud/lib/composer/punic/punic/src/data/ko/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/ko/units.php +share/owncloud/lib/composer/punic/punic/src/data/likelySubtags.php +share/owncloud/lib/composer/punic/punic/src/data/measurementData.php +share/owncloud/lib/composer/punic/punic/src/data/metaZones.php +share/owncloud/lib/composer/punic/punic/src/data/nb/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/nb/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/nb/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/nb/languages.php +share/owncloud/lib/composer/punic/punic/src/data/nb/layout.php +share/owncloud/lib/composer/punic/punic/src/data/nb/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/nb/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/nb/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/nb/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/nb/territories.php +share/owncloud/lib/composer/punic/punic/src/data/nb/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/nb/units.php +share/owncloud/lib/composer/punic/punic/src/data/nl/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/nl/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/nl/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/nl/languages.php +share/owncloud/lib/composer/punic/punic/src/data/nl/layout.php +share/owncloud/lib/composer/punic/punic/src/data/nl/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/nl/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/nl/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/nl/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/nl/territories.php +share/owncloud/lib/composer/punic/punic/src/data/nl/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/nl/units.php +share/owncloud/lib/composer/punic/punic/src/data/nn/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/nn/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/nn/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/nn/languages.php +share/owncloud/lib/composer/punic/punic/src/data/nn/layout.php +share/owncloud/lib/composer/punic/punic/src/data/nn/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/nn/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/nn/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/nn/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/nn/territories.php +share/owncloud/lib/composer/punic/punic/src/data/nn/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/nn/units.php +share/owncloud/lib/composer/punic/punic/src/data/parentLocales.php +share/owncloud/lib/composer/punic/punic/src/data/pl/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/pl/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/pl/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/pl/languages.php +share/owncloud/lib/composer/punic/punic/src/data/pl/layout.php +share/owncloud/lib/composer/punic/punic/src/data/pl/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/pl/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/pl/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/pl/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/pl/territories.php +share/owncloud/lib/composer/punic/punic/src/data/pl/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/pl/units.php +share/owncloud/lib/composer/punic/punic/src/data/plurals.php +share/owncloud/lib/composer/punic/punic/src/data/primaryZones.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/languages.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/layout.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/territories.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/pt-PT/units.php +share/owncloud/lib/composer/punic/punic/src/data/pt/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/pt/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/pt/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/pt/languages.php +share/owncloud/lib/composer/punic/punic/src/data/pt/layout.php +share/owncloud/lib/composer/punic/punic/src/data/pt/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/pt/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/pt/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/pt/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/pt/territories.php +share/owncloud/lib/composer/punic/punic/src/data/pt/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/pt/units.php +share/owncloud/lib/composer/punic/punic/src/data/ro/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/ro/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/ro/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/ro/languages.php +share/owncloud/lib/composer/punic/punic/src/data/ro/layout.php +share/owncloud/lib/composer/punic/punic/src/data/ro/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/ro/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/ro/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/ro/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/ro/territories.php +share/owncloud/lib/composer/punic/punic/src/data/ro/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/ro/units.php +share/owncloud/lib/composer/punic/punic/src/data/root/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/root/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/root/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/root/languages.php +share/owncloud/lib/composer/punic/punic/src/data/root/layout.php +share/owncloud/lib/composer/punic/punic/src/data/root/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/root/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/root/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/root/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/root/territories.php +share/owncloud/lib/composer/punic/punic/src/data/root/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/root/units.php +share/owncloud/lib/composer/punic/punic/src/data/ru/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/ru/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/ru/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/ru/languages.php +share/owncloud/lib/composer/punic/punic/src/data/ru/layout.php +share/owncloud/lib/composer/punic/punic/src/data/ru/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/ru/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/ru/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/ru/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/ru/territories.php +share/owncloud/lib/composer/punic/punic/src/data/ru/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/ru/units.php +share/owncloud/lib/composer/punic/punic/src/data/sk/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/sk/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/sk/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/sk/languages.php +share/owncloud/lib/composer/punic/punic/src/data/sk/layout.php +share/owncloud/lib/composer/punic/punic/src/data/sk/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/sk/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/sk/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/sk/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/sk/territories.php +share/owncloud/lib/composer/punic/punic/src/data/sk/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/sk/units.php +share/owncloud/lib/composer/punic/punic/src/data/sl/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/sl/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/sl/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/sl/languages.php +share/owncloud/lib/composer/punic/punic/src/data/sl/layout.php +share/owncloud/lib/composer/punic/punic/src/data/sl/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/sl/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/sl/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/sl/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/sl/territories.php +share/owncloud/lib/composer/punic/punic/src/data/sl/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/sl/units.php +share/owncloud/lib/composer/punic/punic/src/data/sr/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/sr/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/sr/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/sr/languages.php +share/owncloud/lib/composer/punic/punic/src/data/sr/layout.php +share/owncloud/lib/composer/punic/punic/src/data/sr/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/sr/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/sr/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/sr/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/sr/territories.php +share/owncloud/lib/composer/punic/punic/src/data/sr/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/sr/units.php +share/owncloud/lib/composer/punic/punic/src/data/sv/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/sv/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/sv/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/sv/languages.php +share/owncloud/lib/composer/punic/punic/src/data/sv/layout.php +share/owncloud/lib/composer/punic/punic/src/data/sv/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/sv/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/sv/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/sv/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/sv/territories.php +share/owncloud/lib/composer/punic/punic/src/data/sv/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/sv/units.php +share/owncloud/lib/composer/punic/punic/src/data/telephoneCodeData.php +share/owncloud/lib/composer/punic/punic/src/data/territoryContainment.php +share/owncloud/lib/composer/punic/punic/src/data/territoryInfo.php +share/owncloud/lib/composer/punic/punic/src/data/th/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/th/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/th/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/th/languages.php +share/owncloud/lib/composer/punic/punic/src/data/th/layout.php +share/owncloud/lib/composer/punic/punic/src/data/th/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/th/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/th/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/th/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/th/territories.php +share/owncloud/lib/composer/punic/punic/src/data/th/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/th/units.php +share/owncloud/lib/composer/punic/punic/src/data/timeData.php +share/owncloud/lib/composer/punic/punic/src/data/tr/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/tr/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/tr/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/tr/languages.php +share/owncloud/lib/composer/punic/punic/src/data/tr/layout.php +share/owncloud/lib/composer/punic/punic/src/data/tr/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/tr/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/tr/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/tr/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/tr/territories.php +share/owncloud/lib/composer/punic/punic/src/data/tr/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/tr/units.php +share/owncloud/lib/composer/punic/punic/src/data/uk/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/uk/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/uk/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/uk/languages.php +share/owncloud/lib/composer/punic/punic/src/data/uk/layout.php +share/owncloud/lib/composer/punic/punic/src/data/uk/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/uk/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/uk/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/uk/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/uk/territories.php +share/owncloud/lib/composer/punic/punic/src/data/uk/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/uk/units.php +share/owncloud/lib/composer/punic/punic/src/data/vi/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/vi/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/vi/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/vi/languages.php +share/owncloud/lib/composer/punic/punic/src/data/vi/layout.php +share/owncloud/lib/composer/punic/punic/src/data/vi/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/vi/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/vi/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/vi/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/vi/territories.php +share/owncloud/lib/composer/punic/punic/src/data/vi/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/vi/units.php +share/owncloud/lib/composer/punic/punic/src/data/weekData.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/languages.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/layout.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/territories.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/zh-Hant/units.php +share/owncloud/lib/composer/punic/punic/src/data/zh/calendar.php +share/owncloud/lib/composer/punic/punic/src/data/zh/currencies.php +share/owncloud/lib/composer/punic/punic/src/data/zh/dateFields.php +share/owncloud/lib/composer/punic/punic/src/data/zh/languages.php +share/owncloud/lib/composer/punic/punic/src/data/zh/layout.php +share/owncloud/lib/composer/punic/punic/src/data/zh/listPatterns.php +share/owncloud/lib/composer/punic/punic/src/data/zh/localeDisplayNames.php +share/owncloud/lib/composer/punic/punic/src/data/zh/measurementSystemNames.php +share/owncloud/lib/composer/punic/punic/src/data/zh/numbers.php +share/owncloud/lib/composer/punic/punic/src/data/zh/territories.php +share/owncloud/lib/composer/punic/punic/src/data/zh/timeZoneNames.php +share/owncloud/lib/composer/punic/punic/src/data/zh/units.php share/owncloud/lib/composer/rackspace/php-opencloud/.coveralls.yml share/owncloud/lib/composer/rackspace/php-opencloud/.travis.yml share/owncloud/lib/composer/rackspace/php-opencloud/CONTRIBUTING.md @@ -9236,7 +9040,11 @@ share/owncloud/lib/composer/symfony/cons share/owncloud/lib/composer/symfony/console/Command/HelpCommand.php share/owncloud/lib/composer/symfony/console/Command/ListCommand.php share/owncloud/lib/composer/symfony/console/Command/LockableTrait.php +share/owncloud/lib/composer/symfony/console/CommandLoader/CommandLoaderInterface.php +share/owncloud/lib/composer/symfony/console/CommandLoader/ContainerCommandLoader.php +share/owncloud/lib/composer/symfony/console/CommandLoader/FactoryCommandLoader.php share/owncloud/lib/composer/symfony/console/ConsoleEvents.php +share/owncloud/lib/composer/symfony/console/DependencyInjection/AddConsoleCommandPass.php share/owncloud/lib/composer/symfony/console/Descriptor/ApplicationDescription.php share/owncloud/lib/composer/symfony/console/Descriptor/Descriptor.php share/owncloud/lib/composer/symfony/console/Descriptor/DescriptorInterface.php @@ -9245,9 +9053,11 @@ share/owncloud/lib/composer/symfony/cons share/owncloud/lib/composer/symfony/console/Descriptor/TextDescriptor.php share/owncloud/lib/composer/symfony/console/Descriptor/XmlDescriptor.php share/owncloud/lib/composer/symfony/console/Event/ConsoleCommandEvent.php +share/owncloud/lib/composer/symfony/console/Event/ConsoleErrorEvent.php share/owncloud/lib/composer/symfony/console/Event/ConsoleEvent.php share/owncloud/lib/composer/symfony/console/Event/ConsoleExceptionEvent.php share/owncloud/lib/composer/symfony/console/Event/ConsoleTerminateEvent.php +share/owncloud/lib/composer/symfony/console/EventListener/ErrorListener.php share/owncloud/lib/composer/symfony/console/Exception/CommandNotFoundException.php share/owncloud/lib/composer/symfony/console/Exception/ExceptionInterface.php share/owncloud/lib/composer/symfony/console/Exception/InvalidArgumentException.php @@ -9309,12 +9119,16 @@ share/owncloud/lib/composer/symfony/cons share/owncloud/lib/composer/symfony/console/Tests/Command/HelpCommandTest.php share/owncloud/lib/composer/symfony/console/Tests/Command/ListCommandTest.php share/owncloud/lib/composer/symfony/console/Tests/Command/LockableTraitTest.php +share/owncloud/lib/composer/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php +share/owncloud/lib/composer/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php +share/owncloud/lib/composer/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php share/owncloud/lib/composer/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php share/owncloud/lib/composer/symfony/console/Tests/Descriptor/JsonDescriptorTest.php share/owncloud/lib/composer/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php share/owncloud/lib/composer/symfony/console/Tests/Descriptor/ObjectsProvider.php share/owncloud/lib/composer/symfony/console/Tests/Descriptor/TextDescriptorTest.php share/owncloud/lib/composer/symfony/console/Tests/Descriptor/XmlDescriptorTest.php +share/owncloud/lib/composer/symfony/console/Tests/EventListener/ErrorListenerTest.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/BarBucCommand.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/DescriptorApplication1.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/DescriptorApplication2.php @@ -9322,6 +9136,7 @@ share/owncloud/lib/composer/symfony/cons share/owncloud/lib/composer/symfony/console/Tests/Fixtures/DescriptorCommand1.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/DescriptorCommand2.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/DescriptorCommand3.php +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/DescriptorCommand4.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/DescriptorCommandMbString.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/DummyOutput.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/Foo1Command.php @@ -9333,6 +9148,9 @@ share/owncloud/lib/composer/symfony/cons share/owncloud/lib/composer/symfony/console/Tests/Fixtures/FooCommand.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/FooLock2Command.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/FooLockCommand.php +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/FooOptCommand.php +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/FoobarCommand.php @@ -9375,6 +9193,8 @@ share/owncloud/lib/composer/symfony/cons share/owncloud/lib/composer/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/TestCommand.php +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/TestTiti.php +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/TestToto.php share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_1.json share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_1.md share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_1.txt @@ -9383,6 +9203,7 @@ share/owncloud/lib/composer/symfony/cons share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_2.md share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_2.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_2.xml +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_filtered_namespace.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_gethelp.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_mbstring.md share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_mbstring.txt @@ -9394,6 +9215,8 @@ share/owncloud/lib/composer/symfony/cons share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_run1.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_run2.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/application_run3.txt @@ -9424,6 +9247,10 @@ share/owncloud/lib/composer/symfony/cons share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_argument_4.md share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_argument_4.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_argument_4.xml +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_argument_with_style.json share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_argument_with_style.md share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_argument_with_style.txt @@ -9468,6 +9295,10 @@ share/owncloud/lib/composer/symfony/cons share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_option_6.md share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_option_6.txt share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_option_6.xml +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt +share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_option_with_style.json share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_option_with_style.md share/owncloud/lib/composer/symfony/console/Tests/Fixtures/input_option_with_style.txt @@ -9541,11 +9372,20 @@ share/owncloud/lib/composer/symfony/debu share/owncloud/lib/composer/symfony/debug/Tests/FatalErrorHandler/ClassNotFoundFatalErrorHandlerTest.php share/owncloud/lib/composer/symfony/debug/Tests/FatalErrorHandler/UndefinedFunctionFatalErrorHandlerTest.php share/owncloud/lib/composer/symfony/debug/Tests/FatalErrorHandler/UndefinedMethodFatalErrorHandlerTest.php +share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/AnnotatedClass.php share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/ClassAlias.php share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/DeprecatedClass.php share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/DeprecatedInterface.php +share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php +share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/FinalClass.php +share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/FinalMethod.php +share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/InternalClass.php +share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/InternalInterface.php +share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/InternalTrait.php +share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/InternalTrait2.php share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/PEARClass.php +share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/Throwing.php share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/ToStringThrower.php share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/casemismatch.php share/owncloud/lib/composer/symfony/debug/Tests/Fixtures/notPsr0Bis.php @@ -9554,6 +9394,10 @@ share/owncloud/lib/composer/symfony/debu share/owncloud/lib/composer/symfony/debug/Tests/Fixtures2/RequiredTwice.php share/owncloud/lib/composer/symfony/debug/Tests/HeaderMock.php share/owncloud/lib/composer/symfony/debug/Tests/MockExceptionHandler.php +share/owncloud/lib/composer/symfony/debug/Tests/phpt/debug_class_loader.phpt +share/owncloud/lib/composer/symfony/debug/Tests/phpt/decorate_exception_hander.phpt +share/owncloud/lib/composer/symfony/debug/Tests/phpt/exception_rethrown.phpt +share/owncloud/lib/composer/symfony/debug/Tests/phpt/fatal_with_nested_handlers.phpt share/owncloud/lib/composer/symfony/debug/composer.json share/owncloud/lib/composer/symfony/debug/phpunit.xml.dist share/owncloud/lib/composer/symfony/event-dispatcher/CHANGELOG.md @@ -9595,6 +9439,7 @@ share/owncloud/lib/composer/symfony/poly share/owncloud/lib/composer/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php share/owncloud/lib/composer/symfony/polyfill-php70/Resources/stubs/Error.php share/owncloud/lib/composer/symfony/polyfill-php70/Resources/stubs/ParseError.php +share/owncloud/lib/composer/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php share/owncloud/lib/composer/symfony/polyfill-php70/Resources/stubs/TypeError.php share/owncloud/lib/composer/symfony/polyfill-php70/bootstrap.php share/owncloud/lib/composer/symfony/polyfill-php70/composer.json @@ -9633,10 +9478,12 @@ share/owncloud/lib/composer/symfony/proc share/owncloud/lib/composer/symfony/routing/Annotation/Route.php share/owncloud/lib/composer/symfony/routing/CHANGELOG.md share/owncloud/lib/composer/symfony/routing/CompiledRoute.php +share/owncloud/lib/composer/symfony/routing/DependencyInjection/RoutingResolverPass.php share/owncloud/lib/composer/symfony/routing/Exception/ExceptionInterface.php share/owncloud/lib/composer/symfony/routing/Exception/InvalidParameterException.php share/owncloud/lib/composer/symfony/routing/Exception/MethodNotAllowedException.php share/owncloud/lib/composer/symfony/routing/Exception/MissingMandatoryParametersException.php +share/owncloud/lib/composer/symfony/routing/Exception/NoConfigurationException.php share/owncloud/lib/composer/symfony/routing/Exception/ResourceNotFoundException.php share/owncloud/lib/composer/symfony/routing/Exception/RouteNotFoundException.php share/owncloud/lib/composer/symfony/routing/Generator/ConfigurableRequirementsInterface.php @@ -9650,19 +9497,26 @@ share/owncloud/lib/composer/symfony/rout share/owncloud/lib/composer/symfony/routing/Loader/AnnotationDirectoryLoader.php share/owncloud/lib/composer/symfony/routing/Loader/AnnotationFileLoader.php share/owncloud/lib/composer/symfony/routing/Loader/ClosureLoader.php +share/owncloud/lib/composer/symfony/routing/Loader/Configurator/CollectionConfigurator.php +share/owncloud/lib/composer/symfony/routing/Loader/Configurator/ImportConfigurator.php +share/owncloud/lib/composer/symfony/routing/Loader/Configurator/RouteConfigurator.php +share/owncloud/lib/composer/symfony/routing/Loader/Configurator/RoutingConfigurator.php +share/owncloud/lib/composer/symfony/routing/Loader/Configurator/Traits/AddTrait.php +share/owncloud/lib/composer/symfony/routing/Loader/Configurator/Traits/RouteTrait.php share/owncloud/lib/composer/symfony/routing/Loader/DependencyInjection/ServiceRouterLoader.php share/owncloud/lib/composer/symfony/routing/Loader/DirectoryLoader.php +share/owncloud/lib/composer/symfony/routing/Loader/GlobFileLoader.php share/owncloud/lib/composer/symfony/routing/Loader/ObjectRouteLoader.php share/owncloud/lib/composer/symfony/routing/Loader/PhpFileLoader.php share/owncloud/lib/composer/symfony/routing/Loader/XmlFileLoader.php share/owncloud/lib/composer/symfony/routing/Loader/YamlFileLoader.php share/owncloud/lib/composer/symfony/routing/Loader/schema/routing/routing-1.0.xsd share/owncloud/lib/composer/symfony/routing/Matcher/Dumper/DumperCollection.php -share/owncloud/lib/composer/symfony/routing/Matcher/Dumper/DumperPrefixCollection.php share/owncloud/lib/composer/symfony/routing/Matcher/Dumper/DumperRoute.php share/owncloud/lib/composer/symfony/routing/Matcher/Dumper/MatcherDumper.php share/owncloud/lib/composer/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php share/owncloud/lib/composer/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php +share/owncloud/lib/composer/symfony/routing/Matcher/Dumper/StaticPrefixCollection.php share/owncloud/lib/composer/symfony/routing/Matcher/RedirectableUrlMatcher.php share/owncloud/lib/composer/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php share/owncloud/lib/composer/symfony/routing/Matcher/RequestMatcherInterface.php @@ -9681,26 +9535,44 @@ share/owncloud/lib/composer/symfony/rout share/owncloud/lib/composer/symfony/routing/RouterInterface.php share/owncloud/lib/composer/symfony/routing/Tests/Annotation/RouteTest.php share/owncloud/lib/composer/symfony/routing/Tests/CompiledRouteTest.php +share/owncloud/lib/composer/symfony/routing/Tests/DependencyInjection/RoutingResolverPassTest.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/AnnotatedClasses/AbstractClass.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/AnnotatedClasses/BarClass.php +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/AnnotatedClasses/BazClass.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/AnnotatedClasses/FooClass.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/AnnotatedClasses/FooTrait.php +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/CustomCompiledRoute.php +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/CustomRouteCompiler.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/CustomXmlFileLoader.php +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/OtherAnnotatedClasses/AnonymousClassInTrait.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/OtherAnnotatedClasses/NoStartTagClass.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/OtherAnnotatedClasses/VariadicClass.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/RedirectableUrlMatcher.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/annotated.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/bad_format.yml share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/bar.xml +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/controller/import__controller.xml +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/controller/import__controller.yml +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/controller/import_controller.xml +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/controller/import_controller.yml +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/controller/import_override_defaults.xml +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/controller/import_override_defaults.yml +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/controller/override_defaults.xml +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/controller/override_defaults.yml +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/controller/routing.xml +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/controller/routing.yml share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/directory/recurse/routes1.yml share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/directory/recurse/routes2.yml share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/directory/routes3.yml share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/directory_import/import.yml -share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/dumper/url_matcher1.apache +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/dumper/url_matcher0.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/dumper/url_matcher1.php -share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/dumper/url_matcher2.apache share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/dumper/url_matcher2.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/dumper/url_matcher3.php +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/dumper/url_matcher4.php +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/dumper/url_matcher5.php +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/dumper/url_matcher6.php +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/dumper/url_matcher7.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/empty.yml share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/file_resource.yml share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/foo.xml @@ -9726,6 +9598,8 @@ share/owncloud/lib/composer/symfony/rout share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/nonvalidnode.xml share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/nonvalidroute.xml share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/null_values.xml +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/php_dsl.php +share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/php_dsl_sub.php share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/scalar_defaults.xml share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/special_route_name.yml share/owncloud/lib/composer/symfony/routing/Tests/Fixtures/validpattern.php @@ -9744,13 +9618,16 @@ share/owncloud/lib/composer/symfony/rout share/owncloud/lib/composer/symfony/routing/Tests/Loader/AnnotationFileLoaderTest.php share/owncloud/lib/composer/symfony/routing/Tests/Loader/ClosureLoaderTest.php share/owncloud/lib/composer/symfony/routing/Tests/Loader/DirectoryLoaderTest.php +share/owncloud/lib/composer/symfony/routing/Tests/Loader/GlobFileLoaderTest.php share/owncloud/lib/composer/symfony/routing/Tests/Loader/ObjectRouteLoaderTest.php share/owncloud/lib/composer/symfony/routing/Tests/Loader/PhpFileLoaderTest.php share/owncloud/lib/composer/symfony/routing/Tests/Loader/XmlFileLoaderTest.php share/owncloud/lib/composer/symfony/routing/Tests/Loader/YamlFileLoaderTest.php +share/owncloud/lib/composer/symfony/routing/Tests/Matcher/DumpedRedirectableUrlMatcherTest.php +share/owncloud/lib/composer/symfony/routing/Tests/Matcher/DumpedUrlMatcherTest.php share/owncloud/lib/composer/symfony/routing/Tests/Matcher/Dumper/DumperCollectionTest.php -share/owncloud/lib/composer/symfony/routing/Tests/Matcher/Dumper/DumperPrefixCollectionTest.php share/owncloud/lib/composer/symfony/routing/Tests/Matcher/Dumper/PhpMatcherDumperTest.php +share/owncloud/lib/composer/symfony/routing/Tests/Matcher/Dumper/StaticPrefixCollectionTest.php share/owncloud/lib/composer/symfony/routing/Tests/Matcher/RedirectableUrlMatcherTest.php share/owncloud/lib/composer/symfony/routing/Tests/Matcher/TraceableUrlMatcherTest.php share/owncloud/lib/composer/symfony/routing/Tests/Matcher/UrlMatcherTest.php @@ -9762,6 +9639,507 @@ share/owncloud/lib/composer/symfony/rout share/owncloud/lib/composer/symfony/routing/Tests/RouterTest.php share/owncloud/lib/composer/symfony/routing/composer.json share/owncloud/lib/composer/symfony/routing/phpunit.xml.dist +share/owncloud/lib/composer/symfony/translation/CHANGELOG.md +share/owncloud/lib/composer/symfony/translation/Catalogue/AbstractOperation.php +share/owncloud/lib/composer/symfony/translation/Catalogue/MergeOperation.php +share/owncloud/lib/composer/symfony/translation/Catalogue/OperationInterface.php +share/owncloud/lib/composer/symfony/translation/Catalogue/TargetOperation.php +share/owncloud/lib/composer/symfony/translation/Command/XliffLintCommand.php +share/owncloud/lib/composer/symfony/translation/DataCollector/TranslationDataCollector.php +share/owncloud/lib/composer/symfony/translation/DataCollectorTranslator.php +share/owncloud/lib/composer/symfony/translation/DependencyInjection/TranslationDumperPass.php +share/owncloud/lib/composer/symfony/translation/DependencyInjection/TranslationExtractorPass.php +share/owncloud/lib/composer/symfony/translation/DependencyInjection/TranslatorPass.php +share/owncloud/lib/composer/symfony/translation/Dumper/CsvFileDumper.php +share/owncloud/lib/composer/symfony/translation/Dumper/DumperInterface.php +share/owncloud/lib/composer/symfony/translation/Dumper/FileDumper.php +share/owncloud/lib/composer/symfony/translation/Dumper/IcuResFileDumper.php +share/owncloud/lib/composer/symfony/translation/Dumper/IniFileDumper.php +share/owncloud/lib/composer/symfony/translation/Dumper/JsonFileDumper.php +share/owncloud/lib/composer/symfony/translation/Dumper/MoFileDumper.php +share/owncloud/lib/composer/symfony/translation/Dumper/PhpFileDumper.php +share/owncloud/lib/composer/symfony/translation/Dumper/PoFileDumper.php +share/owncloud/lib/composer/symfony/translation/Dumper/QtFileDumper.php +share/owncloud/lib/composer/symfony/translation/Dumper/XliffFileDumper.php +share/owncloud/lib/composer/symfony/translation/Dumper/YamlFileDumper.php +share/owncloud/lib/composer/symfony/translation/Exception/ExceptionInterface.php +share/owncloud/lib/composer/symfony/translation/Exception/InvalidArgumentException.php +share/owncloud/lib/composer/symfony/translation/Exception/InvalidResourceException.php +share/owncloud/lib/composer/symfony/translation/Exception/LogicException.php +share/owncloud/lib/composer/symfony/translation/Exception/NotFoundResourceException.php +share/owncloud/lib/composer/symfony/translation/Exception/RuntimeException.php +share/owncloud/lib/composer/symfony/translation/Extractor/AbstractFileExtractor.php +share/owncloud/lib/composer/symfony/translation/Extractor/ChainExtractor.php +share/owncloud/lib/composer/symfony/translation/Extractor/ExtractorInterface.php +share/owncloud/lib/composer/symfony/translation/Extractor/PhpExtractor.php +share/owncloud/lib/composer/symfony/translation/Extractor/PhpStringTokenParser.php +share/owncloud/lib/composer/symfony/translation/Formatter/ChoiceMessageFormatterInterface.php +share/owncloud/lib/composer/symfony/translation/Formatter/MessageFormatter.php +share/owncloud/lib/composer/symfony/translation/Formatter/MessageFormatterInterface.php +share/owncloud/lib/composer/symfony/translation/IdentityTranslator.php +share/owncloud/lib/composer/symfony/translation/Interval.php +share/owncloud/lib/composer/symfony/translation/LICENSE +share/owncloud/lib/composer/symfony/translation/Loader/ArrayLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/CsvFileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/FileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/IcuDatFileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/IcuResFileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/IniFileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/JsonFileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/LoaderInterface.php +share/owncloud/lib/composer/symfony/translation/Loader/MoFileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/PhpFileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/PoFileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/QtFileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/XliffFileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/YamlFileLoader.php +share/owncloud/lib/composer/symfony/translation/Loader/schema/dic/xliff-core/xliff-core-1.2-strict.xsd +share/owncloud/lib/composer/symfony/translation/Loader/schema/dic/xliff-core/xliff-core-2.0.xsd +share/owncloud/lib/composer/symfony/translation/Loader/schema/dic/xliff-core/xml.xsd +share/owncloud/lib/composer/symfony/translation/LoggingTranslator.php +share/owncloud/lib/composer/symfony/translation/MessageCatalogue.php +share/owncloud/lib/composer/symfony/translation/MessageCatalogueInterface.php +share/owncloud/lib/composer/symfony/translation/MessageSelector.php +share/owncloud/lib/composer/symfony/translation/MetadataAwareInterface.php +share/owncloud/lib/composer/symfony/translation/PluralizationRules.php +share/owncloud/lib/composer/symfony/translation/README.md +share/owncloud/lib/composer/symfony/translation/Reader/TranslationReader.php +share/owncloud/lib/composer/symfony/translation/Reader/TranslationReaderInterface.php +share/owncloud/lib/composer/symfony/translation/Resources/schemas/xliff-core-1.2-strict.xsd +share/owncloud/lib/composer/symfony/translation/Tests/Catalogue/AbstractOperationTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Catalogue/MergeOperationTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Catalogue/TargetOperationTest.php +share/owncloud/lib/composer/symfony/translation/Tests/DataCollector/TranslationDataCollectorTest.php +share/owncloud/lib/composer/symfony/translation/Tests/DataCollectorTranslatorTest.php +share/owncloud/lib/composer/symfony/translation/Tests/DependencyInjection/TranslationDumperPassTest.php +share/owncloud/lib/composer/symfony/translation/Tests/DependencyInjection/TranslationExtractorPassTest.php +share/owncloud/lib/composer/symfony/translation/Tests/DependencyInjection/TranslationPassTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Dumper/CsvFileDumperTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Dumper/FileDumperTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Dumper/IcuResFileDumperTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Dumper/IniFileDumperTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Dumper/JsonFileDumperTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Dumper/MoFileDumperTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Dumper/PhpFileDumperTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Dumper/PoFileDumperTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Dumper/QtFileDumperTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Dumper/XliffFileDumperTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Dumper/YamlFileDumperTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Extractor/PhpExtractorTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Formatter/MessageFormatterTest.php +share/owncloud/lib/composer/symfony/translation/Tests/IdentityTranslatorTest.php +share/owncloud/lib/composer/symfony/translation/Tests/IntervalTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/CsvFileLoaderTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/IcuDatFileLoaderTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/IcuResFileLoaderTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/IniFileLoaderTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/JsonFileLoaderTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/LocalizedTestCase.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/MoFileLoaderTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/PhpFileLoaderTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/PoFileLoaderTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/QtFileLoaderTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/XliffFileLoaderTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Loader/YamlFileLoaderTest.php +share/owncloud/lib/composer/symfony/translation/Tests/LoggingTranslatorTest.php +share/owncloud/lib/composer/symfony/translation/Tests/MessageCatalogueTest.php +share/owncloud/lib/composer/symfony/translation/Tests/MessageSelectorTest.php +share/owncloud/lib/composer/symfony/translation/Tests/PluralizationRulesTest.php +share/owncloud/lib/composer/symfony/translation/Tests/TranslatorCacheTest.php +share/owncloud/lib/composer/symfony/translation/Tests/TranslatorTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Util/ArrayConverterTest.php +share/owncloud/lib/composer/symfony/translation/Tests/Writer/TranslationWriterTest.php +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/empty-translation.mo +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/empty-translation.po +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/empty.csv +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/empty.ini +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/empty.json +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/empty.mo +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/empty.po +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/empty.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/empty.yml +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/encoding.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/escaped-id-plurals.po +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/escaped-id.po +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/extractor/resource.format.engine +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/extractor/this.is.a.template.format.engine +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/extractor/translation.html.php +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/fuzzy-translations.po +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/invalid-xml-resources.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/malformed.json +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/messages.yml +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/messages_linear.yml +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/non-valid.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/non-valid.yml +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/plurals.mo +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/plurals.po +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resname.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resourcebundle/corrupted/resources.dat +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resourcebundle/dat/en.res +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resourcebundle/dat/en.txt +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.res +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.txt +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resourcebundle/dat/packagelist.txt +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resourcebundle/dat/resources.dat +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resourcebundle/res/en.res +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources-2.0-clean.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources-2.0-multi-segment-unit.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources-2.0.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources-clean.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources-notes-meta.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources-target-attributes.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources-tool-info.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources.csv +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources.dump.json +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources.ini +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources.json +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources.mo +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources.php +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources.po +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources.ts +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/resources.yml +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/valid.csv +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/with-attributes.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/withdoctype.xlf +share/owncloud/lib/composer/symfony/translation/Tests/fixtures/withnote.xlf +share/owncloud/lib/composer/symfony/translation/Translator.php +share/owncloud/lib/composer/symfony/translation/TranslatorBagInterface.php +share/owncloud/lib/composer/symfony/translation/TranslatorInterface.php +share/owncloud/lib/composer/symfony/translation/Util/ArrayConverter.php +share/owncloud/lib/composer/symfony/translation/Writer/TranslationWriter.php +share/owncloud/lib/composer/symfony/translation/Writer/TranslationWriterInterface.php +share/owncloud/lib/composer/symfony/translation/composer.json +share/owncloud/lib/composer/symfony/translation/phpunit.xml.dist +share/owncloud/lib/composer/zendframework/zend-filter/CHANGELOG.md +share/owncloud/lib/composer/zendframework/zend-filter/CONDUCT.md +share/owncloud/lib/composer/zendframework/zend-filter/CONTRIBUTING.md +share/owncloud/lib/composer/zendframework/zend-filter/LICENSE.md +share/owncloud/lib/composer/zendframework/zend-filter/README.md +share/owncloud/lib/composer/zendframework/zend-filter/composer.json +share/owncloud/lib/composer/zendframework/zend-filter/mkdocs.yml +share/owncloud/lib/composer/zendframework/zend-filter/phpcs.xml +share/owncloud/lib/composer/zendframework/zend-filter/src/AbstractDateDropdown.php +share/owncloud/lib/composer/zendframework/zend-filter/src/AbstractFilter.php +share/owncloud/lib/composer/zendframework/zend-filter/src/AbstractUnicode.php +share/owncloud/lib/composer/zendframework/zend-filter/src/BaseName.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Blacklist.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Boolean.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Callback.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Compress.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Compress/AbstractCompressionAlgorithm.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Compress/Bz2.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Compress/CompressionAlgorithmInterface.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Compress/Gz.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Compress/Lzf.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Compress/Rar.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Compress/Snappy.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Compress/Tar.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Compress/Zip.php +share/owncloud/lib/composer/zendframework/zend-filter/src/ConfigProvider.php +share/owncloud/lib/composer/zendframework/zend-filter/src/DataUnitFormatter.php +share/owncloud/lib/composer/zendframework/zend-filter/src/DateSelect.php +share/owncloud/lib/composer/zendframework/zend-filter/src/DateTimeFormatter.php +share/owncloud/lib/composer/zendframework/zend-filter/src/DateTimeSelect.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Decompress.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Decrypt.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Digits.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Dir.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Encrypt.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Encrypt/BlockCipher.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Encrypt/EncryptionAlgorithmInterface.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Encrypt/Openssl.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Exception/BadMethodCallException.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Exception/DomainException.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Exception/ExceptionInterface.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Exception/ExtensionNotLoadedException.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Exception/InvalidArgumentException.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Exception/RuntimeException.php +share/owncloud/lib/composer/zendframework/zend-filter/src/File/Decrypt.php +share/owncloud/lib/composer/zendframework/zend-filter/src/File/Encrypt.php +share/owncloud/lib/composer/zendframework/zend-filter/src/File/LowerCase.php +share/owncloud/lib/composer/zendframework/zend-filter/src/File/Rename.php +share/owncloud/lib/composer/zendframework/zend-filter/src/File/RenameUpload.php +share/owncloud/lib/composer/zendframework/zend-filter/src/File/UpperCase.php +share/owncloud/lib/composer/zendframework/zend-filter/src/FilterChain.php +share/owncloud/lib/composer/zendframework/zend-filter/src/FilterInterface.php +share/owncloud/lib/composer/zendframework/zend-filter/src/FilterPluginManager.php +share/owncloud/lib/composer/zendframework/zend-filter/src/FilterPluginManagerFactory.php +share/owncloud/lib/composer/zendframework/zend-filter/src/HtmlEntities.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Inflector.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Int.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Module.php +share/owncloud/lib/composer/zendframework/zend-filter/src/MonthSelect.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Null.php +share/owncloud/lib/composer/zendframework/zend-filter/src/PregReplace.php +share/owncloud/lib/composer/zendframework/zend-filter/src/RealPath.php +share/owncloud/lib/composer/zendframework/zend-filter/src/StaticFilter.php +share/owncloud/lib/composer/zendframework/zend-filter/src/StringToLower.php +share/owncloud/lib/composer/zendframework/zend-filter/src/StringToUpper.php +share/owncloud/lib/composer/zendframework/zend-filter/src/StringTrim.php +share/owncloud/lib/composer/zendframework/zend-filter/src/StripNewlines.php +share/owncloud/lib/composer/zendframework/zend-filter/src/StripTags.php +share/owncloud/lib/composer/zendframework/zend-filter/src/ToInt.php +share/owncloud/lib/composer/zendframework/zend-filter/src/ToNull.php +share/owncloud/lib/composer/zendframework/zend-filter/src/UpperCaseWords.php +share/owncloud/lib/composer/zendframework/zend-filter/src/UriNormalize.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Whitelist.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/AbstractSeparator.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/CamelCaseToDash.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/CamelCaseToSeparator.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/CamelCaseToUnderscore.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/DashToCamelCase.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/DashToSeparator.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/DashToUnderscore.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/SeparatorToCamelCase.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/SeparatorToDash.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/SeparatorToSeparator.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/Service/SeparatorToSeparatorFactory.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/UnderscoreToCamelCase.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/UnderscoreToDash.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/UnderscoreToSeparator.php +share/owncloud/lib/composer/zendframework/zend-filter/src/Word/UnderscoreToStudlyCase.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/CHANGELOG.md +share/owncloud/lib/composer/zendframework/zend-inputfilter/LICENSE.md +share/owncloud/lib/composer/zendframework/zend-inputfilter/README.md +share/owncloud/lib/composer/zendframework/zend-inputfilter/composer.json +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/ArrayInput.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/BaseInputFilter.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/CollectionInputFilter.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/ConfigProvider.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/EmptyContextInterface.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/Exception/ExceptionInterface.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/Exception/InvalidArgumentException.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/Exception/RuntimeException.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/Factory.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/FileInput.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/Input.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/InputFilter.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/InputFilterAbstractServiceFactory.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/InputFilterAwareInterface.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/InputFilterAwareTrait.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/InputFilterInterface.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/InputFilterPluginManager.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/InputFilterPluginManagerFactory.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/InputFilterProviderInterface.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/InputInterface.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/InputProviderInterface.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/Module.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/OptionalInputFilter.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/ReplaceableInputInterface.php +share/owncloud/lib/composer/zendframework/zend-inputfilter/src/UnknownInputsCapableInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/CHANGELOG.md +share/owncloud/lib/composer/zendframework/zend-servicemanager/LICENSE.md +share/owncloud/lib/composer/zendframework/zend-servicemanager/README.md +share/owncloud/lib/composer/zendframework/zend-servicemanager/composer.json +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/AbstractFactory/ConfigAbstractFactory.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/AbstractFactory/ReflectionBasedAbstractFactory.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/AbstractFactoryInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/AbstractPluginManager.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Config.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/ConfigInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/DelegatorFactoryInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Exception/ContainerModificationsNotAllowedException.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Exception/CyclicAliasException.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Exception/ExceptionInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Exception/InvalidArgumentException.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Exception/InvalidServiceException.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Exception/ServiceNotCreatedException.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Exception/ServiceNotFoundException.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Factory/AbstractFactoryInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Factory/DelegatorFactoryInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Factory/FactoryInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Factory/InvokableFactory.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/FactoryInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Initializer/InitializerInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/InitializerInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/PluginManagerInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Proxy/LazyServiceFactory.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/ServiceLocatorInterface.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/ServiceManager.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Test/CommonPluginManagerTrait.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Tool/ConfigDumper.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Tool/ConfigDumperCommand.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Tool/FactoryCreator.php +share/owncloud/lib/composer/zendframework/zend-servicemanager/src/Tool/FactoryCreatorCommand.php +share/owncloud/lib/composer/zendframework/zend-stdlib/CHANGELOG.md +share/owncloud/lib/composer/zendframework/zend-stdlib/CONDUCT.md +share/owncloud/lib/composer/zendframework/zend-stdlib/CONTRIBUTING.md +share/owncloud/lib/composer/zendframework/zend-stdlib/LICENSE.md +share/owncloud/lib/composer/zendframework/zend-stdlib/README.md +share/owncloud/lib/composer/zendframework/zend-stdlib/benchmark/ExtractPriorityQueue.php +share/owncloud/lib/composer/zendframework/zend-stdlib/benchmark/InsertPriorityQueue.php +share/owncloud/lib/composer/zendframework/zend-stdlib/benchmark/RemovePriorityQueue.php +share/owncloud/lib/composer/zendframework/zend-stdlib/composer.json +share/owncloud/lib/composer/zendframework/zend-stdlib/mkdocs.yml +share/owncloud/lib/composer/zendframework/zend-stdlib/phpcs.xml +share/owncloud/lib/composer/zendframework/zend-stdlib/src/AbstractOptions.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ArrayObject.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ArraySerializableInterface.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ArrayStack.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ArrayUtils.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ArrayUtils/MergeRemoveKey.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKey.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ArrayUtils/MergeReplaceKeyInterface.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ConsoleHelper.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/DispatchableInterface.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ErrorHandler.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Exception/BadMethodCallException.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Exception/DomainException.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Exception/ExceptionInterface.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Exception/ExtensionNotLoadedException.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Exception/InvalidArgumentException.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Exception/LogicException.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Exception/RuntimeException.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/FastPriorityQueue.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Glob.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Guard/AllGuardsTrait.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Guard/ArrayOrTraversableGuardTrait.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Guard/EmptyGuardTrait.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Guard/NullGuardTrait.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/InitializableInterface.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/JsonSerializable.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Message.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/MessageInterface.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ParameterObjectInterface.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Parameters.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ParametersInterface.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/PriorityList.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/PriorityQueue.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Request.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/RequestInterface.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/Response.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/ResponseInterface.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/SplPriorityQueue.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/SplQueue.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/SplStack.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/StringUtils.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/StringWrapper/AbstractStringWrapper.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/StringWrapper/Iconv.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/StringWrapper/Intl.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/StringWrapper/MbString.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/StringWrapper/Native.php +share/owncloud/lib/composer/zendframework/zend-stdlib/src/StringWrapper/StringWrapperInterface.php +share/owncloud/lib/composer/zendframework/zend-validator/CHANGELOG.md +share/owncloud/lib/composer/zendframework/zend-validator/CONDUCT.md +share/owncloud/lib/composer/zendframework/zend-validator/CONTRIBUTING.md +share/owncloud/lib/composer/zendframework/zend-validator/LICENSE.md +share/owncloud/lib/composer/zendframework/zend-validator/README.md +share/owncloud/lib/composer/zendframework/zend-validator/composer.json +share/owncloud/lib/composer/zendframework/zend-validator/composer.lock +share/owncloud/lib/composer/zendframework/zend-validator/mkdocs.yml +share/owncloud/lib/composer/zendframework/zend-validator/phpcs.xml +share/owncloud/lib/composer/zendframework/zend-validator/src/AbstractValidator.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/AbstractAdapter.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/AdapterInterface.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Codabar.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Code128.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Code25.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Code25interleaved.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Code39.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Code39ext.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Code93.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Code93ext.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Ean12.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Ean13.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Ean14.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Ean18.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Ean2.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Ean5.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Ean8.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Gtin12.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Gtin13.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Gtin14.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Identcode.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Intelligentmail.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Issn.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Itf14.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Leitcode.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Planet.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Postnet.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Royalmail.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Sscc.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Upca.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Barcode/Upce.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Between.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Bitwise.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Callback.php +share/owncloud/lib/composer/zendframework/zend-validator/src/ConfigProvider.php +share/owncloud/lib/composer/zendframework/zend-validator/src/CreditCard.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Csrf.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Date.php +share/owncloud/lib/composer/zendframework/zend-validator/src/DateStep.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Db/AbstractDb.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Db/NoRecordExists.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Db/RecordExists.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Digits.php +share/owncloud/lib/composer/zendframework/zend-validator/src/EmailAddress.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Exception/BadMethodCallException.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Exception/ExceptionInterface.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Exception/ExtensionNotLoadedException.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Exception/InvalidArgumentException.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Exception/InvalidMagicMimeFileException.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Exception/RuntimeException.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Explode.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/Count.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/Crc32.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/ExcludeExtension.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/ExcludeMimeType.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/Exists.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/Extension.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/FilesSize.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/Hash.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/ImageSize.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/IsCompressed.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/IsImage.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/Md5.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/MimeType.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/NotExists.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/Sha1.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/Size.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/Upload.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/UploadFile.php +share/owncloud/lib/composer/zendframework/zend-validator/src/File/WordCount.php +share/owncloud/lib/composer/zendframework/zend-validator/src/GpsPoint.php +share/owncloud/lib/composer/zendframework/zend-validator/src/GreaterThan.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Hex.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Hostname.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Hostname/Biz.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Hostname/Cn.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Hostname/Com.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Hostname/Jp.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Iban.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Identical.php +share/owncloud/lib/composer/zendframework/zend-validator/src/InArray.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Ip.php +share/owncloud/lib/composer/zendframework/zend-validator/src/IsCountable.php +share/owncloud/lib/composer/zendframework/zend-validator/src/IsInstanceOf.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Isbn.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Isbn/Isbn10.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Isbn/Isbn13.php +share/owncloud/lib/composer/zendframework/zend-validator/src/LessThan.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Module.php +share/owncloud/lib/composer/zendframework/zend-validator/src/NotEmpty.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Regex.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Sitemap/Changefreq.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Sitemap/Lastmod.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Sitemap/Loc.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Sitemap/Priority.php +share/owncloud/lib/composer/zendframework/zend-validator/src/StaticValidator.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Step.php +share/owncloud/lib/composer/zendframework/zend-validator/src/StringLength.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Timezone.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Translator/TranslatorAwareInterface.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Translator/TranslatorInterface.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Uri.php +share/owncloud/lib/composer/zendframework/zend-validator/src/Uuid.php +share/owncloud/lib/composer/zendframework/zend-validator/src/ValidatorChain.php +share/owncloud/lib/composer/zendframework/zend-validator/src/ValidatorInterface.php +share/owncloud/lib/composer/zendframework/zend-validator/src/ValidatorPluginManager.php +share/owncloud/lib/composer/zendframework/zend-validator/src/ValidatorPluginManagerAwareInterface.php +share/owncloud/lib/composer/zendframework/zend-validator/src/ValidatorPluginManagerFactory.php +share/owncloud/lib/composer/zendframework/zend-validator/src/ValidatorProviderInterface.php share/owncloud/lib/l10n/ach.js share/owncloud/lib/l10n/ach.json share/owncloud/lib/l10n/ady.js @@ -10061,8 +10439,8 @@ share/owncloud/lib/private/DB/MigrationE share/owncloud/lib/private/DB/MigrationService.php share/owncloud/lib/private/DB/Migrator.php share/owncloud/lib/private/DB/MySQLMigrator.php +share/owncloud/lib/private/DB/MySqlSchemaColumnDefinitionListener.php share/owncloud/lib/private/DB/MySqlTools.php -share/owncloud/lib/private/DB/NoCheckMigrator.php share/owncloud/lib/private/DB/OCPostgreSqlPlatform.php share/owncloud/lib/private/DB/OCSqlitePlatform.php share/owncloud/lib/private/DB/OracleConnection.php @@ -10134,6 +10512,7 @@ share/owncloud/lib/private/Files/Externa share/owncloud/lib/private/Files/External/DependencyTrait.php share/owncloud/lib/private/Files/External/FrontendDefinitionTrait.php share/owncloud/lib/private/Files/External/IdentifierTrait.php +share/owncloud/lib/private/Files/External/InvalidStorage.php share/owncloud/lib/private/Files/External/LegacyUtil.php share/owncloud/lib/private/Files/External/MissingDependency.php share/owncloud/lib/private/Files/External/PersonalMount.php @@ -10171,6 +10550,7 @@ share/owncloud/lib/private/Files/ObjectS share/owncloud/lib/private/Files/ObjectStore/NoopScanner.php share/owncloud/lib/private/Files/ObjectStore/ObjectStoreStorage.php share/owncloud/lib/private/Files/ObjectStore/Swift.php +share/owncloud/lib/private/Files/Storage/CacheableFlysystem.php share/owncloud/lib/private/Files/Storage/Common.php share/owncloud/lib/private/Files/Storage/CommonTest.php share/owncloud/lib/private/Files/Storage/DAV.php @@ -10221,10 +10601,12 @@ share/owncloud/lib/private/Hooks/PublicE share/owncloud/lib/private/Http/Client/Client.php share/owncloud/lib/private/Http/Client/ClientService.php share/owncloud/lib/private/Http/Client/Response.php +share/owncloud/lib/private/Http/Client/WebDavClientService.php share/owncloud/lib/private/Image/BmpToResource.php share/owncloud/lib/private/Installer.php share/owncloud/lib/private/IntegrityCheck/Checker.php share/owncloud/lib/private/IntegrityCheck/Exceptions/InvalidSignatureException.php +share/owncloud/lib/private/IntegrityCheck/Exceptions/MissingSignatureException.php share/owncloud/lib/private/IntegrityCheck/Helpers/AppLocator.php share/owncloud/lib/private/IntegrityCheck/Helpers/EnvironmentHelper.php share/owncloud/lib/private/IntegrityCheck/Helpers/FileAccessHelper.php @@ -10265,6 +10647,8 @@ share/owncloud/lib/private/NavigationMan share/owncloud/lib/private/NeedsUpdateException.php share/owncloud/lib/private/NotSquareException.php share/owncloud/lib/private/Notification/Action.php +share/owncloud/lib/private/Notification/Events/RegisterConsumerEventImpl.php +share/owncloud/lib/private/Notification/Events/RegisterNotifierEventImpl.php share/owncloud/lib/private/Notification/Manager.php share/owncloud/lib/private/Notification/Notification.php share/owncloud/lib/private/OCS/Config.php @@ -10279,6 +10663,7 @@ share/owncloud/lib/private/Preview/BMP.p share/owncloud/lib/private/Preview/Bitmap.php share/owncloud/lib/private/Preview/Font.php share/owncloud/lib/private/Preview/GIF.php +share/owncloud/lib/private/Preview/Heic.php share/owncloud/lib/private/Preview/Illustrator.php share/owncloud/lib/private/Preview/Image.php share/owncloud/lib/private/Preview/JPEG.php @@ -10304,9 +10689,9 @@ share/owncloud/lib/private/PreviewManage share/owncloud/lib/private/RedisFactory.php share/owncloud/lib/private/Repair.php share/owncloud/lib/private/Repair/Apps.php -share/owncloud/lib/private/Repair/AvatarPermissions.php share/owncloud/lib/private/Repair/CleanTags.php share/owncloud/lib/private/Repair/Collation.php +share/owncloud/lib/private/Repair/DisableExtraThemes.php share/owncloud/lib/private/Repair/DropOldJobs.php share/owncloud/lib/private/Repair/DropOldTables.php share/owncloud/lib/private/Repair/FillETags.php @@ -10318,6 +10703,9 @@ share/owncloud/lib/private/Repair/Remove share/owncloud/lib/private/Repair/RemoveRootShares.php share/owncloud/lib/private/Repair/RepairInvalidShares.php share/owncloud/lib/private/Repair/RepairMimeTypes.php +share/owncloud/lib/private/Repair/RepairMismatchFileCachePath.php +share/owncloud/lib/private/Repair/RepairOrphanedSubshare.php +share/owncloud/lib/private/Repair/RepairSubShares.php share/owncloud/lib/private/Repair/RepairUnmergedShares.php share/owncloud/lib/private/Repair/SearchLuceneTables.php share/owncloud/lib/private/Repair/SharePropagation.php @@ -10365,6 +10753,7 @@ share/owncloud/lib/private/Setup/OCI.php share/owncloud/lib/private/Setup/PostgreSQL.php share/owncloud/lib/private/Setup/Sqlite.php share/owncloud/lib/private/Share/Constants.php +share/owncloud/lib/private/Share/Filters/MailNotificationFilter.php share/owncloud/lib/private/Share/Helper.php share/owncloud/lib/private/Share/MailNotifications.php share/owncloud/lib/private/Share/SearchResultSorter.php @@ -10406,13 +10795,18 @@ share/owncloud/lib/private/User/AccountM share/owncloud/lib/private/User/AccountTerm.php share/owncloud/lib/private/User/AccountTermMapper.php share/owncloud/lib/private/User/Backend.php +share/owncloud/lib/private/User/BasicAuthModule.php share/owncloud/lib/private/User/Database.php share/owncloud/lib/private/User/LoginException.php share/owncloud/lib/private/User/Manager.php share/owncloud/lib/private/User/NoUserException.php share/owncloud/lib/private/User/RemoteUser.php share/owncloud/lib/private/User/Session.php +share/owncloud/lib/private/User/Sync/AllUsersIterator.php +share/owncloud/lib/private/User/Sync/SeenUsersIterator.php +share/owncloud/lib/private/User/Sync/UsersIterator.php share/owncloud/lib/private/User/SyncService.php +share/owncloud/lib/private/User/TokenAuthModule.php share/owncloud/lib/private/User/User.php share/owncloud/lib/private/legacy/api.php share/owncloud/lib/private/legacy/app.php @@ -10453,6 +10847,7 @@ share/owncloud/lib/public/App/AppNotFoun share/owncloud/lib/public/App/AppNotInstalledException.php share/owncloud/lib/public/App/AppUpdateNotFoundException.php share/owncloud/lib/public/App/IAppManager.php +share/owncloud/lib/public/App/IServiceLoader.php share/owncloud/lib/public/App/ManagerEvent.php share/owncloud/lib/public/AppFramework/ApiController.php share/owncloud/lib/public/AppFramework/App.php @@ -10526,6 +10921,7 @@ share/owncloud/lib/public/Encryption/IEn share/owncloud/lib/public/Encryption/IFile.php share/owncloud/lib/public/Encryption/IManager.php share/owncloud/lib/public/Encryption/Keys/IStorage.php +share/owncloud/lib/public/Events/EventEmitterTrait.php share/owncloud/lib/public/Files.php share/owncloud/lib/public/Files/AlreadyExistsException.php share/owncloud/lib/public/Files/Cache/ICache.php @@ -10542,7 +10938,9 @@ share/owncloud/lib/public/Files/Config/I share/owncloud/lib/public/Files/EntityTooLargeException.php share/owncloud/lib/public/Files/External/Auth/AuthMechanism.php share/owncloud/lib/public/Files/External/Auth/IUserProvided.php +share/owncloud/lib/public/Files/External/Auth/InvalidAuth.php share/owncloud/lib/public/Files/External/Backend/Backend.php +share/owncloud/lib/public/Files/External/Backend/InvalidBackend.php share/owncloud/lib/public/Files/External/Config/IAuthMechanismProvider.php share/owncloud/lib/public/Files/External/Config/IBackendProvider.php share/owncloud/lib/public/Files/External/DefinitionParameter.php @@ -10555,6 +10953,7 @@ share/owncloud/lib/public/Files/External share/owncloud/lib/public/Files/External/Service/IUserGlobalStoragesService.php share/owncloud/lib/public/Files/External/Service/IUserStoragesService.php share/owncloud/lib/public/Files/File.php +share/owncloud/lib/public/Files/FileContentNotAllowedException.php share/owncloud/lib/public/Files/FileInfo.php share/owncloud/lib/public/Files/FileNameTooLongException.php share/owncloud/lib/public/Files/Folder.php @@ -10569,6 +10968,7 @@ share/owncloud/lib/public/Files/InvalidP share/owncloud/lib/public/Files/LockNotAcquiredException.php share/owncloud/lib/public/Files/Mount/IMountManager.php share/owncloud/lib/public/Files/Mount/IMountPoint.php +share/owncloud/lib/public/Files/NoReadAccessException.php share/owncloud/lib/public/Files/Node.php share/owncloud/lib/public/Files/NotEnoughSpaceException.php share/owncloud/lib/public/Files/NotFoundException.php @@ -10576,6 +10976,7 @@ share/owncloud/lib/public/Files/NotPermi share/owncloud/lib/public/Files/ObjectStore/IObjectStore.php share/owncloud/lib/public/Files/ReservedWordException.php share/owncloud/lib/public/Files/Storage.php +share/owncloud/lib/public/Files/Storage/CacheableFlysystemAdapter.php share/owncloud/lib/public/Files/Storage/FlysystemStorageAdapter.php share/owncloud/lib/public/Files/Storage/ILockingStorage.php share/owncloud/lib/public/Files/Storage/IStorage.php @@ -10593,6 +10994,7 @@ share/owncloud/lib/public/GroupInterface share/owncloud/lib/public/Http/Client/IClient.php share/owncloud/lib/public/Http/Client/IClientService.php share/owncloud/lib/public/Http/Client/IResponse.php +share/owncloud/lib/public/Http/Client/IWebDavClientService.php share/owncloud/lib/public/IAddressBook.php share/owncloud/lib/public/IAppConfig.php share/owncloud/lib/public/IAvatar.php @@ -10641,6 +11043,9 @@ share/owncloud/lib/public/Migration/IRep share/owncloud/lib/public/Migration/ISchemaMigration.php share/owncloud/lib/public/Migration/ISimpleMigration.php share/owncloud/lib/public/Migration/ISqlMigration.php +share/owncloud/lib/public/Notification/Events/RegisterConsumerEvent.php +share/owncloud/lib/public/Notification/Events/RegisterNotifierEvent.php +share/owncloud/lib/public/Notification/Exceptions/NotifierIdInUseException.php share/owncloud/lib/public/Notification/IAction.php share/owncloud/lib/public/Notification/IApp.php share/owncloud/lib/public/Notification/IManager.php @@ -10693,11 +11098,14 @@ share/owncloud/lib/public/Theme/ITheme.p share/owncloud/lib/public/Theme/IThemeService.php share/owncloud/lib/public/User.php share/owncloud/lib/public/User/IChangePasswordBackend.php +share/owncloud/lib/public/User/IProvidesDisplayNameBackend.php share/owncloud/lib/public/User/IProvidesEMailBackend.php share/owncloud/lib/public/User/IProvidesExtendedSearchBackend.php +share/owncloud/lib/public/User/IProvidesHomeBackend.php share/owncloud/lib/public/User/IProvidesQuotaBackend.php share/owncloud/lib/public/UserInterface.php share/owncloud/lib/public/Util.php +share/owncloud/lib/public/Util/UserSearch.php share/owncloud/occ share/owncloud/ocs-provider/index.php share/owncloud/ocs/providers.php @@ -10719,6 +11127,7 @@ share/owncloud/settings/Controller/AppSe share/owncloud/settings/Controller/AuthSettingsController.php share/owncloud/settings/Controller/CertificateController.php share/owncloud/settings/Controller/CheckSetupController.php +share/owncloud/settings/Controller/CorsController.php share/owncloud/settings/Controller/EncryptionController.php share/owncloud/settings/Controller/GroupsController.php share/owncloud/settings/Controller/LogSettingsController.php @@ -10740,6 +11149,7 @@ share/owncloud/settings/Panels/Admin/Tip share/owncloud/settings/Panels/Helper.php share/owncloud/settings/Panels/Legacy.php share/owncloud/settings/Panels/Personal/Clients.php +share/owncloud/settings/Panels/Personal/Cors.php share/owncloud/settings/Panels/Personal/Legacy.php share/owncloud/settings/Panels/Personal/Profile.php share/owncloud/settings/Panels/Personal/Quota.php @@ -10774,6 +11184,7 @@ share/owncloud/settings/js/panels/authto share/owncloud/settings/js/panels/authtoken_collection.js share/owncloud/settings/js/panels/authtoken_view.js share/owncloud/settings/js/panels/backgroundjobs.js +share/owncloud/settings/js/panels/cors.js share/owncloud/settings/js/panels/encryption.js share/owncloud/settings/js/panels/mail.js share/owncloud/settings/js/panels/profile.js @@ -10973,6 +11384,7 @@ share/owncloud/settings/templates/panels share/owncloud/settings/templates/panels/admin/tips.php share/owncloud/settings/templates/panels/legacy.php share/owncloud/settings/templates/panels/personal/clients.php +share/owncloud/settings/templates/panels/personal/cors.php share/owncloud/settings/templates/panels/personal/profile.php share/owncloud/settings/templates/panels/personal/quota.php share/owncloud/settings/templates/panels/personal/settings.development.notice.php Index: pkgsrc/www/php-owncloud/distinfo diff -u pkgsrc/www/php-owncloud/distinfo:1.42 pkgsrc/www/php-owncloud/distinfo:1.43 --- pkgsrc/www/php-owncloud/distinfo:1.42 Sat Oct 7 13:04:57 2017 +++ pkgsrc/www/php-owncloud/distinfo Thu Jun 21 23:22:51 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.42 2017/10/07 13:04:57 wen Exp $ +$NetBSD: distinfo,v 1.43 2018/06/21 23:22:51 ryoon Exp $ -SHA1 (owncloud-10.0.3.tar.bz2) = 0b89d0fb8e6566c40c77f6de6b79f13a7ad089d1 -RMD160 (owncloud-10.0.3.tar.bz2) = 9b8b2eed91c643c79d4fbb2f278130c3f797a8d5 -SHA512 (owncloud-10.0.3.tar.bz2) = bafba0416182bc4051e2664c0d2b328912c8c7c49b42f8f6e9540fab40ec5d49c592f84d639ef32380291cbe4d8b8acce4b40dba8a6c9e2440c29fd9943b274a -Size (owncloud-10.0.3.tar.bz2) = 35358244 bytes +SHA1 (owncloud-10.0.8.tar.bz2) = 49099663f1de431bbfd3d7ef2a578c1390685ea7 +RMD160 (owncloud-10.0.8.tar.bz2) = ee33aa4bc023a409ccf3ce1fe2788a4562d0e860 +SHA512 (owncloud-10.0.8.tar.bz2) = aebefb0051a1478f6da307c92d983c131b2e15c496fcc628569282875e2b21554a94e5f4ad335a11c1eb18be1987b15eaa033fdfa62cfdc1467a905b7e96211a +Size (owncloud-10.0.8.tar.bz2) = 40671279 bytes --_----------=_1529623371254490--