Show More
@@ -0,0 +1,18 b'' | |||||
|
1 | #!/bin/bash -x | |||
|
2 | ||||
|
3 | # Enforce some consistency in whitespace - just to avoid spurious whitespaces changes | |||
|
4 | ||||
|
5 | files=`hg loc '*.py' '*.html' '*.css' '*.rst' '*.txt' '*.js' | egrep -v '/lockfiles.py|LICENSE-MERGELY.html|/codemirror/|/fontello/|(graph|mergely|native.history|select2/select2|yui.flot)\.js$'` | |||
|
6 | sed -i "s,`printf '\t'`, ,g" $files | |||
|
7 | sed -i "s, *$,,g" $files | |||
|
8 | ||||
|
9 | sed -i 's,\([^ /]\){,\1 {,g' `hg loc '*.css'` | |||
|
10 | sed -i 's|^\([^ /].*,\)\([^ ]\)|\1 \2|g' `hg loc '*.css'` | |||
|
11 | ||||
|
12 | sed -i 's/^\( [^: ]*\) *: *\([^/]\)/\1: \2/g' kallithea/public/css/{style,contextbar}.css | |||
|
13 | sed -i '1s|, |,|g' kallithea/public/css/{style,contextbar}.css | |||
|
14 | sed -i 's/^\([^ ,/]\+ [^,]*[^ ,]\) *, *\(.\)/\1,\n\2/g' kallithea/public/css/{style,contextbar}.css | |||
|
15 | sed -i 's/^\([^ ,/].*\) */\1 /g' kallithea/public/css/{style,contextbar}.css | |||
|
16 | sed -i 's,^--$,-- ,g' kallithea/templates/email_templates/main.txt | |||
|
17 | ||||
|
18 | hg diff |
General Comments 0
You need to be logged in to leave comments.
Login now