summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 22:02:21 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 22:02:21 +0200
commit38e657a5d5791919937ca8e0deb2460aaa103883 (patch)
tree9ed2ac42065fe483606d3236cf0c4ad1c1077935 /docs
parentcb8f28b4d0b005d3e915b6d027683084739df3bb (diff)
removing owncloud references and updating links
Diffstat (limited to 'docs')
-rw-r--r--docs/explore/README.md20
-rw-r--r--docs/externalapi/Legacy.md8
-rw-r--r--docs/plugins/README.md2
3 files changed, 14 insertions, 16 deletions
diff --git a/docs/explore/README.md b/docs/explore/README.md
index 37b449544..c377e343b 100644
--- a/docs/explore/README.md
+++ b/docs/explore/README.md
@@ -2,7 +2,7 @@
The News app uses a JSON format to display the feeds in the explore feed section.
-The feeds are stored in a JSON file in the [explore](https://github.com/nextcloud/news/tree/master/explore/feeds) folder and are localized based on their filename, meaning: feeds.en.json will only be shown for English localized Nextcloud installations, feeds.de.json only for German installations. If no other localization exists, the feeds.en.json will be taken.
+The feeds are stored in a JSON file in the [explore](https://github.com/nextcloud/news/tree/master/lib/Explore/feeds) folder and are localized based on their filename, meaning: feeds.en.json will only be shown for English localized Nextcloud installations, feeds.de.json only for German installations. If no other localization exists, the feeds.en.json will be taken.
You can also provide your own explore service.
@@ -11,16 +11,14 @@ You can also provide your own explore service.
The file has the following format:
```js
{
- "Tech": [ // category
- {
- "title": "ownCloud Planet",
- "url": "http://owncloud.org/news/", // link to the page so the user can view it
- "feed": "http://owncloud.org/feed/", // link to the exact feed location so we can test if the user uses it already
- "description": "ownCloud Planet is a feed aggregator",
- "votes": 3121, // the higher the vote count, the further up the entry will appear
- "favicon": "http://owncloud.org/wp-content/themes/owncloudorgnew/assets/img/common/favicon.png", // optional
- }, // etc
- ]
+ "Nextcloud": [{ // category
+ "title": "Nextcloud Planet",
+ "favicon": "https://nextcloud.com/contribook/main/images/nextcloud/100.png",
+ "url": "https://nextcloud.com/news/",
+ "feed": "https://nextcloud.com/feed/",
+ "description": "Nextcloud Planet is a blog feed aggregator",
+ "votes": 1000
+ }],
}
```
diff --git a/docs/externalapi/Legacy.md b/docs/externalapi/Legacy.md
index 6b4afc2c3..d376d9593 100644
--- a/docs/externalapi/Legacy.md
+++ b/docs/externalapi/Legacy.md
@@ -642,7 +642,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar
**New in 8.1.0**: The console command for achieving the same result is:
- php -f owncloud/occ news:updater:before-update
+ php -f nextcloud/occ news:updater:before-update
## Get feed ids and usernames for all feeds
@@ -665,7 +665,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar
**New in 8.1.0**: The console command for achieving the same result is:
- php -f owncloud/occ news:updater:all-feeds
+ php -f nextcloud/occ news:updater:all-feeds
## Trigger a feed update
@@ -687,7 +687,7 @@ This is used to clean up the database. It deletes folders and feeds that are mar
**New in 8.1.0**: The console command for achieving the same result is:
- php -f owncloud/occ news:updater:update-feed 3 john
+ php -f nextcloud/occ news:updater:update-feed 3 john
## Trigger cleanup after update
This is used to clean up the database. It removes old read articles which are not starred
@@ -700,7 +700,7 @@ This is used to clean up the database. It removes old read articles which are no
**New in 8.1.0**: The console command for achieving the same result is:
- php -f owncloud/occ news:updater:after-update
+ php -f nextcloud/occ news:updater:after-update
# Version
diff --git a/docs/plugins/README.md b/docs/plugins/README.md
index 4116de3d7..814dc402f 100644
--- a/docs/plugins/README.md
+++ b/docs/plugins/README.md
@@ -8,7 +8,7 @@ There are essentially three different use cases for plugins:
* Dropping in additional CSS or JavaScript
## The Basics
-Whatever plugin you want to create, you first need to create a basic structure. A plugin is basically just an app so you can take advantage of the full [Nextcloud app API](https://doc.owncloud.org/server/9.0/developer_manual/app/index.html). If you want you can [take a look at the developer docs](https://doc.owncloud.org/server/9.0/developer_manual/app/index.html) or [dig into the tutorial](http://doc.owncloud.org/server/9.0/developer_manual/app/appframework/tutorial.html).
+Whatever plugin you want to create, you first need to create a basic structure. A plugin is basically just an app so you can take advantage of the full [Nextcloud app API](https://docs.nextcloud.org/server/9/developer_manual/app/index.html). If you want you can [take a look at the developer docs](https://docs.nextcloud.org/server/9/developer_manual/app/index.html) or [dig into the tutorial](https://docs.nextcloud.org/server/9/developer_manual/app/tutorial.html).
However if you just want to start slow, the full process is described below.