]> git.saurik.com Git - wxWidgets.git/blame - wxPython/docs/bin/makeapidocs
'[1219035] cleanup: miscellaneous' and minor source cleaning.
[wxWidgets.git] / wxPython / docs / bin / makeapidocs
CommitLineData
9ed01680
RD
1#!/bin/bash
2
3#----------------------------------------------------------------------
4
5if [ ! -d wxPython ]; then # TODO: make this test more robust
6 echo "Please run this script from the root wxPython directory."
7 exit 1
8fi
9
bc182509 10VERSION=`python -c "import setup;print setup.VERSION"`
9ed01680 11
bc182509
RD
12
13# cleanup old build
9ed01680
RD
14rm -r docs/api/*
15
bc182509 16# build the docs
77d4f443 17export PTYHONPATH=$PWD
9ed01680
RD
18epydoc --name wxPython \
19 --html \
20 --output docs/api \
21 --ignore-param-mismatch \
22 --inheritance none \
23 --no-expand-subpackages \
24 --no-private \
25 --css docs/wxPython-epydoc.css \
26 --docformat restructuredtext \
77d4f443
RD
27 --url http://wxPython.org/ \
28 --no-frames \
9ed01680 29 $* \
6c75a4cf 30 wxversion/wxversion.py \
77d4f443
RD
31 wx
32
33# wx/__init__.py \
34
35# wx/calendar.py wx/grid.py wx/html.py wx/wizard.py \
36# wx/gizmos.py wx/ogl.py wx/stc.py wx/xrc.py
37
9ed01680
RD
38
39# --no-frames \
40# --docformat epytext \
41# --debug \
77d4f443 42# --inheritance grouped \
9ed01680
RD
43
44
45# TODO:
46# 1. Should rebuild the top-level docs too (but we need more of them first!)
9ed01680
RD
47
48
bc182509
RD
49
50# bundle it all up into a tarball
51DEST=wxPython-$VERSION/docs
52mkdir -p _build_docs/$DEST
53cp -R --link docs/api _build_docs/$DEST
54cd _build_docs
cb56afc4
RD
55rm -f ../dist/wxPython-newdocs-$VERSION.tar.gz
56tar cf ../dist/wxPython-newdocs-$VERSION.tar $DEST
57gzip -9 ../dist/wxPython-newdocs-$VERSION.tar
bc182509
RD
58
59# Cleanup
60cd ..
61rm -r _build_docs
62