#----------------------------------------------------------------------
-if [ -z $1 ]; then
- echo "Please specify a version number on the command line."
- exit 1
-fi
-
if [ ! -d wxPython ]; then # TODO: make this test more robust
echo "Please run this script from the root wxPython directory."
exit 1
fi
+VERSION=`python -c "import setup;print setup.VERSION"`
CONTRIBS="ogl gizmos"
+DEST=wxPython-$VERSION/docs
# **** Make a directory to build up a distribution tree
-
-DEST=wxPython-$1/docs
-
mkdir -p _build_docs/$DEST
cd _build_docs
mkdir $DEST/wx
cp $WXDIR/docs/latex/wx/*.gif $DEST/wx
$WXDIR/utils/tex2rtf/src/tex2rtf $WXDIR/docs/latex/wx/manual.tex $DEST/wx/wx.htm -twice -html -macros $WXDIR/docs/latex/wx/tex2rtf.ini
cp $DEST/wx/wx.htm $DEST/wx/index.htm
+cp $DEST/wx/* $WXDIR/docs/html/wx
# **** and the contribs
for c in $CONTRIBS; do
cp ../distrib/viewdocs.py $DEST
cp ../distrib/README.viewdocs.txt $DEST/README.txt
-rm -f ../dist/wxPythonDocs-$1.tar.gz
-tar cvf ../dist/wxPythonDocs-$1.tar $DEST
-gzip -9 ../dist/wxPythonDocs-$1.tar
+rm -f ../dist/wxPythonDocs-$VERSION.tar.gz
+tar cvf ../dist/wxPythonDocs-$VERSION.tar $DEST
+gzip -9 ../dist/wxPythonDocs-$VERSION.tar
# **** Cleanup