ardupilot/libraries/doc/updateDocs
james.goppert 9770a743d2 Added doxygen doc for library.
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1282 f9c3cf11-9bcb-44bc-f272-b75c42450872
2010-12-27 00:59:17 +00:00

22 lines
400 B
Bash
Executable File

#!/bin/bash
svn remove html --force
doxygen Doxyfile
svn add html --force
for imageExt in "png"
do
imageFiles=$(find html -name *.$imageExt)
echo image files: $imageFiles
svn propset svn:mime-type image/$imageExt $imageFiles
done
for textExt in "html"
do
textFiles=$(find html -name *.$textExt)
echo text files: $textFiles
svn propset svn:mime-type text/$textExt $textFiles
done
svn commit