scripts/build_epydocs.sh
author Pawel Solyga <Pawel.Solyga@gmail.com>
Mon, 18 Aug 2008 17:00:23 +0000
changeset 74 967a2fa04984
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Added 404 and 500 errors templates. You need to set DEBUG = False in Settings.py in order to see the pages.

#!/bin/bash

echo "Running epydoc..."
echo $1

epydoc --html -v --show-private --inheritance=included --graph=all \
  -o ../../wiki/html/epydoc $1

echo "Done."