-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Index more domain data into elasticsearch #5979
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
Merged
ericholscher
merged 36 commits into
readthedocs:master
from
dojutsu-user:index-more-domain-data
Aug 27, 2019
Merged
Changes from 7 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
7b3d3c3
Index more domain data
dojutsu-user f1f522b
update json parsing to capture sphinx data
dojutsu-user 20777cb
remove redundant import
dojutsu-user d97738f
add comments
dojutsu-user c00575e
fix type
dojutsu-user e3a65dc
Merge branch 'master' into index-more-domain-data
dojutsu-user f57afe1
get domain signature alos
dojutsu-user 7a5e387
Merge branch 'master' into index-more-domain-data
dojutsu-user 9362b64
correct documents.py
dojutsu-user 3255f84
don't reindex domain data multiple times
dojutsu-user bd53562
use try...except a little lower
dojutsu-user fcbb2d0
Show domains docstrings
dojutsu-user b6221c6
enable highlighting in main site file search
dojutsu-user 5f186e7
small fix in parse_json
dojutsu-user 301b2af
Fix main site search to show sphinx domain docstrings
dojutsu-user 9e2d497
remove _get_domain_data()
dojutsu-user 597a59b
Merge branch 'master' into index-more-domain-data
dojutsu-user 849ba4d
don't index toctree elements
dojutsu-user 6501e7c
add try...except
dojutsu-user 8e0fe5b
fix small error in parse_json
dojutsu-user 8bb25b9
Update match query
dojutsu-user 8cc8999
update parse_json to delete only specific <dl> tags
dojutsu-user 090f187
Restore path and link
dojutsu-user d456bf0
index type_display
dojutsu-user 5c74690
add comment back
dojutsu-user 17c88aa
Merge branch 'master' into index-more-domain-data
dojutsu-user 28ec7aa
update min files
dojutsu-user 2081269
Merge branch 'master' into index-more-domain-data
dojutsu-user 2fe0d0a
update minified files and parse_json
dojutsu-user 6a9db48
Merge branch 'master' into index-more-domain-data
dojutsu-user e61fd36
fix lint
dojutsu-user b597da9
update json data
dojutsu-user 5c3f71b
fix tests
dojutsu-user 7d1ed0c
update json data
dojutsu-user 9c9f03f
fix tests
dojutsu-user 4beee77
Merge branch 'master' into index-more-domain-data
dojutsu-user File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we removing this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need
doc_display
-- because the main title of each result contains thedoc_display
.But I have undoed the change for
type_display
-- we can make use of this.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😕
I can't seem to find a good way to display every information.
type_display
looks unncessary when we are displayingrole_name
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, sure. They are showing the same information. I believe the
type_display
is meant for human readable output, androle_name
is not, no?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both are quite readable:
py:function
std:confval
py:class
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think
configuration value
overconfval
is much better for non-technical users. We should definitely try to use the display value, that's the whole reason it exists if for this use.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ericholscher
I realised (while testing) that some sphinx domains don't have values for type_display.
Should we still show for those who have? or just keep showing role_name?