This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="" | |
target="_blank" | |
class="btn btn-edit" | |
tal:attributes="href string:${obj/absolute_url}/folder_contents" | |
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# | |
# Copyright 2014 Mikael Magnusson | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM balloob/home-assistant | |
# Open Z-Wave disabled because broken | |
RUN apt-get update && \ | |
apt-get install -y cython3 libudev-dev && \ | |
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \ | |
pip3 install "cython<0.23" && \ | |
pip3 install PyChromecast && \ | |
script/build_python_openzwave |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(Pdb) pp self.context.portal_setup.getSortedImportSteps() | |
(u'rolemap', | |
u'sharing', | |
u'plone-difftool', | |
u'properties', | |
u'eea.facetednavigation.various', | |
u'toolset', | |
u'cookie_authentication', | |
u'catalog', | |
u'workflow', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin('~/.vim/plugged') | |
Plug 'kien/ctrlp.vim' | |
Plug 'kien/rainbow_parentheses.vim' | |
Plug 'jeetsukumaran/vim-gazetteer' | |
Plug 'scrooloose/syntastic' | |
Plug 'scrooloose/nerdtree' | |
Plug 'vim-scripts/AutoComplPop' | |
Plug 'Yggdroot/indentLine' | |
Plug 'groenewege/vim-less' |