mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 01:06:52 +00:00
Add menu and new entries (#2841)
This commit is contained in:
parent
6a34abd589
commit
37dc43dc40
16
source/_faq/after-upgrading.markdown
Normal file
16
source/_faq/after-upgrading.markdown
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
layout: page
|
||||
title: "After upgrading, your browser login gets stuck"
|
||||
description: "After upgrading, your browser login gets stuck"
|
||||
date: 2017-06-18 09:00
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
ha_category: Usage
|
||||
---
|
||||
|
||||
|
||||
After upgrading to a new version, you may notice your browser gets stuck at the "loading data" login screen. Close the window/tab and go into your browser settings and delete all the cookies for your URL. You can then log back in and it should work.
|
||||
|
||||
Android Chrome
|
||||
chrome -> settings -> site settings -> storage -> search for your URL for home assistant-> "clear & reset"
|
@ -1,9 +1,8 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Component"
|
||||
title: "My component does not show up"
|
||||
description: "My component does not show up"
|
||||
date: 2017-06-18 09:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
|
13
source/_faq/dependencies.markdown
Normal file
13
source/_faq/dependencies.markdown
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Dependencies"
|
||||
description: "Dependencies"
|
||||
date: 2017-06-18 09:00
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
ha_category: Usage
|
||||
---
|
||||
|
||||
The dependencies which are used by Home Assistant are stored in the folder `deps` of the [configuration folder](/docs/configuration/) directory. After an [upgrade](/docs/installation/updating/) the dependences will be upgraded as well.
|
||||
|
@ -1,13 +1,12 @@
|
||||
---
|
||||
layout: page
|
||||
title: "distutils"
|
||||
title: "distutils.errors.DistutilsOptionError"
|
||||
description: "distutils.errors.DistutilsOptionError: must supply either home or prefix/exec-prefix -- not both"
|
||||
date: 2017-06-18 09:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
ha_category: Installation
|
||||
---
|
||||
|
||||
This is a known issue if you're on a Mac using Homebrew to install Python. Please follow [these instructions](https://github.com/Homebrew/brew/blob/master/docs/Homebrew-and-Python.md#note-on-pip-install---user) to resolve it.
|
||||
The problem which leads to `distutils.errors.DistutilsOptionError: must supply either home or prefix/exec-prefix -- not both` is a known issue if you're on a Mac using Homebrew to install Python. Please follow [these instructions](https://github.com/Homebrew/brew/blob/master/docs/Homebrew-and-Python.md#note-on-pip-install---user) to resolve it.
|
||||
|
@ -1,9 +1,8 @@
|
||||
---
|
||||
layout: page
|
||||
title: "libyaml"
|
||||
title: "libyaml is not found or a compiler error"
|
||||
description: "libyaml is not found or a compiler error"
|
||||
date: 2017-06-18 09:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
|
@ -1,9 +1,8 @@
|
||||
---
|
||||
layout: page
|
||||
title: "pip"
|
||||
title: "No module named pip"
|
||||
description: "No module named pip"
|
||||
date: 2017-06-18 09:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
|
@ -1,9 +1,8 @@
|
||||
---
|
||||
layout: page
|
||||
title: "pip3"
|
||||
title: "pip3: command not found"
|
||||
description: "pip3: command not found"
|
||||
date: 2017-06-18 09:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
|
14
source/_faq/problems-with-dependencies.markdown
Normal file
14
source/_faq/problems-with-dependencies.markdown
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
layout: page
|
||||
title: "Problems with dependencies"
|
||||
description: "Problems with dependencies"
|
||||
date: 2017-06-18 09:00
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
ha_category: Usage
|
||||
---
|
||||
|
||||
Almost all components have external dependencies to communicate with your devices and services. Sometimes Home Assistant is unable to install the necessary dependencies. If this is the case, it should show up in `home-assistant.log`.
|
||||
|
||||
The first step is trying to restart Home Assistant and see if the problem persists. If it does, look at the log to see what the error is. If you can't figure it out, please [report it](https://github.com/home-assistant/home-assistant/issues) so we can investigate what is going on.
|
22
source/_includes/asides/faq_navigation.html
Normal file
22
source/_includes/asides/faq_navigation.html
Normal file
@ -0,0 +1,22 @@
|
||||
<section class="aside-module grid__item one-whole lap-one-half">
|
||||
<div class='section'>
|
||||
<h1 class="title delta">Entries</h1>
|
||||
<ul class='divided sidebar-menu'>
|
||||
{% assign faq = site.faq | sort: 'title' %}
|
||||
{% assign categories = faq | map: 'ha_category' | uniq | sort %}
|
||||
|
||||
{% for category in categories %}
|
||||
<li>
|
||||
<b>{{ category }}</b>
|
||||
<ul>
|
||||
{% for entry in faq %}
|
||||
{% if entry.ha_category == category %}
|
||||
<li><a href='/faq#{{ entry.title | slugify }}'>{{ entry.title}}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
@ -10,6 +10,8 @@
|
||||
{% include asides/getting_started_navigation.html | compact_newlines %}
|
||||
{% elsif url_parts[1] == 'docs' %}
|
||||
{% include asides/docs_navigation.html | compact_newlines %}
|
||||
{% elsif url_parts[1] == 'faq' %}
|
||||
{% include asides/faq_navigation.html | compact_newlines %}
|
||||
{% elsif url_parts[1] == 'hassio' or url_parts[1] == 'addons' %}
|
||||
{% include asides/hassio_navigation.html | compact_newlines %}
|
||||
{% else %}
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
layout: page
|
||||
title: "FAQ"
|
||||
description: "Home Assistant' FAQ"
|
||||
description: "Home Assistant's FAQ"
|
||||
date: 2015-10-08 19:05
|
||||
sidebar: false
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
@ -26,3 +26,4 @@ This is a community curated list of frequently asked questions (FAQ) about the i
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user