tools/docgen.sh
author nemo
Thu, 24 Oct 2013 14:02:26 -0400
changeset 9575 45d2d1ce0174
parent 6203 38ddad39f08f
child 10667 5bd2fa61f25b
permissions -rwxr-xr-x
revert r67e257b98422 to close out bug #660. shift-f1 is even more undiscoverable than a tooltip for this important piece of info, and wasn't printing the name for me either.

#!/bin/sh


if [ -d QTfrontend ]; then
	cd QTfrontend
else
	if [ -d ../QTfrontend ]; then
		cd ../QTfrontend
	else
		echo 'abort: Directory "QTfrontend" not found!' >&2
		exit 1
	fi
fi

if [ -z "$1" ]; then
	OUTPUT_DIRECTORY="../doc/QTfrontend"
else
	OUTPUT_DIRECTORY="$1"
fi

echo "Creating documentation for Qt-Frontend in $OUTPUT_DIRECTORY ..."

if [ $(which hg) ]; then

branch=$(hg identify -b)
rev=$(hg identify -rdefault -i)

branchurl="<a href=http://code.google.com/p/hedgewars/source/list?name=${branch}>${branch}</a>"
revurl="<a href=http://code.google.com/p/hedgewars/source/detail?r=${rev}>${rev}</a>"

export PROJECT_NUMBER="${branchurl} as of ${revurl}"
export OUTPUT_DIRECTORY

fi

doxygen
exit $?