Site updated at 2015-07-11 19:30:25 UTC

This commit is contained in:
Paulus Schoutsen 2015-07-11 12:30:25 -07:00
parent 5325860475
commit 51e2a43dfb
10 changed files with 108 additions and 104 deletions

View file

@ -4,7 +4,7 @@
<title><![CDATA[Home Assistant]]></title>
<link href="https://home-assistant.io/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-07-11T12:02:15-07:00</updated>
<updated>2015-07-11T12:30:17-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: architecture | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/architecture/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-07-11T12:02:15-07:00</updated>
<updated>2015-07-11T12:30:17-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: branding | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/branding/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-07-11T12:02:15-07:00</updated>
<updated>2015-07-11T12:30:17-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: component | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/component/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-07-11T12:02:15-07:00</updated>
<updated>2015-07-11T12:30:17-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: core | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/core/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-07-11T12:02:15-07:00</updated>
<updated>2015-07-11T12:30:17-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: frontend | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/frontend/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-07-11T12:02:15-07:00</updated>
<updated>2015-07-11T12:30:17-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: release-notes | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/release-notes/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-07-11T12:02:15-07:00</updated>
<updated>2015-07-11T12:30:17-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: website | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/website/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-07-11T12:02:15-07:00</updated>
<updated>2015-07-11T12:30:17-07:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -6534,9 +6534,6 @@ function(t,e,n){function r(t){return null==t?!1:i(t)?l.test(s.call(t)):u(t)&&o.t
var DOMAINS_WITH_MORE_INFO = [
'light', 'group', 'sun', 'configurator', 'thermostat', 'script', 'media_player', 'camera'
];
var DOMAINS_HIDE_MORE_INFO = [
'sensor',
];
var reactor = window.hass.reactor;
var serviceGetters = window.hass.serviceGetters;
@ -6565,9 +6562,7 @@ function(t,e,n){function r(t){return null==t?!1:i(t)?l.test(s.call(t)):u(t)&&o.t
},
stateMoreInfoType: function(state) {
if(DOMAINS_HIDE_MORE_INFO.indexOf(state.domain) !== -1) {
return false;
} else if(DOMAINS_WITH_MORE_INFO.indexOf(state.domain) !== -1) {
if(DOMAINS_WITH_MORE_INFO.indexOf(state.domain) !== -1) {
return state.domain;
} else {
return 'default';
@ -22978,7 +22973,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
</style>
<template>
<div class="layout vertical">
<template is="dom-repeat" items="[[getAttributes(stateObj)]]" as="attribute">
<template is="dom-repeat" items="[[computeDisplayAttributes(stateObj)]]" as="attribute">
<div class="data-entry layout justified horizontal">
<div class="key">[[attribute]]</div>
<div class="value">[[getAttributeValue(stateObj, attribute)]]</div>
@ -22990,6 +22985,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<script>
(function() {
var FILTER_KEYS = ['entity_picture', 'friendly_name', 'unit_of_measurement'];
Polymer({
is: 'more-info-default',
@ -22999,8 +22996,14 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
},
},
getAttributes: function(stateObj) {
return stateObj ? Object.keys(stateObj.attributes) : [];
computeDisplayAttributes: function(stateObj) {
if (!stateObj) {
return [];
}
return Object.keys(stateObj.attributes).filter(function(key) {
return FILTER_KEYS.indexOf(key) === -1;
});
},
getAttributeValue: function(stateObj, attribute) {
@ -24765,15 +24768,16 @@ paper-ripple {
stateObjChanged: function(newVal, oldVal) {
var root = Polymer.dom(this);
var newMoreInfoType;
if (!newVal || !(newMoreInfoType = uiUtil.stateMoreInfoType(newVal))) {
if (!newVal) {
if (root.lastChild) {
root.removeChild(root.lastChild);
}
return;
}
var newMoreInfoType = uiUtil.stateMoreInfoType(newVal);
if (!oldVal || uiUtil.stateMoreInfoType(oldVal) != newMoreInfoType) {
if (root.lastChild) {

View file

@ -87,511 +87,511 @@
</url>
<url>
<loc>https://home-assistant.io/developers/add_new_platform.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/getting-started/android.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/api.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/architecture.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/arduino.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/automation.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/browser.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/camera.generic.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/getting-started/configuration.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/configurator.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/conversation.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/creating_components.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/credits.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_sun_light_trigger.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.ddwrt.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.luci.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.netgear.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.nmap_scanner.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.tomato.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/device_tracker.tplink.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/discovery.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/downloader.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/frontend.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/group.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/history.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://home-assistant.io/blog/archives/</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/blog/</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/getting-started/</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/help/</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/isy994.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/keyboard.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/light.hue.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/light.limitlessled.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/light.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/logbook.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/media_player.cast.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/media_player.kodi.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/media_player.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/media_player.mpd.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/modbus.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.file.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.instapush.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.nma.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.pushbullet.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.pushover.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.smtp.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.syslog.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/notify.xmpp.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/python_api.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/rest_api.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/scene.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/scheduler.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/script.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.bitcoin.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.efergy.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.forecast.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.mysensors.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.openweathermap.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.sabnzbd.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.swiss_public_transport.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.systemmonitor.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.time_date.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sensor.transmission.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/simple_alarm.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/sun.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/switch.command_switch.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/switch.hikvision.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/switch.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/switch.transmission.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/switch.wemo.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/tellstick.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/thermostat.heat_control.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/thermostat.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/thermostat.nest.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/getting-started/troubleshooting.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/vera.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/developers/website.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/wink.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/components/zwave.html</loc>
<lastmod>2015-07-11T12:02:15-07:00</lastmod>
<lastmod>2015-07-11T12:30:17-07:00</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://home-assistant.io/demo/frontend.html</loc>
<lastmod>2015-07-11T11:58:29-07:00</lastmod>
<lastmod>2015-07-11T12:29:02-07:00</lastmod>
<priority>0.6</priority>
</url>
<url>