strawlab / flydra

live, low-latency markerless multi-camera 3D animal tracking system
Apache License 2.0
58 stars 18 forks source link

flydra-sphinx-docs math markup broken #7

Closed stefanv closed 13 years ago

stefanv commented 13 years ago

See for example

https://code.astraw.com/flydra-doc/orientation_ekf_fitter.html#process-model

stefanv commented 13 years ago

It looks like the docs are correctly built; however, github doesn't like directory names starting with an underscore, so the images are not displayed.

In the scikits.image build process, we use this hack:

sed -i "" 's/_static/static/g' find . -name "*.html" sed -i "" 's/_images/images/g' find . -name "*.html" mv _static static mv _images images

astraw commented 13 years ago

Actually, the problem was that I didn't have dvipng installed on the buildbot slave that was building and uploading the docs. (This is required by sphinx.ext.pngmath.)

The problem is corrected now.