-
Notifications
You must be signed in to change notification settings - Fork 888
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bad link on docs.pylonsproject.org search page #3026
Comments
This is known[1] and is something we cannot fix on our own unfortunately. I'll leave this issue open to track it however. Thanks for the report! |
It looks like we could pin to sphinx 1.4 but I'm not sure if we're depending on anything in 1.5 at this time. |
We would also need to pin to docutils 0.11 because sphinx < 1.5 does not pin it to a compatible version of docutils. I'm inclined not to change our docs_extras = [
# Pin Sphinx to 1.4.* and docutils to 0.11 due to search issues with RTD:
# https://github.com/rtfd/readthedocs-sphinx-ext/issues/25
# https://github.com/sphinx-doc/sphinx/issues/3212#issuecomment-283756374
'Sphinx == 1.4.*',
'docutils == 0.11', Here's the issue being tracked by RTD folks: I've subscribed to both issue threads, so I'll get notification of any updates. |
YAY! Fix is coming this week! |
This is now fixed. |
Recently I use the html version searching the document and found that, for example:
http://docs.pylonsproject.org/projects/pyramid/en/latest/search.html?q=cache_max_age
In result, the link of
pyramid.config
will refer to:http://docs.pylonsproject.org/projects/pyramid/en/latest/api/config.rst.html?highlight=cache_max_age
However that's a wrong place now. The true URL is this one:
http://docs.pylonsproject.org/projects/pyramid/en/latest/api/config.html?highlight=cache_max_age
which the end of URL without the
.rst
extension name in the middle.This problem also found on pyramid_cookbook's document search page and some else.
The text was updated successfully, but these errors were encountered: