Remove url prefix pt 2 (#5014)

* Migrate the non blog posts to use no domain

* Update demo links

* Remove Zanzito references from owntracks docs
This commit is contained in:
Paulus Schoutsen 2018-03-24 22:14:34 -07:00 committed by GitHub
parent d3fc349b50
commit 41955dc31a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
102 changed files with 243 additions and 257 deletions

View file

@ -42,11 +42,11 @@ Message to two devices with formatted text.
"message": "Attention [b]bold[/b] text[br][url=https://www.pushsafer.com]Link to Pushsafer[/url]",
"target": ["1111", "2222"],
"data": {
"icon": "2",
"icon": "2",
"iconcolor": "#FF0000",
"sound": "2",
"vibration": "1",
"url": "https://home-assistant.io/",
"url": "https://www.home-assistant.io/",
"urltitle": "Open Home Assistant",
"time2live": "0"
}
@ -58,18 +58,18 @@ Message to one device with formatted text and image from an external URL.
```json
{
"title": "Test to 1 device with image from an url",
"message": "Attention [i]italic[/i] Text[br][url=https://home-assistant.io/]Testlink[/url]",
"message": "Attention [i]italic[/i] Text[br][url=https://www.home-assistant.io/]Testlink[/url]",
"target": ["1111"],
"data": {
"icon": "14",
"icon": "14",
"iconcolor": "#FFFF00",
"sound": "22",
"vibration": "3",
"url": "https://home-assistant.io/",
"url": "https://www.home-assistant.io/",
"urltitle": "Open Home Assistant",
"time2live": "60",
"picture1": {
"url":"https://home-assistant.io/images/components/alexa/alexa-512x512.png"
"url":"https://www.home-assistant.io/images/components/alexa/alexa-512x512.png"
}
}
}
@ -80,14 +80,14 @@ Message to two devices and one device group with formatted text and local image.
```json
{
"title": "Test to 3 devices with local image",
"message": "Attention [i]italic[/i] Text[br][url=https://home-assistant.io/]Testlink[/url]",
"message": "Attention [i]italic[/i] Text[br][url=https://www.home-assistant.io/]Testlink[/url]",
"target": ["1111","2222","gs3333"],
"data": {
"icon": "20",
"icon": "20",
"iconcolor": "#FF00FF",
"sound": "33",
"vibration": "0",
"url": "https://home-assistant.io/",
"url": "https://www.home-assistant.io/",
"urltitle": "Open Home Assistant",
"time2live": "10",
"picture1": {
@ -99,6 +99,6 @@ Message to two devices and one device group with formatted text and local image.
To customize your push-notification you can take a look at the [Pushsafer API description](https://www.pushsafer.com/en/pushapi).
When setting up the application you can use this [icon](https://home-assistant.io/images/favicon-192x192.png).
When setting up the application you can use this [icon](/images/favicon-192x192.png).
To use notifications, please see the [getting started with automation page](/getting-started/automation/).