]>
git.saurik.com Git - wxWidgets.git/blob - misc/scripts/svn/hooks/pre-commit
6 SVNLOOK
=/usr
/bin
/svnlook
11 $SVNLOOK $cmd "$REPOS" -t "$TXN" $
*
16 # exclude all third-party files from consideration, we don't want to do any
19 # also exclude message catalog files as they may be not in UTF-8
20 all_changed_files
=`svnl changed | \
23 egrep -v "locale/.*\.po$" | \
24 egrep -v "src/(tiff|regex|jpeg|stc/scintilla)" | \
27 # analyze the changed files to find all non-binary and all source files
28 for f
in $all_changed_files; do
29 mimetype
=`svnl proplist -v $f |
30 fgrep "svn:mime-type" |
31 sed 's/^ svn:mime-type : //'`
41 changed_text_files
="$changed_text_files $f"
45 changed_sources
="$changed_sources $f"
50 for f
in $changed_sources; do
51 if svnl
cat $f | fgrep
-q ' '; then
52 echo "Please remove TABs from $f before committing." >&2
57 for f
in $changed_text_files; do
58 if ! svnl
cat $f | iconv -f utf8
-t WCHAR_T
> /dev
/null
; then
59 echo "File $f doesn't use UTF-8, please convert it before committing." >&2
60 echo "(or set svn:mime-type property correctly if the file is binary)." >&2