scripts/build_epydocs.sh
author Todd Larsen <tlarsen@google.com>
Fri, 29 Aug 2008 04:24:31 +0000
changeset 124 051afb721c22
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Refactor soc/views/user/profile.py to make use of several of the new views available in soc/views/simple.py. 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."