]> git.saurik.com Git - wxWidgets.git/blob - wxPython/docs/bin/makeapidocs
test wxString's char<->wchar_t ctors
[wxWidgets.git] / wxPython / docs / bin / makeapidocs
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
13 export PTYHONPATH=$PWD
14
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 \
24 --url http://wxPython.org/ \
25 --no-frames \
26 $* \
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
34
35 # --no-frames \
36 # --docformat epytext \
37 # --debug \
38 # --inheritance grouped \
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