diff --git a/source/_components/alarm_control_panel.manual.markdown b/source/_components/alarm_control_panel.manual.markdown index ba32957c38d..36b49399a78 100644 --- a/source/_components/alarm_control_panel.manual.markdown +++ b/source/_components/alarm_control_panel.manual.markdown @@ -7,7 +7,7 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Alarm Control Panel +ha_category: Alarm --- diff --git a/source/_components/alarm_control_panel.mqtt.markdown b/source/_components/alarm_control_panel.mqtt.markdown index f852f047ea4..712b68b7ac6 100644 --- a/source/_components/alarm_control_panel.mqtt.markdown +++ b/source/_components/alarm_control_panel.mqtt.markdown @@ -8,7 +8,7 @@ comments: false sharing: true footer: true logo: mqtt.png -ha_category: "Alarm Control Panel" +ha_category: Alarm --- diff --git a/source/_components/simple_alarm.markdown b/source/_components/simple_alarm.markdown index 8a43638e761..9590158f08a 100644 --- a/source/_components/simple_alarm.markdown +++ b/source/_components/simple_alarm.markdown @@ -7,7 +7,7 @@ sidebar: true comments: false sharing: true footer: true -ha_category: Automation +ha_category: Alarm --- diff --git a/source/components/index.html b/source/components/index.html index 5966825f015..a0f4b9d1c4d 100644 --- a/source/components/index.html +++ b/source/components/index.html @@ -78,18 +78,21 @@ $(window).load(function(){ } function applyFilter() { - var filter = location.hash; + var hash = location.hash; - if (filter == '') { + var filter; + if (hash == '') { filter = '.featured' - } else if (filter == '#all') { + hash = '#featured' + } else if (hash == '#all') { filter = '*'; } else { - filter = '.' + filter.substr(1); + filter = '.' + hash.substr(1); } $('.filter-button-group a.current').removeClass('current'); - $('.filter-button-group a[href='+location.hash+']').addClass('current'); + $('.filter-button-group a[href='+hash+']').addClass('current'); + $container.isotope({ filter: filter, animationOptions: { diff --git a/source/getting-started/troubleshooting.markdown b/source/getting-started/troubleshooting.markdown index 972b2942718..4192c68802e 100644 --- a/source/getting-started/troubleshooting.markdown +++ b/source/getting-started/troubleshooting.markdown @@ -26,19 +26,30 @@ by some distributions. If you are unable to run `python3 -m pip --version` you c [downloading the installer](https://bootstrap.pypa.io/get-pip.py) and run it with Python 3: `python3 get-pip.py`. +**distutils.errors.DistutilsOptionError: must supply either home or prefix/exec-prefix -- not both**
+This is a known issue if you're on a Mac using Homebrew to install Python. Please follow +[these instructions](https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Homebrew-and-Python.md#note-on-pip-install---user) +to resolve it. + **CentOS and Python 3**
To run Python 3.x on [CentOS](https://www.centos.org/) or RHEL, [Software Collections](https://www.softwarecollections.org/en/scls/rhscl/rh-python34/) needs to be activated.

**Run the development version**
-If you want to stay on top of the development of Home Assistant then you can upgrade to the latest stuff what is available in the dev branch `pip3 install --upgrade git+git://github.com/balloob/home-assistant.git@dev`. Keep in mind, that stable releases of Home Assistant are published often. +If you want to stay on top of the development of Home Assistant then you can upgrade to the dev branch using +`pip3 install --upgrade git+git://github.com/balloob/home-assistant.git@dev`. Keep in mind, that stable releases +of Home Assistant are published often. **No access to the frontend**
In newer Linux distributions (at least Fedora 22/CentOS 7) the access to a host is very limited. -This means that you can't access the Home Assistant Frontend that is running on a host outside of the host machine. Windows and OSX machines may also have issues with this. +This means that you can't access the Home Assistant Frontend that is running on a host outside of the +host machine. Windows and OSX machines may also have issues with this. -To fix this you will need to open your machine's firewall for TCP traffic over port 8123. The method for doing this will vary depending on your operating system and the firewall you have installed. Below are some suggestions to try. Google is your friend here. +To fix this you will need to open your machine's firewall for TCP traffic over port 8123. The method +for doing this will vary depending on your operating system and the firewall you have installed. +Below are some suggestions to try. Google is your friend here. -[Windows](http://windows.microsoft.com/en-us/windows/open-port-windows-firewall#1TC=windows-7) and [Mac OSX](https://support.apple.com/en-us/HT201642) have good instructions posted. +[Windows instructions](http://windows.microsoft.com/en-us/windows/open-port-windows-firewall#1TC=windows-7)
+[Mac OSX instructions](https://support.apple.com/en-us/HT201642) For firewalld systems (Fedora, RHEL, etc.): ```bash @@ -56,4 +67,5 @@ For iptables systems (usually the default): iptables -I INPUT -p tcp --dport 8123 -j ACCEPT iptables-save > /etc/network/iptables.rules # your rules may be saved elsewhere ``` + ###[« Back to Getting Started](/getting-started/index.html)