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
# Sphinx version: 1.1.2 | |
# Python version: 2.6.5 | |
# Docutils version: 0.9 release | |
# Jinja2 version: 2.5.5 | |
Traceback (most recent call last): | |
File "/home/mazza/.buildout/eggs/Sphinx-1.1.2-py2.6.egg/sphinx/cmdline.py", line 189, in main | |
app.build(force_all, filenames) | |
File "/home/mazza/.buildout/eggs/Sphinx-1.1.2-py2.6.egg/sphinx/application.py", line 204, in build | |
self.builder.build_update() | |
File "/home/mazza/.buildout/eggs/Sphinx-1.1.2-py2.6.egg/sphinx/builders/__init__.py", line 196, in build_update |
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
# reverting accidental replace 'tab' -> ' ' in https://github.com/collective/collective.developermanual/commit/b59bd0 | |
import difflib | |
def agregar(lines): | |
diffs = [] | |
d = [] | |
for l in lines: | |
if l.startswith('diff --git'): | |
diffs.append(d) |
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
function short_pwd () { | |
pwd | sed -e "s@$HOME@~@" | |
} | |
function ps1_dir () { | |
dn=$(dirname `short_pwd`) | |
# in ~ yields "./" that becomes "" | |
# in / yields "//" that becomes "/" | |
echo "$dn/" | sed -e 's@^\./$@@' | sed -e 's@^//$@/@' | |
} |
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
# -*- coding: utf-8 -*- | |
#!/usr/bin/python | |
import unicodedata | |
# NO-BREAK SPACE: This is evil to Sphinx syntax highlight | |
print unicodedata.name(u" ") |
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
(defun sphinx-open-html-for-rst nil | |
"Opens the buit html for the current buffer rst file in the browser." | |
(interactive) | |
(browse-url-of-file | |
(replace-regexp-in-string | |
".rst$" ".html" | |
(replace-regexp-in-string "/source/" "/build/html/" (buffer-file-name))))) |
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 | |
import os | |
from itertools import groupby | |
from shutil import rmtree | |
from pkg_resources import parse_version | |
def main(): | |
"""Strips the buildout cache from older egg versions |
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
def highlight(element): | |
"""Highlights (blinks) a Webdriver element. | |
In pure javascript, as suggested by https://github.com/alp82. | |
""" | |
driver = element._parent | |
driver.execute_script(""" | |
element = arguments[0]; | |
original_style = element.getAttribute('style'); | |
element.setAttribute('style', original_style + "; background: yellow; border: 2px solid red;"); | |
setTimeout(function(){ |
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
1) Editar cada um dos arquivos: | |
/usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache | |
/usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/gtk.immodules | |
Procurar uma linha que começa com cedilla e adicione um :en no último parâmetro, assim: | |
"cedilla" "Cedilla" "gtk20" "/usr/share/locale" "az:ca:co:fr:gv:oc:pt:sq:tr:wa:en" | |
Ou simplesmente rode: |
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
// [PackageDev] target_format: plist, ext: tmLanguage | |
{ "name": "Unittest Output", | |
"scopeName": "output.unittest", | |
"patterns": [ | |
{ "match": "FAIL: ([^ ]+) (.+)", | |
"name": "unittest.fail", | |
"captures": { | |
"1": { "name": "entity.name.function" }, | |
"2": { "name": "support.function" } | |
} |
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
Show hidden characters
// Assumes a virtualenv inside ~/.virtualenvs that has the same name as the project | |
// Assumes manage.py is inside src | |
{ | |
"working_dir": "${project_path}/src", | |
"shell_cmd": "~/.virtualenvs/${project_base_name}/bin/python manage.py test", | |
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", | |
"syntax": "Packages/User/Unittest Output.tmLanguage", | |
"quiet": "True", | |
"variants": [ |
OlderNewer