+ sed 's/^....//' | \
+ egrep -v "branches/WX_2_" | \
+ egrep -v "wxWidgets/vendor" | \
+ egrep -v "src/(expat|tiff|regex|jpeg|stc/scintilla)" | \
+ egrep -v "src/msw/version.rc" | \
+ egrep -v "_wrap.cpp" | \
+ egrep -v "wxPython/.*/docs/.*\.html$"`
+
+# analyze the changed files to find all non-binary and all source files
+for f in $all_changed_files; do
+ mimetype=`svnl proplist -v $f |
+ fgrep "svn:mime-type" |
+ sed 's/^ svn:mime-type : //'`
+ case $mimetype in
+ ''|text/*)
+ ;;