2004-04-30 02:28:54 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
if [ ! -d wxPython ]; then # TODO: make this test more robust
|
|
|
|
echo "Please run this script from the root wxPython directory."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2004-07-21 21:01:58 -04:00
|
|
|
VERSION=`python -c "import setup;print setup.VERSION"`
|
2004-04-30 02:28:54 -04:00
|
|
|
|
2004-07-21 21:01:58 -04:00
|
|
|
|
|
|
|
# cleanup old build
|
2004-04-30 02:28:54 -04:00
|
|
|
rm -r docs/api/*
|
|
|
|
|
2004-07-21 21:01:58 -04:00
|
|
|
# build the docs
|
2004-06-04 19:21:22 -04:00
|
|
|
export PTYHONPATH=$PWD
|
2004-04-30 02:28:54 -04:00
|
|
|
epydoc --name wxPython \
|
|
|
|
--html \
|
|
|
|
--output docs/api \
|
|
|
|
--ignore-param-mismatch \
|
|
|
|
--inheritance none \
|
|
|
|
--no-expand-subpackages \
|
|
|
|
--no-private \
|
|
|
|
--css docs/wxPython-epydoc.css \
|
|
|
|
--docformat restructuredtext \
|
2004-06-04 19:21:22 -04:00
|
|
|
--url http://wxPython.org/ \
|
|
|
|
--no-frames \
|
2004-04-30 02:28:54 -04:00
|
|
|
$* \
|
2004-06-04 19:21:22 -04:00
|
|
|
wx
|
|
|
|
|
|
|
|
# wx/__init__.py \
|
|
|
|
|
|
|
|
# wx/calendar.py wx/grid.py wx/html.py wx/wizard.py \
|
|
|
|
# wx/gizmos.py wx/ogl.py wx/stc.py wx/xrc.py
|
|
|
|
|
2004-04-30 02:28:54 -04:00
|
|
|
|
|
|
|
# --no-frames \
|
|
|
|
# --docformat epytext \
|
|
|
|
# --debug \
|
2004-06-04 19:21:22 -04:00
|
|
|
# --inheritance grouped \
|
2004-04-30 02:28:54 -04:00
|
|
|
|
|
|
|
|
|
|
|
# TODO:
|
|
|
|
# 1. Should rebuild the top-level docs too (but we need more of them first!)
|
|
|
|
|
|
|
|
|
2004-07-21 21:01:58 -04:00
|
|
|
|
|
|
|
# bundle it all up into a tarball
|
|
|
|
DEST=wxPython-$VERSION/docs
|
|
|
|
mkdir -p _build_docs/$DEST
|
|
|
|
cp -R --link docs/api _build_docs/$DEST
|
|
|
|
cd _build_docs
|
|
|
|
rm -f ../dist/wxPythonNewDocs-$VERSION.tar.gz
|
|
|
|
tar cf ../dist/wxPythonNewDocs-$VERSION.tar $DEST
|
|
|
|
gzip -9 ../dist/wxPythonNewDocs-$VERSION.tar
|
|
|
|
|
|
|
|
# Cleanup
|
|
|
|
cd ..
|
|
|
|
rm -r _build_docs
|
|
|
|
|