-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
bpo-31045: Language switch #2652
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
Merged
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b7cddc3
Doc: Indicate the language
JulienPalard 7f74c22
Renaming version_switcher to switchers (to add language_switcher).
JulienPalard 21b7719
Adding language switch.
JulienPalard e12dd32
Doc switchers: Enhance readability of regex parsing versions.
JulienPalard 6f450c7
Doc switchers: Desambiguate the need of a replace(/\/+$/g, '') by pro…
JulienPalard 2e8eb7f
Doc switchers: py3k can't reach js, it's redirected server-side by ng…
JulienPalard c14cc52
Doc switchers: Examples matching actual regexes.
JulienPalard da7a034
Doc switchers: Better fallback on unexisting translated version.
JulienPalard 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
Doc switchers: Desambiguate the need of a replace(/\/+$/g, '') by pro…
…per naming.
- Loading branch information
commit 6f450c7656fd463fcf3340baf03a3385fd64c2ae
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
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.
most of the code is copied from on_version_switch(), can't you try to factorize the code a little bit more?
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.
Yes I could factorize it, I actually though about it a few seconds, but I don't see how it can make code any better, in the "more readable" sense. Yes it can probably be made shorter (not even sure). But I like the readability of:
and
and factorizing it will put a new level of "indirection", making it ultimately harder to read.