-
Notifications
You must be signed in to change notification settings - Fork 794
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
Rust docset not completely rendered ("Loading content...") #1195
Comments
Same issue after updating docsets |
I don't think it's an issue with Zeal though, same problem occurs in Chrome and Firefox when loading the page. No errors in the console. |
This comment has been minimized.
This comment has been minimized.
I was talking about pages from the docset. You can open them in an external browser, there's an option in the context menu. |
Ah okay. However I did just try that, and it does render the methods of |
Not sure if this is related, but I also noticed that some entries (or many actually) are incomplete. I just updated the Rust docs again and checked e.g. And here is what the official docs show (I had to collapse the methods to show more than the first few. Although still could not fit all.):Sadly this makes Zeal quite useless for Rust right now. |
Using Qt WebEngine (#1125) appears to fix the rendering. |
If you try to load the documentation for
std::iter::Iterator
, the documentation has been stripped of its JavaScript and the method documentation is missing entirely (all that is there is aLoading content...
placeholder). I think this is because Rust's documentation uses JavaScript to fill in the documentation section for some trait and struct methods.Zeal Screenshot -- Iterator
docs.rust-lang.org Screenshot -- Iterator
This happens for more than just
Iterator
, the same issue is present forstd::option::Option
:Zeal Screenshot -- Option
docs.rust-lang.org Screenshot -- Option
... and any other Rust stdlib types I've tried to look up (such as
std::vec::Vec
). I'm not sure if this is a problem with the Rust docset itself or if it's how Zeal renders it, but it renders the offline documentation practically useless because you can't get any documentation about methods on stdlib types and traits.The text was updated successfully, but these errors were encountered: