summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/comments/appinfo/info.xml3
-rw-r--r--apps/dav/appinfo/info.xml1
-rw-r--r--apps/encryption/appinfo/info.xml2
-rw-r--r--apps/files/appinfo/info.xml1
-rw-r--r--apps/systemtags/appinfo/info.xml3
-rw-r--r--tests/lib/appframework/AppTest.php6
6 files changed, 4 insertions, 12 deletions
diff --git a/apps/comments/appinfo/info.xml b/apps/comments/appinfo/info.xml
index 550c79448cf..f3693150639 100644
--- a/apps/comments/appinfo/info.xml
+++ b/apps/comments/appinfo/info.xml
@@ -10,7 +10,4 @@
<dependencies>
<owncloud min-version="9.0" max-version="9.0" />
</dependencies>
- <documentation>
- <user>user-comments</user>
- </documentation>
</info>
diff --git a/apps/dav/appinfo/info.xml b/apps/dav/appinfo/info.xml
index 3a38feab59e..f035d19d862 100644
--- a/apps/dav/appinfo/info.xml
+++ b/apps/dav/appinfo/info.xml
@@ -6,7 +6,6 @@
<licence>AGPL</licence>
<author>owncloud.org</author>
<version>0.1.4</version>
- <standalone/>
<default_enable/>
<types>
<filesystem/>
diff --git a/apps/encryption/appinfo/info.xml b/apps/encryption/appinfo/info.xml
index 1fb4e93c508..970b58e3898 100644
--- a/apps/encryption/appinfo/info.xml
+++ b/apps/encryption/appinfo/info.xml
@@ -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>
diff --git a/apps/files/appinfo/info.xml b/apps/files/appinfo/info.xml
index c0db1783235..136baa2ed07 100644
--- a/apps/files/appinfo/info.xml
+++ b/apps/files/appinfo/info.xml
@@ -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>
diff --git a/apps/systemtags/appinfo/info.xml b/apps/systemtags/appinfo/info.xml
index 5da945db703..d0b4c1fce00 100644
--- a/apps/systemtags/appinfo/info.xml
+++ b/apps/systemtags/appinfo/info.xml
@@ -10,9 +10,6 @@
<dependencies>
<owncloud min-version="9.0" max-version="9.0" />
</dependencies>
- <documentation>
- <user>user-systemtags</user>
- </documentation>
<types>
<logging/>
</types>
diff --git a/tests/lib/appframework/AppTest.php b/tests/lib/appframework/AppTest.php
index 7cba0e6db6b..3d41d6590aa 100644
--- a/tests/lib/appframework/AppTest.php
+++ b/tests/lib/appframework/AppTest.php
@@ -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>' .