Script to generate epydoc documents in wiki/html/epydoc.
authorTodd Larsen <tlarsen@google.com>
Wed, 07 May 2008 21:52:33 +0000
changeset 10 56109601507d
parent 9 12e6ddd4a2aa
child 11 78502d4eb06e
Script to generate epydoc documents in wiki/html/epydoc. Contributed by Sverre Rabbelier.
scripts/build_epydocs.sh
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/build_epydocs.sh	Wed May 07 21:52:33 2008 +0000
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+echo "Running epydoc..."
+echo $1
+
+epydoc --html -v --show-private --inheritance=included --graph=all \
+  -o ../../wiki/html/epydoc $1
+
+echo "Done."
+