This is a very small guide to help with the development of this extension. Since it needs a backend and the event is only triggered only on mouse hover, it could be tedious if you don't know these tips & tricks.
This extension needs a Read the Docs backend to retrieve the content that will be inserted in the tooltip. You can use the API from https://readthedocs.org directly or a local instance of Read the Docs as backend.
This is the easiest way to have the backend working, since you do not need to do anything. Although, you need to use an already existent project in Read the Docs.
To setup this approach, you need to put these settings in the conf.py
of your docs:
hoverxref_api_host = 'https://readthedocs.org'
After building the documentation all the requests will be done to URLs like:
https://readthedocs.org/api/v3/embed/?doctool=sphinx&doctoolversion=...&url=...
Note
The project and version has to be successfully built on Read the Docs to return the content requested.
With your documentation's project configured with the previous settings, you are ready to build and serve the docs from your computer.
Build the documentation with these commands:
.. prompt:: bash cd docs/ make clean make html
Serve the documentation locally with this command:
.. prompt:: bash python -m http.server --directory _build/html 9000
Now, you can hit http://localhost:9000/ and you should see your documentation here.
You can install Read the Docs locally following these instructions. Although, it may be too complicated just to retrieve the same content that you could have in https://readthedocs.org.
To make the extension to work, you will need to define this setting in your conf.py
file:
hoverxref_api_host = 'http://community.dev.readthedocs.io'
Tip
The value of this setting should be the same as PUBLIC_API_URL
.
Once you have done that, you can just import the project directly in your local instance, and the tooltips should work without problem.
Instead of rebuilding the whole project,
we can modify the Javascript file that has the hoverxref_api_host
hardcoded to point it to our local instance.
- Open the documentation page you want to try on Google Chrome
- Press F12
- Go to the :guilabel:`Sources`
- Find out the file
js/hoverxref.js
- Modify the function
getEmbedURL
to point theurl
variable to the local instance:/_
to use the proxied APIhttp://community.dev.readthedocs.io
to use the regular API
Tip
This trick is useful for online documentation we don't control and want to test a change in the backend works as we expect. However, to do this, you will need to allow insecure content in your Chrome instance first:
.. prompt:: bash google-chrome-stable --allow-running-insecure-content --user-data-dir='/tmp/testing'
You need to find the selector of the a
element that you want to emulate the mouse hover event first,
then from the Javascript console, you can force the browser to trigger this event for us.
This way, the element is inserted in the DOM and will persist there.
Now, you can find the div
for the tooltipster and edit the CSS used to render it.
$('#section > p > a').trigger('mouseenter')
Happy hacking!