-
-
Notifications
You must be signed in to change notification settings - Fork 37
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
Intersphinx #28
Intersphinx #28
Conversation
Also add smoke integration test that parsing doesn't explode.
Eventually, real functional tests wouldn't be bad.
Also re-instantiate the old name as an attribute for backward-compatibility.
Same result as of 3e35f80 — search not working nor index entries in the tree list on the left. I am assuming flag |
It is, although sometimes caching does weird stuff. Ideally try with a new name.
|
|
Could you provide me with an archive of your built docs? Thanks! |
https://www.dropbox.com/s/4kkfr2iszvwfz67/pandora-apidoc.tar.gz includes git repository, compiled sphinx doc, and dash docset. |
Thank you for your help! I looked into the objects.inv and turns out the API functions/methods/symbols aren’t properly defined. They’re all within FWIW, doc2dash ignores the But this is definitely an issue with the documentation and nothing I can fix within doc2dash, sorry! |
Is it possible to extend doc2dash to use a different namespace in objects.inv for non-Python sphinx docsets? Is it the norm to use the Thank you for clarifying the issue with the docset I am using. |
As said, doc2dash (in this branch) explicitly ignores the part before the colon. So That said, you can always write own parsers of course. :) But in this case I really think it's the docset that should be fixed. |
Use intersphinx files for symbol mining Fixes #27
Use Sphinx’s own intersphinx files and APIs to get all symbol names. That’s both more robust and gives us a better introspection into the actual types of symbols.
Todos:
Should fix #27 and #25.