scripts/build_epydocs.sh
author Todd Larsen <tlarsen@google.com>
Fri, 30 May 2008 17:14:42 +0000
changeset 40 c0151a1f62e5
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
A {% field_as_table_row %} template tag to simplify custom forms. (This template file was missed in the r348 commit.) Patch by: Todd Larsen Review by: Pawel Solyga Review issue: 221 Review URL: http://codereviews.googleopensourceprograms.com/221

#!/bin/bash

echo "Running epydoc..."
echo $1

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

echo "Done."