scripts/build_epydocs.sh
author Todd Larsen <tlarsen@google.com>
Thu, 28 Aug 2008 22:06:31 +0000
changeset 116 68b5ce15fff9
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Factor out a getUniversalContext() function so that views that do not call response_helpers.response() can benefit from the code that constructs shared template context variables common to many templates. 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."