makedocs script now also crunches through some of the contribs docs
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24048 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -13,6 +13,8 @@ if [ ! -d wxPython ]; then # TODO: make this test more robust
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
CONTRIBS="ogl gizmos"
|
||||||
|
|
||||||
# **** Make a directory to build up a distribution tree
|
# **** Make a directory to build up a distribution tree
|
||||||
|
|
||||||
DEST=wxPython-$1/docs
|
DEST=wxPython-$1/docs
|
||||||
@@ -20,19 +22,24 @@ DEST=wxPython-$1/docs
|
|||||||
mkdir -p _build_docs/$DEST
|
mkdir -p _build_docs/$DEST
|
||||||
cd _build_docs
|
cd _build_docs
|
||||||
mkdir $DEST/wx
|
mkdir $DEST/wx
|
||||||
mkdir $DEST/ogl
|
|
||||||
|
|
||||||
WXDIR=../..
|
WXDIR=../..
|
||||||
|
|
||||||
# **** Build the docs using tex2rtf
|
# **** Build the main docs using tex2rtf
|
||||||
|
echo "****" main "****"
|
||||||
cp $WXDIR/docs/latex/wx/*.gif $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
|
$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/wx.htm $DEST/wx/index.htm
|
||||||
|
|
||||||
cp $WXDIR/contrib/docs/latex/ogl/*.gif $DEST/ogl
|
# **** and the contribs
|
||||||
cp $WXDIR/contrib/docs/latex/ogl/*.bmp $DEST/ogl
|
for c in $CONTRIBS; do
|
||||||
$WXDIR/utils/tex2rtf/src/tex2rtf $WXDIR/contrib/docs/latex/ogl/ogl.tex $DEST/ogl/ogl.htm -twice -html
|
echo "****" $c "****"
|
||||||
cp $DEST/ogl/ogl.htm $DEST/ogl/index.htm
|
mkdir $DEST/$c
|
||||||
|
cp $WXDIR/contrib/docs/latex/$c/*.gif $DEST/$c
|
||||||
|
cp $WXDIR/contrib/docs/latex/$c/*.bmp $DEST/$c
|
||||||
|
$WXDIR/utils/tex2rtf/src/tex2rtf $WXDIR/contrib/docs/latex/$c/$c.tex $DEST/$c/$c.htm -twice -html -macros $WXDIR/docs/latex/wx/tex2rtf.ini
|
||||||
|
cp $DEST/$c/$c.htm $DEST/$c/index.htm || cp $DEST/$c/${c}_contents.html $DEST/$c/index.htm
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
# **** zip the docs into "books"
|
# **** zip the docs into "books"
|
||||||
@@ -42,10 +49,12 @@ zip ../wx.zip *
|
|||||||
popd
|
popd
|
||||||
rm -r wx
|
rm -r wx
|
||||||
|
|
||||||
pushd ogl
|
for c in $CONTRIBS; do
|
||||||
zip ../ogl.zip *
|
pushd $c
|
||||||
popd
|
zip ../$c.zip *
|
||||||
rm -r ogl
|
popd
|
||||||
|
rm -r $c
|
||||||
|
done
|
||||||
|
|
||||||
popd
|
popd
|
||||||
cp ../distrib/viewdocs.py $DEST
|
cp ../distrib/viewdocs.py $DEST
|
||||||
|
Reference in New Issue
Block a user