comparison whitespacecleanup.sh @ 4727:9cf229b46e49

whitespacecleanup.sh - run regularly to ensure consistent spacing and avoid spurious changes
author Mads Kiilerich <madski@unity3d.com>
date Wed, 27 Feb 2013 01:26:41 +0100
parents
children 40871e0eb13a
comparison
equal deleted inserted replaced
4726:f1e0b8aa634b 4727:9cf229b46e49
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