Commit 21ce4f98 authored by Davis King's avatar Davis King

Updated makedocs to use setup.py to create the python docs

parent 3c161139
...@@ -12,29 +12,6 @@ htmlify_python_file () ...@@ -12,29 +12,6 @@ htmlify_python_file ()
pygmentize -f html -O full,style=vs $1 > $1.html pygmentize -f html -O full,style=vs $1 > $1.html
} }
build_python_interface ()
{
pushd ../python_examples
mkdir build
cd build || report_failure
cmake ../../tools/python || report_failure
make -j4 install || report_failure
# Check if we should run all the python examples to make sure they
# work without generating an error.
if [ $1 == "test-python" ]
then
cd ..
FILES=`ls *.py`
for f in $FILES
do
python $f > /dev/null < /dev/null || report_failure
done
fi
popd
}
add_links_between_example_programs() add_links_between_example_programs()
{ {
...@@ -169,22 +146,17 @@ makedocs () ...@@ -169,22 +146,17 @@ makedocs ()
cp -r htmltemp.$$/examples/* docs/chm/docs cp -r htmltemp.$$/examples/* docs/chm/docs
rm -rf htmltemp.$$ rm -rf htmltemp.$$
# Create python docs. If we are making a release then stop immediately if # create python docs unless you say ./makedocs fast
# the python docs can't be created (this happens if the .so file isn't compiled) if [ "$1" != "fast" ]
if [ "$1" = "makerel" ]
then then
build_python_interface test-python cd ..
sphinx-build -b html docs/python sphinx.$$ || report_failure python setup.py build_sphinx -c docs/docs/python --build-dir docs/sphinx.$$ || report_failure
else cd docs
if [ "$1" != "fast" ] cp -r sphinx.$$/html docs/web/python
then mv sphinx.$$/html docs/chm/docs/python
build_python_interface no-test-python rm -rf sphinx.$$
fi;
sphinx-build -b html docs/python sphinx.$$
fi; fi;
cp -r sphinx.$$ docs/web/python
mv sphinx.$$ docs/chm/docs/python
cp docs/cache/dlib/test/makefile docs/web/dlib/test cp docs/cache/dlib/test/makefile docs/web/dlib/test
cp docs/cache/dlib/test/makefile docs/chm/docs/dlib/test cp docs/cache/dlib/test/makefile docs/chm/docs/dlib/test
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment