Skip to content
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

Fixed issue #3955 #25

Closed
wants to merge 90 commits into from
Closed

Fixed issue #3955 #25

wants to merge 90 commits into from

Conversation

ednut15
Copy link

@ednut15 ednut15 commented Jun 27, 2019

Made sort buttons accessible by keyboard: Fixed issue jupyter#3955

abhinavsagar and others added 30 commits June 7, 2019 11:16
Corrected "Échec de la connection" to "Échec de la connexion"
`check_pid` returns `True` if the PID for a notebook server still exists. Therefore, the `if check_pid(pid):` statements on lines 424 and 437 evaluate to `True` even though the notebook server is still running.

This commit simply adds a `not` to each line: `if not check_pid(pid):` so that the conditional only evaluates to `True` if `check_pid` returns `False`, which happens when the notebook server has shutdown, as expected.
…dit,View,Insert,Cell...etc)present on the menubar.
The most recent release of preact-compat appears to have broken notebook.
…er#4576)

If the message is bytes, we should set binary=True
This is a port from NB2KG PR jupyter/nb2kg#33
The connect and request timeout defaults have been updated from 20 to 60
seconds and a default value of 40 has been added for KERNEL_LAUNCH_TIMEOUT.
The code ensures that KERNEL_LAUNCH_TIMEOUT is in the env and that the
value of the request timeout is at least 2 greather than KERNEL_LAUNCH_TIMEOUT.

This PR is port of the NB2KG PRs 35 and 38.
mgeier and others added 18 commits June 25, 2019 11:44
The new CSS styles have been released with notebook 5.0.0
in March 2017.
- increased `smalltooltip` height to 85px to account for padding in `tooltiptext`
- reduced `ui-button` dimensions in tooltip and pager
Populate changelog based on commit history and some
new functionality described on 5.x release notes including
a section for security fixes.
We were missing a yield statement in the deferral of `get()` to
the superclass.  This issue was occurring only when Tornado 6+
was deployed.

Also removed a debug message producing way too much information.
I removed the mirroring 'Receiving' debug statement previously and
didn't realize there's a 'Sending' statement.  This change removes
that statement.

This should be part of the 6.0 release, just not signficant enough
to warrant include in rc1.
Remove verbose debug statement in gateway mode
@ednut15 ednut15 deleted the issue-3955 branch July 1, 2019 09:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.