Joshua Zeltser
3e06d64270
Merge branch 'master' into issue-4009
7 years ago
Thomas Kluyver
1d9d5d7128
Merge pull request #4689 from uclixnjupyternbaccessibility/issue-3970
...
Solved Issue #3970
7 years ago
Thomas Kluyver
530a026e2a
Merge pull request #4694 from uclixnjupyternbaccessibility/issue-3997
...
Solved Issue #3997
7 years ago
Thomas Kluyver
7760369e3c
Merge pull request #4685 from uclixnjupyternbaccessibility/issue-3938
...
Solved Issue #3938
7 years ago
Thomas Kluyver
2fab244fb6
Merge pull request #4691 from uclixnjupyternbaccessibility/issue-3973
...
Solved Issue #3973
7 years ago
Thomas Kluyver
a6926b237a
Merge pull request #4693 from uclixnjupyternbaccessibility/issue-3996
...
Solved Issue #3996
7 years ago
norah
263b01e7df
#4009 removed the need to tab twice upload button
7 years ago
Joshua Zeltser
d581abaab9
Added translation function call
7 years ago
Joshua Zeltser
2df70e79e2
Added trans tags for the aria-label of the upload button
7 years ago
Joshua Zeltser
9588b98ec2
Added trans tags to the "Toggle Dropdown" span
7 years ago
ednut15
b341f1217d
#3996 Removed role button attribute from Trusted notificaton as it is not clickable.
7 years ago
Thomas Kluyver
cfb9262338
Merge pull request #4686 from uclixnjupyternbaccessibility/issue-3941
...
Solved Issue #3941
7 years ago
Thomas Kluyver
48445c87d0
Merge pull request #4703 from uclixnjupyternbaccessibility/issue-3957
...
Solved issue 3957
7 years ago
Thomas Kluyver
3c9cad69af
Merge pull request #4674 from asreimer/patch-1
...
bugfix: shutdown_server returns True when pid exists
7 years ago
Thomas Kluyver
2d274295c9
Merge pull request #4713 from saraedum/patch-2
...
Fix typo
7 years ago
Min RK
efc0f0089e
Allow ?no_track_activity=1 to opt-out of activity tracking ( #4235 )
...
* Don't track API requests with `?no_track_activity=1` in the activity counter
allows external idle-culling scripts to avoid updating the activity counter
* Don't track kernel shutdown as kernel activity
this causes idle-kernel shutdowns to restart the idle-shutdown timer
user-requested shutdowns will still be tracked as api activity
* test ?no_track_activity=1 tracking
* Changelog for activity
7 years ago
Kevin Bates
f68e34f198
Add keepalive ping on gateway websocket
7 years ago
Kevin Bates
6939fae22b
Add authorization token to header only if no authorization already
7 years ago
Kevin Bates
191dc333f6
Modify/add various timeout values
...
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.
7 years ago
Solaris
83f591b81f
Fix binary message issue when configured to forward to gateway ( #4576 )
...
If the message is bytes, we should set binary=True
This is a port from NB2KG PR jupyter/nb2kg#33
7 years ago
Julian Rüth
973b06610b
Fix typo
7 years ago
Scott Sanderson
8d98489f84
BUG: Pin preact and friends using ~ rather than ^. ( #4681 )
...
The most recent release of preact-compat appears to have broken notebook.
7 years ago
ednut15
b6ac3d7a6d
Solved issue 3957
7 years ago
ednut15
99ad777942
Solved issue #4009
7 years ago
ednut15
d8df52b267
Solved Issue #3997
7 years ago
ednut15
b5b494d2ad
#3996 Added role attribute with value button to the element
7 years ago
Joshua Zeltser
a76a3e6cce
added new span to new button to cause narrator to mention it is a dropdown
7 years ago
Joshua Zeltser
6953e4d704
fixed issue 3970 giving upload button an aria-label
7 years ago
Joshua Zeltser
24d2c6026f
#3941 : narrator now reads labels of textareas in popups
7 years ago
Joshua Zeltser
9b1fa3d66b
#3938 : solved this issue, but more checking needs to be done to see whether this is sufficient
7 years ago
Ashton Reimer
dd0f5d2608
bfix: shutdown_server returns True when pid exists
...
`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.
7 years ago
Tim
6174498ab0
Add id for command palette button group ( #4661 )
7 years ago
Pierre Tholoniat
922e97922c
Fix French typo ( #4651 )
...
Corrected "Échec de la connection" to "Échec de la connexion"
7 years ago
Abhinav Sagar
bc920e9879
.travis.yml: The 'sudo' tag is now deprecated in Travis CI ( #4654 )
7 years ago
Min RK
a403d59cb0
Merge pull request #4642 from betatim/js-redirect
...
Use JavaScript to redirect users
7 years ago
Tim Head
077322dcd9
Use JavaScript to redirect users
7 years ago
Min RK
a33f4c60b1
Merge pull request #4591 from dalanicolai/patch-1
...
Update Working With Markdown Cells.ipynb
7 years ago
Thomas Kluyver
9425250005
Merge pull request #4588 from t-makaro/downloadas
...
fix duplicates in download as menu
7 years ago
Thomas Kluyver
9237c3732e
Merge pull request #4615 from LuisARodr/dualmode_execute
...
Convert dualmode_execute, dualmode_clipboard & dualmode_markdown to selenium
7 years ago
Tyler Makaro
1ae7838227
exporter naming scheme
7 years ago
Luis Rodriguez
cd2ea150a0
Refactor for
...
Changed 'for mode in cells_mode' for 'for i, mode in
enumerate(cells_mode)'
Removed the manual 'i' increment and declaration.
7 years ago
Luis Rodriguez
799b8be841
Move repeated assert mode
...
Moved 'assert mode == keyboard_mode' ouside the branches.
This means that if a unknown mode comes its gonna get catched by the
assert and never gona get to the else statement.
For this, the else stament moved to before the assert, caching the mode
error before the assert.
7 years ago
Tyler Makaro
6876f74c6d
moved hard coded exporters
7 years ago
Luis Rodriguez
6679891464
Give space to inline comments
7 years ago
Luis Rodriguez
6b7d179697
Change assert for Exception
7 years ago
Luis Rodriguez
83b3c19de3
Solve insonsistensy on is_focused_on
...
Changed asserts for returns
Changed how the function is called on edit mode check
7 years ago
Luis Rodriguez
b294bf57f8
Refactor of ifs
...
Removed parentheses
Changed '==' for 'is' on None
7 years ago
Luis Rodriguez
c276d81914
Update docstring
...
Added more information about what the checks are
7 years ago
Thomas Kluyver
8ae0c047a9
Merge pull request #4617 from TeresaPartidaS/convert_multiselect_toggle_js_to_selenium
...
Migrate multiselect toggle test to selenium
7 years ago
TPartida
8749a5db99
Modified 'scrolling enabled' test assert
7 years ago