Added a small utility script, to set the svn properties on html files.

This should be run whenever changes are made to HAIKU_TOP docs.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39728 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matt Madia 2010-12-04 20:01:00 +00:00
parent 173ed09251
commit a808a05c2d
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
#!/bin/bash
# A quick and dirty script, to help add the svn property to files.
# It is intended to be ran with a relative path from the desired directory.
# e.g.,
# haiku/trunk/docs> sh ../src/tools/propset-files.sh
tmpDir="`finddir B_COMMON_TEMP_DIRECTORY`"
tmpFile="${tmpDir}/propset-html"
find . -type d -name .svn -prune -o -print > "$tmpFile"
while read file ; do
hasProperty=`svn propget svn:mime-type "$file"`
if ! [ $hasProperty ] ; then
case "$file" in
*.html)
mimetype="text/html"
svn propset svn:mime-type "$mimetype" "$file"
;;
#*.png)
# mimetype="image/png"
# #svn propset svn:mime-type "$mimetype" "$file"
# ;;
#*)
# echo $file
# ;;
esac
fi
done < "$tmpFile"
rm "$tmpFile"