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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
56109601507d Script to generate epydoc documents in wiki/html/epydoc.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     1
#!/bin/bash
56109601507d Script to generate epydoc documents in wiki/html/epydoc.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     2
56109601507d Script to generate epydoc documents in wiki/html/epydoc.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     3
echo "Running epydoc..."
56109601507d Script to generate epydoc documents in wiki/html/epydoc.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     4
echo $1
56109601507d Script to generate epydoc documents in wiki/html/epydoc.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     5
56109601507d Script to generate epydoc documents in wiki/html/epydoc.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     6
epydoc --html -v --show-private --inheritance=included --graph=all \
56109601507d Script to generate epydoc documents in wiki/html/epydoc.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     7
  -o ../../wiki/html/epydoc $1
56109601507d Script to generate epydoc documents in wiki/html/epydoc.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     8
56109601507d Script to generate epydoc documents in wiki/html/epydoc.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     9
echo "Done."
56109601507d Script to generate epydoc documents in wiki/html/epydoc.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    10