]>
Commit | Line | Data |
---|---|---|
078a94e0 VZ |
1 | #!/bin/sh |
2 | ||
3 | REPOS="$1" | |
4 | TXN="$2" | |
5 | ||
6 | SVNLOOK=/usr/bin/svnlook | |
7 | ||
0126e6d2 VZ |
8 | svnl() { |
9 | cmd=$1 | |
10 | shift | |
11 | $SVNLOOK $cmd "$REPOS" -t "$TXN" $* | |
3347f618 VZ |
12 | } |
13 | ||
0126e6d2 VZ |
14 | rc=0 |
15 | ||
16 | # exclude all third-party files from consideration, we don't want to do any | |
17 | # checks for them | |
eeea7e8c VZ |
18 | # |
19 | # Also don't impose any constraints on commits to previous 2.x branches. | |
0126e6d2 | 20 | all_changed_files=`svnl changed | \ |
078a94e0 | 21 | grep "^[AU]" | \ |
0126e6d2 | 22 | sed 's/^....//' | \ |
eeea7e8c | 23 | egrep -v "branches/WX_2_" | \ |
f1021a56 | 24 | egrep -v "wxWidgets/vendor" | \ |
f14e42ce | 25 | egrep -v "src/(tiff|regex|jpeg|stc/scintilla)" | \ |
5caded22 RD |
26 | egrep -v "_wrap.cpp" | \ |
27 | egrep -v "wxPython/.*/docs/.*\.html$"` | |
078a94e0 | 28 | |
0126e6d2 VZ |
29 | # analyze the changed files to find all non-binary and all source files |
30 | for f in $all_changed_files; do | |
31 | mimetype=`svnl proplist -v $f | | |
32 | fgrep "svn:mime-type" | | |
33 | sed 's/^ svn:mime-type : //'` | |
34 | case $mimetype in | |
35 | ''|text/*) | |
36 | ;; | |
37 | ||
38 | *) | |
39 | continue | |
40 | ;; | |
41 | esac | |
42 | ||
43 | changed_text_files="$changed_text_files $f" | |
44 | ||
45 | case $f in | |
46 | *.cpp|*.h|*.py) | |
47 | changed_sources="$changed_sources $f" | |
48 | ;; | |
49 | esac | |
50 | done | |
3347f618 VZ |
51 | |
52 | for f in $changed_sources; do | |
0126e6d2 | 53 | if svnl cat $f | fgrep -q ' '; then |
078a94e0 VZ |
54 | echo "Please remove TABs from $f before committing." >&2 |
55 | rc=1 | |
56 | fi | |
f1cfa113 VZ |
57 | |
58 | case $f in | |
59 | */wx/chartype.h) | |
60 | # This file defines _T() for compatibility so don't check it. | |
61 | ;; | |
62 | ||
d1663930 VZ |
63 | */docs/doxygen/overviews/changes_since28.h) |
64 | # And this one describes changes from _T() to wxT(). | |
65 | ;; | |
66 | ||
f1cfa113 VZ |
67 | *) |
68 | if svnl cat $f | fgrep -qw '_T'; then | |
69 | echo "Please use wxT() instead of _T() in $f." >&2 | |
70 | rc=1 | |
71 | fi | |
72 | ;; | |
73 | esac | |
078a94e0 VZ |
74 | done |
75 | ||
0126e6d2 VZ |
76 | for f in $changed_text_files; do |
77 | if ! svnl cat $f | iconv -f utf8 -t WCHAR_T > /dev/null; then | |
3347f618 | 78 | echo "File $f doesn't use UTF-8, please convert it before committing." >&2 |
0126e6d2 | 79 | echo "(or set svn:mime-type property correctly if the file is binary)." >&2 |
3347f618 VZ |
80 | rc=1 |
81 | fi | |
82 | done | |
83 | ||
078a94e0 | 84 | exit $rc |
f14e42ce | 85 |