mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
Merge pull request #22098 from owncloud/cleanup-core-apps
Cleanup core apps
This commit is contained in:
commit
74abbbc0d6
6 changed files with 4 additions and 12 deletions
|
|
@ -10,7 +10,4 @@
|
|||
<dependencies>
|
||||
<owncloud min-version="9.0" max-version="9.0" />
|
||||
</dependencies>
|
||||
<documentation>
|
||||
<user>user-comments</user>
|
||||
</documentation>
|
||||
</info>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@
|
|||
<licence>AGPL</licence>
|
||||
<author>owncloud.org</author>
|
||||
<version>0.1.4</version>
|
||||
<standalone/>
|
||||
<default_enable/>
|
||||
<types>
|
||||
<filesystem/>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
to enable server-side encryption.
|
||||
</description>
|
||||
<name>Default encryption module</name>
|
||||
<license>AGPL</license>
|
||||
<licence>AGPL</licence>
|
||||
<author>Bjoern Schiessle, Clark Tomlinson</author>
|
||||
<documentation>
|
||||
<user>user-encryption</user>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
<description>File Management</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Robin Appelman, Vincent Petry</author>
|
||||
<standalone/>
|
||||
<default_enable/>
|
||||
<version>1.4.2</version>
|
||||
<types>
|
||||
|
|
|
|||
|
|
@ -10,9 +10,6 @@
|
|||
<dependencies>
|
||||
<owncloud min-version="9.0" max-version="9.0" />
|
||||
</dependencies>
|
||||
<documentation>
|
||||
<user>user-systemtags</user>
|
||||
</documentation>
|
||||
<types>
|
||||
<logging/>
|
||||
</types>
|
||||
|
|
|
|||
|
|
@ -79,9 +79,9 @@ class AppTest extends \Test\TestCase {
|
|||
$this->container['OCP\\AppFramework\\Http\\IOutput'] = $this->io;
|
||||
$this->container['urlParams'] = array();
|
||||
|
||||
$this->appPath = __DIR__ . '/../../../apps/namespacetestapp/appinfo';
|
||||
$infoXmlPath = $this->appPath . '/info.xml';
|
||||
mkdir($this->appPath, 0777, true);
|
||||
$this->appPath = __DIR__ . '/../../../apps/namespacetestapp';
|
||||
$infoXmlPath = $this->appPath . '/appinfo/info.xml';
|
||||
mkdir($this->appPath . '/appinfo', 0777, true);
|
||||
|
||||
$xml = '<?xml version="1.0" encoding="UTF-8"?>' .
|
||||
'<info>' .
|
||||
|
|
|
|||
Loading…
Reference in a new issue