scripts/build_epydocs.sh
author Todd Larsen <tlarsen@google.com>
Mon, 11 Aug 2008 16:57:46 +0000
changeset 66 8c86470746fc
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Finished migrating the "proto" app (which only contained a Person profile edit form) to the new combined trunk/app layout. Also, moved the form template from profile.html to profile/edit.html, to follow the "one template per view" approach (rather than have read-write vs. read-only logic in a single template).

#!/bin/bash

echo "Running epydoc..."
echo $1

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

echo "Done."