-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
WARNING: html_static_path entry ... does not exist #1776
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
Comments
FWIW, the following does render: |
This might be related to some recent refactoring of domains and subprojects, have you made any changes to domains recently? It might be worth double checking those, or testing the new domain admin interface. |
Also, to remove the warnings, try setting |
Thanks for the tips, @agjohnson. I am aware of no changes in the Domains section of the Admin interface. Is there another Admin UI? I tried adding http://docs.pylonsproject.org/projects/pyramid-tutorials/en/latest/ as the canonical domain name at the above, but got an error message:
In our project's conf.py we have
I wonder if that has anything to do with it?
That was one of my earlier attempts which failed, too. 😞 |
Calling @ericholscher in on this, he's had the most experience with domains and subprojects lately. |
Another data point, the Pyramid docs build just fine. Pyramid is our "gold standard" for the ideal setup and configuration regarding Sphinx and RTD. That might give y'all something that works for comparison. Thanks for looking into this. |
This is an issue with our handling of underscores in project slugs. The work I did likely reverted a hacky bit we were doing transforming them. _'s are illegal in subdomains, so we don't allow them anymore, but we need to migrate old projects to fix their slugs. I will plan on doing this today, and it will fix this issue. The main thing that needs to happen is redirects. We are already doing these redirects on subproject & subdomain URL's, we just need to add them to the actual project pages on RTD.org, and it should be seamless. |
Thanks, @ericholscher, looks like those 6 projects are back. Closing this issue as resolved. In this scenario, it was actually a Good Thing™ that the 404 occurred without a redirect. I might not have noticed with a redirect, depending on implementation. |
…NG: html_static_path entry '/home/docs/checkouts/readthedocs.org/readthedocs/templates/sphinx/_static' does not exist" on readthedocs. Reference: readthedocs/readthedocs.org#1776 (comment)
Based on readthedocs/readthedocs.org#1776 this might do the trick Refs SHOOP-2419
"subtask targets" -> "retargetable subtasks" For conf.py -- copied over one in pipelines_lsst_io, modified it slightly as so: - 2016 -> 2017 - commented out release version Then was getting a warning, found from: readthedocs/readthedocs.org#1776 Modifying this line: html_static_path = ['_static'] to: html_static_path = [] made it compile fine, no warnings.
I get this How can be avoided? |
I have the same issue as @ale5000-git , is there a work around here? |
I got the same issue here http://mogan.readthedocs.io/projects/api-ref/en/latest/v1/index.html |
@stevepiercy: Could you please reopen the issue? |
@ale5000-git It's up to the maintainers. Ping @agjohnson for triage, or open a new issue, referencing this one. |
Fixes following warning when generating documentation. WARNING: html_static_path entry u'.../_static' does not exist More info: readthedocs/readthedocs.org#1776
…include 2018, made html_static_path = [] to prevent waring on RTD build (see readthedocs/readthedocs.org#1776)
See readthedocs/readthedocs.org#1776 for more information.
See readthedocs/readthedocs.org#1776 for more information.
See readthedocs/readthedocs.org#1776 for more information.
…include 2018, made html_static_path = [] to prevent waring on RTD build (see readthedocs/readthedocs.org#1776)
readthedocs/readthedocs.org#1776 Signed-off-by: Beat Buesser <[email protected]>
This is needed to avoid the 'html_static_path entry '_static' does not exist' warning readthedocs/readthedocs.org#1776
* A small shift in notation * Docs: Clarify ex2-surface mathematical description * Refactor \boldsymbol -> \bm * Refactor \mathbf -> \bm * Sphinx: clear html_static_path This is needed to avoid the 'html_static_path entry '_static' does not exist' warning readthedocs/readthedocs.org#1776 * Fix some incosistencies * Invert inner products (u,v) -> (v,u) * Add SVG figure for coordinates on the sphere * doc: use dirhtml on readthedocs * Improve caption of sphere coords figure * Add reference to figure in the bps on the cubed-sphere section Co-authored-by: Jed Brown <[email protected]>
It seems like `_static` dir is not found. Attempt a fix according to: readthedocs/readthedocs.org#1776 (comment)
It seems like `_static` dir is not found. Attempt a fix according to: readthedocs/readthedocs.org#1776 (comment)
* This may fixes the build warning * Also this may happen in the future: readthedocs/readthedocs.org#1776 (comment)
* This may fixes the build warning * Also this may happen in the future: readthedocs/readthedocs.org#1776 (comment)
This was causing the following warning: `WARNING: html_static_path entry '_static' does not exist` Removed since it gets added by default See readthedocs/readthedocs.org#1776 (comment)
It is not needed since we have no static assets and results in a warning on GitHub Actions: "WARNING: html_static_path entry '_static' does not exist" See readthedocs/readthedocs.org#1776 (comment)
Sphinx issues a warning, when the `html_static_path` contains paths with underscores. `tox -e docs` resulted in the following warning: "WARNING: html_static_path entry '_static' does not exist" As `_static` is the default value for `html_static_path` there is no need to configure it explicitly. Also see readthedocs/readthedocs.org#1776 An alternative approach would have been to set the path to e.g. `static`.
Why: Something on read the docs end How: Remove _static from conf.py See: readthedocs/readthedocs.org#1776 Tags: continuous integration documentation
This is done to stop the warning related to html_static_paths when running `make html`. See readthedocs/readthedocs.org#1776.
I noticed a 404.
http://docs.pylonsproject.org/projects/pyramid-tutorials/en/latest/
This issue cropped up recently for at least 5 other Pylons Project project's documentation.
http://docs.pylonsproject.org/projects/pyramid_tm/en/latest/
http://docs.pylonsproject.org/projects/pyramid-jinja2/en/latest/
http://docs.pylonsproject.org/projects/pyramid-debugtoolbar/en/latest/
http://docs.pylonsproject.org/projects/pyramid-zcml/en/latest/
http://docs.pylonsproject.org/projects/pyramid-cookbook/en/latest/
All was working fine a few weeks ago and there had been no changes to these repos that could have caused a build to fail. After much Googling, flailing, and random guessing, I just gave up. Every build ends up with a false positive like the following.
https://readthedocs.org/projects/pyramid_tutorials/builds/3413804/
Any insight would be greatly appreciated.
The text was updated successfully, but these errors were encountered: