]>
Commit | Line | Data |
---|---|---|
9ed01680 RD |
1 | #!/bin/bash |
2 | ||
3 | #---------------------------------------------------------------------- | |
4 | ||
5 | if [ ! -d wxPython ]; then # TODO: make this test more robust | |
6 | echo "Please run this script from the root wxPython directory." | |
7 | exit 1 | |
8 | fi | |
9 | ||
10 | ||
11 | rm -r docs/api/* | |
12 | ||
77d4f443 RD |
13 | export PTYHONPATH=$PWD |
14 | ||
9ed01680 RD |
15 | epydoc --name wxPython \ |
16 | --html \ | |
17 | --output docs/api \ | |
18 | --ignore-param-mismatch \ | |
19 | --inheritance none \ | |
20 | --no-expand-subpackages \ | |
21 | --no-private \ | |
22 | --css docs/wxPython-epydoc.css \ | |
23 | --docformat restructuredtext \ | |
77d4f443 RD |
24 | --url http://wxPython.org/ \ |
25 | --no-frames \ | |
9ed01680 | 26 | $* \ |
77d4f443 RD |
27 | wx |
28 | ||
29 | # wx/__init__.py \ | |
30 | ||
31 | # wx/calendar.py wx/grid.py wx/html.py wx/wizard.py \ | |
32 | # wx/gizmos.py wx/ogl.py wx/stc.py wx/xrc.py | |
33 | ||
9ed01680 RD |
34 | |
35 | # --no-frames \ | |
36 | # --docformat epytext \ | |
37 | # --debug \ | |
77d4f443 | 38 | # --inheritance grouped \ |
9ed01680 RD |
39 | |
40 | ||
41 | # TODO: | |
42 | # 1. Should rebuild the top-level docs too (but we need more of them first!) | |
43 | # 2. bundle it all up into a tarball | |
44 | # 3. etc. | |
45 | ||
46 |