-
Notifications
You must be signed in to change notification settings - Fork 228
Updating Documentation
The RMG Documentation is built using Sphinx and is hosted on GitHub, completely independent of the main RMG website. This page provides information on updating the documentation and deploying those updates by pushing to the gh-pages branch of RMG-Py.
The documentation source consists of a few main sections, all located in the documentation folder in the main RMG-Py directory:
- users/rmg - RMG user's guide
- users/cantherm - Cantherm user's guide
- theory - Theory guide
- reference - API reference
Most of the documentation is hand-written, although a substantial portion of the API is automatically generated from inspecting the Python classes, which means that you must have a fully functioning, cythonized, compiled, working copy of RMG-Py in your path to correctly generate the documentation. Documentation source pages are primarily written in the reStructuredText format, which is automatically formatted into html by Sphinx. See the Sphinx documentation for help on formatting, style, cross-linking, etc.
Once you've updated the appropriate source files, you then use various make
targets starting in the documentation
folder to create and upload the documentation. You can learn more by reading the documentation Makefile. This is mostly like the standard Sphinx makefile, but with some additional targets setup_github_pages
, publish
, and clean
, for easily or automatically uploading the results.
This is the easiest method of modifying the code, though you won't be able to see how your changes look on the website.
If you have GitHub pushing permissions, you can easily edit the documentation and commit it on the documentation
branch from your web browser. When you are ready to publish, you can create a pull request to the master branch. Once the pull request is merged, then the documentation will need to be rebuilt and pushed to the gh-pages branch.
First be sure that you have installed Sphinx in your conda environment:
source activate rmg_env
conda install sphinx
To properly build the automatic portions of the API, docstrings must be included in cythonized modules. To do so, enable the embedsignature
cython directive in setup.py and recompile RMG (make; make clean
). This is an optional step if you're only inspecting sections in the user's guides with no plans to push.
To make a local copy of the documentation to inspect it (everyone should be doing this regularly, to check that the documentation and docstrings that you write is going to be displayed correctly)
cd RMG-Py
cd documentation
make html
then it should tell you (after some warnings) Build finished. The HTML pages are in build/html.
Take a look!
You can also make latexpdf
to generate a huge PDF.
Once you are satisfied with how everything looks, you may publish the HTML to the official website at http://reactionmechanismgenerator.github.io/RMG-Py. For this you will need proper priviliges at github.com (push access to ReactionMechanismGenerator/RMG-Py).
If publishing for the first time from this repository, and you have not setup the build directory to push to gh-pages, run the following from the documentation folder:
make setup_github_pages
This will remove your build/html
folder and replace it with a git repository with the gh-pages branch checked out.
You only need to do this once; the following steps, however, you should do every time.
First it's a good idea to do a clean build, to remove deprecated files which won't be deleted otherwise. The clean
target sets aside the git repository information but wipes everything else. Make sure you are compiling with cythonized docstrings, described at the top of this section.
make clean
make html
Now you can publish, which can be done automatically with another make target:
make publish
It will ask for a commit message.
If you wish to automate all this, eg. have a bot do it after every commit to the official master, then pass the environment variable COMMITMESSAGE
so it doesn't wait for a response.
If you obtain any errors, look at the Makefile for the commands and modify them to effectively push the documentation. For example, you may need to force push the changes after rebasing.
Note that the Makefile does not currently upload any LaTeXed PDFs, only the HTML.
When adding a page to the documentation, you need to manually reference it from the table of contents, or people will struggle finding it. For example, if you create a file howToMakeANewFile.rst
in the documentation, you will want to add howToMakeANewFile
to the index.rst
file which is in the same directory.
If this is not done, people will be unable to utilize all your hard work.