forked from jupyter/notebook
-
Notifications
You must be signed in to change notification settings - Fork 0
Monkey patch 102516 #2
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
Open
dalejung
wants to merge
475
commits into
master
Choose a base branch
from
monkey_patch_102516
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
Closed
Add "Shutdown" item to Kernel menu
add event for finished execution of cell
typo introduced in unwebpackification
declare contents variable
Patch CodeMirror 5.22
* Edit notebook opens a notebook, Edit any other file type open it in a text editor * View only available for HTML files to disambiguate between “viewing” a notebook or text file (which is the same as editing it) and viewing an HTML file
without this, it is not possible to select any text using the mouse in the contents of the modal. For example: editing the notebook metadata JSON you end up just moving the whole box around instead of being able to select a portion of the JSON using the mouse.
drag modal dialogs by the header only
Make dialogs draggable
doc typos related with issue jupyter#2069
When a kernelspec is removed while a kernel spawned from it is in use the Running tab on the dashboards page errors and no longer shows any results. Fall back on using the kernel name from the session in this case so that users can see and terminate kernels.
Fix JS error on running notebooks tab
Welcome Message for Console and Terminal Output
Adds edit and view buttons
Prevent making releases with wrong version number that will confuse pip, or make sdists to appear more recent than wheels.
Enforce version number at build time.
remove reference to `nodejs-legacy`, since apt packages are usually too old, anyway
make `--user` the non-default option, given the prevalence of conda/virtual envs these days
minor updates to CONTRIBUTING installation instructions
This makes the high-res screenshots larger on a lower-res screen, but nbsphinx doesn't currently handle HTML <img> tags, so we need to use the Markdown format to show images in our docs. Closes jupytergh-2304
Use Markdown image references in example notebook
Move preact, preact-compat, and proptypes to bower
Likely a side-effect of using `.form-control()`
Remove drop shadow from Tag UI for consistency.
Explain how to use cell tags in changelog
only consider stream output for data rate limit
…rate Revert "only consider stream output for data rate limit"
Add latex button to dropdown
Remove cell toolbar reminder
Follow up from PR jupyter#2331
Remove addition of cell toolbar reminder
65b9fc9
to
ffaf67c
Compare
(cherry picked from commit eed0d86)
before notebook itself loads. Previously a single nbextension loading error would mess up loading since Promise.all fails fast.
dalejung
pushed a commit
that referenced
this pull request
Jun 24, 2023
* Add Binder * Build from source on Binder * Add support for notebook server extensions * Add notebook shim * Remove python from deps * Add templates to MANIFEST * Binder * Add matplotlib and numpy to Binder
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Really two issues.
bind_events
has already referenced the old function. I pushed the loading to a function that is called after custom.js.Also, note that I had to change nbextension loading to never
Promise.reject
and to handle errors internally.Promise.all
fails fast which means if a singlenbextension
404s
then other nbextensions get loaded after the notebook get loaded.