summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-04-09 01:44:12 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-04-09 22:52:26 +0200
commit21bd539847f33c3889c4f58f14afd672f54a410a (patch)
treed6ff27e38727197b60d1c2c47968b7f64d4f5c2f /appinfo
parentfcef0800a24818305e8a52761b05f87e13206689 (diff)
ported to owncloud internal appframework classes, confused with how to start the app and define deps
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/app.php2
-rw-r--r--appinfo/info.xml2
-rw-r--r--appinfo/routes.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/appinfo/app.php b/appinfo/app.php
index 6e9d0396d..b68ed51f0 100644
--- a/appinfo/app.php
+++ b/appinfo/app.php
@@ -24,7 +24,7 @@
namespace OCA\News;
-use \OCA\AppFramework\Core\API;
+use \OCA\News\Core\API;
// dont break owncloud when the appframework is not enabled
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 6b8dbb08a..76cbb4521 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -2,7 +2,7 @@
<info>
<id>news</id>
<name>News</name>
- <description>An RSS/Atom feed reader. Requires the App Framework app and backgroundjobs need to be enabled. See the README.rst in the apps top directory</description>
+ <description>An RSS/Atom feed reader. Requires ownCloud backgroundjobs or an updater script to be enabled to update your feeds. See the README.rst in the apps top directory</description>
<licence>AGPL</licence>
<author>Alessandro Cosentino, Bernhard Posselt, Jan-Christoph Borchardt. Powered by SimplePie (Ryan Parman, Geoffrey Sneddon, Ryan McCue and contributors).</author>
<version>1.809</version>
diff --git a/appinfo/routes.php b/appinfo/routes.php
index fc60a717c..1eb0af953 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -25,7 +25,7 @@
namespace OCA\News;
-use \OCA\AppFramework\App;
+use \OCP\AppFramework\App;
use \OCA\News\DependencyInjection\DIContainer;