Min RK
0c90391f8a
handle display-updates as updates
10 years ago
Min RK
4439a19d24
test display_id handling
10 years ago
Min RK
a7a30c3bde
fix handling of display_id repeats in a single output area
10 years ago
Min RK
5b2279c192
support repeat displays with id
10 years ago
Min RK
f82f2568f5
Support update_display
10 years ago
Min RK
0f05b2bf26
display_id comes from transient dict, not top-level
10 years ago
Min RK
30d3406f54
allow updating display_data messages in-place using display_id
10 years ago
Min RK
1c930b1b9c
don’t clear callbacks for cell output until next execute
...
adds callbacks.clear_on_done bool flag for kernel callbacks.
Default: true (current behavior)
Setting to false means that the caller is taking responsibility for clearing callbacks.
Use this in cells to only clear callbacks on the next execution, for better handling of async output.
10 years ago
Thomas Kluyver
b10479bb40
Merge pull request #1822 from adamchainz/readthedocs.io
...
Convert readthedocs links for their .org -> .io migration for hosted projects
10 years ago
Adam Chainz
a947025308
Convert readthedocs links for their .org -> .io migration for hosted projects
...
As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/ ) ‘Securing subdomains’:
> Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard.
Test Plan: Manually visited all the links I’ve modified.
10 years ago
Thomas Kluyver
f8f53ee805
Merge pull request #1807 from minrk/set-dirty-output
...
set dirty flag when output arrives
10 years ago
Min RK
22b3efb39d
set dirty flag when output arrives
...
and when the prompt changes
we were previously only setting dirty when execution finishes, leaving dirty=false during many changes until the output is complete
10 years ago
Min RK
92d3f4235d
Merge pull request #1359 from blink1073/generic-session
...
Update the session api in preparation for file and console sessions
10 years ago
Matthias Bussonnier
558ed9a6db
Merge pull request #1769 from gnestor/persist-header-toggle
...
Persist header and toolbar toggle status in nbconfig
10 years ago
Min RK
884eb8c4ad
Merge pull request #1802 from ashishdahiya/ws_url
...
Set ws-url data attribute when accessing a notebook terminal
10 years ago
Matthias Bussonnier
38f57efd9d
Merge pull request #1803 from willingc/doc8check
...
Edits to correct rst errors found by doc8
10 years ago
Carol Willing
f2f916315c
Edits to correct rst errors found by doc8
10 years ago
Ashish Dahiya
c38c476df8
Create ws_url from wsUrl attribute. If wsUrl is not found, fallback to location.host
10 years ago
Ashish Dahiya
67215cf8a7
Set ws-url data attribute to access notebook terminal via a specific base URL for websockets
10 years ago
Matthias Bussonnier
bf14fc16d4
Merge pull request #1798 from minrk/extension-aliases
...
Add base aliases for nbextensions apps
10 years ago
Min RK
b398d005ad
Add base aliases for nbextensions apps
...
Includes `--log-level` alias that was missing from install/enable applications
10 years ago
Min RK
3617c5d9b8
Merge pull request #1783 from gnestor/remove-duplicate-dependencies
...
Remove duplicate dependencies in bower
10 years ago
Matthias Bussonnier
111e41f521
Merge pull request #1776 from gnestor/html-table-styles
...
Update table styles to be consistent with JupyterLab
10 years ago
Matthias Bussonnier
c70455b779
Merge pull request #1792 from spoorthyv/master
...
Updated Jupyter Logos to Fit New Guidelines
10 years ago
spoorthyv
6a3260b435
Updated Jupyter Logos
10 years ago
Matthias Bussonnier
ca8cd387b8
Merge pull request #1791 from ctk3b/patch-1
...
Fix minor typos in notebook server docs
10 years ago
Christoph Klein
dfa257cbcc
Fix minor typos in notebook server docs
10 years ago
Grant Nestor
4df3314761
Provide `Promise` via webpack
10 years ago
Carol Willing
8dfdd68d0d
Merge pull request #1785 from jupyter/willingc-patch-1
...
Update badge on README
10 years ago
Carol Willing
eb30f25855
Update badge on README
10 years ago
Grant Nestor
bdbfd37b24
Remove `moment` script tags
10 years ago
Grant Nestor
72e75efe6c
Move remove duplicate `moment` dependency in bower
10 years ago
Thomas Kluyver
3ac3b254af
Merge pull request #1781 from himani1/patch-1
...
Updated README.md
10 years ago
Himani Arora
d29794af15
Fixed errors with usage of 'the'
10 years ago
Thomas Kluyver
bb3b2d563d
Merge pull request #1765 from gnestor/webpack-es6-promise
...
Add es6-promise polyfill to webpack config
10 years ago
Himani Arora
34ec6b5eda
Updated README.md
...
Fixed minor mistakes in readme.
10 years ago
Grant Nestor
7e3e9f31aa
Add es6-promise polyfill to webpack config
10 years ago
Matthias Bussonnier
dd4b052403
Merge pull request #1482 from yuvipanda/readonly-cells
...
Respect 'editable' cell metadata
10 years ago
Grant Nestor
6c1fe1f947
Move toggle logic from property setters in to actions
10 years ago
Grant Nestor
a0fd16cc6f
`border-width: 1px`
10 years ago
Grant Nestor
d411f0ac43
Update table styles to be consistent with JupyterLab
10 years ago
Grant Nestor
c656fc0846
Access config via `ConfigWithDefaults` vs. `ConfigSection`
...
Move toggle logic to `notebook.js` vs. `actions.js` to be consistent
with `notebook.line_numbers`
10 years ago
Grant Nestor
61eec926fe
Check header and toolbar toggle status after nbconfig loads
10 years ago
Grant Nestor
11d56a23e8
Define `header` and `toolbar` properties for notebook
...
If `notebook.header` or `notebook.toolbar` are `false`, hide them on
load
10 years ago
Thomas Kluyver
179bb24fbf
Merge pull request #1728 from minrk/appveyor
...
[WIP] add appveyor.yml to start running tests on Windows
10 years ago
Min RK
0b7435b474
add one missing skip_win32 in nbextension symlink tests
...
all the other symlink tests are already skipped
10 years ago
Min RK
f96feb5e8b
fix os.path.samefile backport on py2 + Windows
...
os.path.samefile is available everywhere but Windows + py2.
Backporting the py3 implementation doesn't work because
`os.stat` on Windows py2 returns 0 for st_ino and st_dev,
which will always be equal.
In this case, use case-insensitive path comparison, plus full-stat comparison (times included).
10 years ago
Min RK
28c5d98196
Release notes for 4.2.3
10 years ago
Min RK
0fce90df59
Merge pull request #1764 from gnestor/upgrade-codemirror
...
Upgrade Codemirror to 5.18
10 years ago
Grant Nestor
84e3c86519
Upgrade to Codbmirror 5.18
10 years ago