Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-02-07 18:04:45 +0300
committerJoas Schilling <coding@schilljs.com>2018-02-16 12:24:03 +0300
commitf095001e4b29229576f7f74881b78bf9b1db2c85 (patch)
tree1dc393de9b83980596b7bad57204502f70e40273 /apps/encryption/appinfo
parent17a26dfcc1f4d02b54e6cbb500f41bbe25609f1e (diff)
Fix info.xml files of shipped apps
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/encryption/appinfo')
-rw-r--r--apps/encryption/appinfo/info.xml40
1 files changed, 24 insertions, 16 deletions
diff --git a/apps/encryption/appinfo/info.xml b/apps/encryption/appinfo/info.xml
index 5744e5d2d66..2859043e72b 100644
--- a/apps/encryption/appinfo/info.xml
+++ b/apps/encryption/appinfo/info.xml
@@ -1,6 +1,9 @@
<?xml version="1.0"?>
-<info>
+<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>encryption</id>
+ <name>Default encryption module</name>
+ <summary>Default encryption module for server-side encryption</summary>
<description>
In order to use this encryption module you need to enable server-side
encryption in the admin settings. Once enabled this module will encrypt
@@ -11,35 +14,40 @@
Please read the documentation to know all implications before you decide
to enable server-side encryption.
</description>
- <name>Default encryption module</name>
- <licence>AGPL</licence>
+ <version>2.1.0</version>
+ <licence>agpl</licence>
<author>Bjoern Schiessle</author>
<author>Clark Tomlinson</author>
+ <types>
+ <filesystem/>
+ </types>
<documentation>
<user>user-encryption</user>
<admin>admin-encryption</admin>
</documentation>
- <version>2.1.0</version>
- <types>
- <filesystem/>
- </types>
+ <category>files</category>
+ <category>security</category>
+ <bugs>https://github.com/nextcloud/server/issues</bugs>
+
<dependencies>
<lib>openssl</lib>
<nextcloud min-version="14" max-version="14" />
</dependencies>
- <settings>
- <admin>OCA\Encryption\Settings\Admin</admin>
- <personal>OCA\Encryption\Settings\Personal</personal>
- </settings>
- <commands>
- <command>OCA\Encryption\Command\EnableMasterKey</command>
- <command>OCA\Encryption\Command\DisableMasterKey</command>
- <command>OCA\Encryption\Command\MigrateKeys</command>
- </commands>
<repair-steps>
<post-migration>
<step>OCA\Encryption\Migration\SetMasterKeyStatus</step>
</post-migration>
</repair-steps>
+
+ <commands>
+ <command>OCA\Encryption\Command\EnableMasterKey</command>
+ <command>OCA\Encryption\Command\DisableMasterKey</command>
+ <command>OCA\Encryption\Command\MigrateKeys</command>
+ </commands>
+
+ <settings>
+ <admin>OCA\Encryption\Settings\Admin</admin>
+ <personal>OCA\Encryption\Settings\Personal</personal>
+ </settings>
</info>