pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/php-owncloud Update to 10.0.8



details:   https://anonhg.NetBSD.org/pkgsrc/rev/95a8795ba216
branches:  trunk
changeset: 309682:95a8795ba216
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Thu Jun 21 23:22:51 2018 +0000

description:
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: <https://github.com/owncloud/documentation/issues/3738>`_
    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

diffstat:

 www/php-owncloud/Makefile |     4 +-
 www/php-owncloud/PLIST    |  2576 ++++++++++++++++++++++++++------------------
 www/php-owncloud/distinfo |    10 +-
 3 files changed, 1501 insertions(+), 1089 deletions(-)

diffs (truncated from 3418 to 300 lines):

diff -r f2009b15e7a9 -r 95a8795ba216 www/php-owncloud/Makefile
--- a/www/php-owncloud/Makefile Thu Jun 21 23:14:13 2018 +0000
+++ b/www/php-owncloud/Makefile Thu Jun 21 23:22:51 2018 +0000
@@ -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/
diff -r f2009b15e7a9 -r 95a8795ba216 www/php-owncloud/PLIST
--- a/www/php-owncloud/PLIST    Thu Jun 21 23:14:13 2018 +0000
+++ b/www/php-owncloud/PLIST    Thu Jun 21 23:22:51 2018 +0000
@@ -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/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/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/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/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/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/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/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_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/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/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/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@localhost
-share/owncloud/apps/files_antivirus/l10n/sr%latin.json@localhost
-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



Home | Main Index | Thread Index | Old Index