Merge pull request #22098 from owncloud/cleanup-core-apps

Cleanup core apps
This commit is contained in:
Thomas Müller 2016-02-03 14:17:10 +01:00
commit 74abbbc0d6
6 changed files with 4 additions and 12 deletions

View file

@ -10,7 +10,4 @@
<dependencies>
<owncloud min-version="9.0" max-version="9.0" />
</dependencies>
<documentation>
<user>user-comments</user>
</documentation>
</info>

View file

@ -6,7 +6,6 @@
<licence>AGPL</licence>
<author>owncloud.org</author>
<version>0.1.4</version>
<standalone/>
<default_enable/>
<types>
<filesystem/>

View file

@ -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>

View file

@ -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>

View file

@ -10,9 +10,6 @@
<dependencies>
<owncloud min-version="9.0" max-version="9.0" />
</dependencies>
<documentation>
<user>user-systemtags</user>
</documentation>
<types>
<logging/>
</types>

View file

@ -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>' .