scripts/build_epydocs.sh
author Todd Larsen <tlarsen@google.com>
Thu, 28 Aug 2008 21:49:53 +0000
changeset 115 d55ee63603cd
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Create a package for controller modules that interact with User entities. Patch by: Todd Larsen Review by: to-be-reviewed

#!/bin/bash

echo "Running epydoc..."
echo $1

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

echo "Done."