You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The make clean command in the docs/ folder deletes everything within its build/ subfolder - including the project homepage and the EBU logo. To address this in a simple way and to also separate this static content from the actual generated documentation, I propose to move the homepage/image to their parent directory i.e. to the docs/ folder.
Note that the moved location will affect a solution to #458.
The text was updated successfully, but these errors were encountered:
This seems like a good idea. Also need to make sure that the build script for the docs that is used to make the gh-pages branch copies the right stuff across. This solution would mean it needs to selectively copy some but not all contents of the docs/ folder instead of everything. It might be an easier solution to create a separate subfolder of docs/ that contains the static non-built content, and copy that as an additional step to copying that to the build/ folder contents after building.
Or solve this and #458 by changing $BUILDDIR to /build/sphinx in the docs/Makefile and updating the links in index.html?
This seems to be a more elegant solution to me (more separation between the different docs parts; no copying required, which leads to redundancy on disk), which also requires less changes. However I don't understand how this solves #458, as the homepage will still be in the parent directory of the built Sphinx docs.
The
make clean
command in thedocs/
folder deletes everything within itsbuild/
subfolder - including the project homepage and the EBU logo. To address this in a simple way and to also separate this static content from the actual generated documentation, I propose to move the homepage/image to their parent directory i.e. to thedocs/
folder.Note that the moved location will affect a solution to #458.
The text was updated successfully, but these errors were encountered: