#!/bin/bash report_failure () { echo " **** failed to complete **** " exit 1 } ./testenv || report_failure ./makedocs snapshot || exit 1 REVNUM_FILE=.logger_revnum rm -rf release/* || report_failure DLIB_REPOS=`svn info | grep URL | awk '{print $2}' | sed -e 's/\/docs$//' ` REVISION=`svn info | grep Revision | awk '{ print $2 }'` svn log -v -r $REVISION:`cat $REVNUM_FILE` $DLIB_REPOS/dlib > release/change_log.txt || report_failure cd release || report_failure RELDIR=`echo dlib_snapshot-rev$REVISION` mkdir $RELDIR cd $RELDIR || report_failure cp -r ../../docs/cache/dlib . || report_failure cp -r ../../docs/cache/examples . || report_failure echo This copy of dlib C++ library is a developmental snapshot. >> dlib/README.txt echo "Date: `date`" >> dlib/README.txt echo Subversion Revision Number: $REVISION >> dlib/README.txt SOURCE_ZIP=`echo $RELDIR.zip` SOURCE_TAR=`echo $RELDIR.tar` tar -C ../../docs/chm -cf - docs/ documentation.html --exclude=".svn" | tar -xf - cd .. || report_failure tar -cf $SOURCE_TAR $RELDIR # flip everything to MS-DOS line endings find $RELDIR -name "*.cpp" -or -name "*.h" -or -name "*.txt" -or -name "*.html" | xargs flip -m zip -r9 $SOURCE_ZIP $RELDIR > /dev/null bzip2 $SOURCE_TAR rm -rf $RELDIR # make an index.html with links to the snapshot archives and chm file #echo "" > index.html #echo "$SOURCE_ZIP
" >> index.html #echo "$SOURCE_TAR.bz2
" >> index.html #echo "dlib_documentation_snapshot-rev$REVISION.chm
" >> index.html #echo "" >> index.html # finally, generate the chm help file wine ../docs/chm/htmlhelp/hhc.exe ../docs/chm/lib.hhp mv ../docs/chm/help.chm dlib_documentation_snapshot-rev$REVISION.chm