Min RK
f82f2568f5
Support update_display
10 years ago
Kyle Kelley
4c54f598ac
Merge pull request #1875 from willingc/edit-comms
...
Minor edits to comms doc
10 years ago
Carol Willing
6b76f0aa8c
Edit from @takluyver review
10 years ago
Carol Willing
f138c32719
Minor edits to comms doc
10 years ago
Matthias Bussonnier
86296f0363
Merge pull request #1871 from takluyver/allow-none-post-save-hook
...
Allow None for post_save_hook
10 years ago
Carol Willing
277ce51dbf
Merge pull request #1874 from takluyver/comms-doc
...
Start documenting how to use Comms
10 years ago
Thomas Kluyver
5cdc8682d3
Start documenting how to use Comms
...
See gh-1869
10 years ago
Thomas Kluyver
ee4b9ce598
Allow None for post_save_hook
...
See gh-1868
10 years ago
Thomas Kluyver
c0928d856e
Merge pull request #1870 from willingc/fix-badgeurl
...
Fix link for rtd badge
10 years ago
Carol Willing
b8d0616135
Fix link for rtd badge
10 years ago
Matthias Bussonnier
606b7377ae
Merge pull request #1866 from gnestor/register-mime-type
...
Add a `register_mime_type` method to OutputArea
10 years ago
Thomas Kluyver
8073af5de4
Merge pull request #1868 from rmorshea/fix_for_traitlets
...
[WIP] fix for default value changes in ipython/traitlets/pull/332
10 years ago
Ryan Morshead
15a37c9ba7
fix for default value changes in ipython/traitlets/pull/332
10 years ago
Matthias Bussonnier
64d996f820
Merge pull request #1855 from minrk/rate-limit
...
iopub rate limit refinements
10 years ago
Matthias Bussonnier
8d666c603f
Merge pull request #1863 from Carreau/rtl-action-toggle
...
Add a quick action to have the possibility to toggle rtl-layout.
10 years ago
Matthias Bussonnier
a1c6e8fc86
Merge pull request #1865 from minrk/clear-editable-deletable
...
don't store default editable/deletable metadata
10 years ago
Grant Nestor
4cf93c8c57
Add a `register_mime_type` method to OutputArea
10 years ago
Min RK
b058209984
strip default metadata in Cell.toJSON
...
avoids saving redundant default info in files
10 years ago
Min RK
61afdb7432
don't set default editable/deletable metadata
...
it fills notebooks with redundant flags
these should only be set if defined and not-default
10 years ago
Matthias Bussonnier
04a431a77e
Add a quick action to have the possibility to toggle rtl-layout.
10 years ago
Thomas Kluyver
2e14975d1f
Merge pull request #1861 from minrk/notebook-mime-type
...
fix notebook mime-type on download links
10 years ago
Min RK
8daac20e22
set notebook mime-type on download links
...
notebooks are not application/json, they are application/x-ipynb+json.
This fixes Safari adding the JSON extension to notebooks on download.
10 years ago
Matthias Bussonnier
a68f3c0aef
Merge pull request #1858 from gnestor/table-hover
...
Add hover styles to HTML table row
10 years ago
Matthias Bussonnier
b16ba43521
Merge pull request #1854 from takluyver/dir-list-performance
...
Improve performance of directory listing
10 years ago
Grant Nestor
795e267aab
Add hover styles to HTML table row
10 years ago
Min RK
3be8697b48
iopub rate limit refinements
...
- reset counter on status: idle (avoids Run All running into limits)
- fix rate measurements to exclude messages not sent due to rate limiting
- fix formatting of rate-exceeded messages, tweak text a bit
- after pausing output, don't resume sending until rate has dropped 20% below limit, to avoid rapid back & forth across the limit
10 years ago
Thomas Kluyver
1de0423448
Improve performance of directory listing
...
- stat() the file once and reuse the result to save on syscalls. Not as
good as using scandir(), but should still help.
- Don't re-check if parent directories are hidden for each file in the
directory.
Could do with testing on Windows.
10 years ago
Thomas Kluyver
715a6c02db
Merge pull request #1851 from gnestor/docs-new-signature
...
Update security docs to reflect new signature system
10 years ago
Grant Nestor
d7e49806de
Merge pull request #3 from takluyver/docs-new-signature
...
More updates to security doc
10 years ago
Thomas Kluyver
b5acf7bf1c
More updates to security doc
10 years ago
Grant Nestor
40660e6102
Update security docs to reflect new signature system
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
Kyle Kelley
2456687a12
Merge pull request #1826 from minrk/cell-clears-callbacks
...
don’t clear callbacks for cell output until next execute
10 years ago
Min RK
dde1a77ef1
Merge pull request #1846 from gnestor/iopub-rate-limit
...
Set finite rate limits for iopub
10 years ago
Grant Nestor
d97000f8b1
Set finite rate limits for iopub
10 years ago
Min RK
5d5d063746
Look for token in Authorization header
...
matches JupyterHub, Kernel Gateway
10 years ago
Min RK
bf249669e1
call it token
...
login_token is redundant
10 years ago
Min RK
5a6d7556af
allow entering login token at password prompt
10 years ago
Min RK
cd3c6c1b8a
use one-time token for opening browser
...
first connection consumes the token, so command-line snoops can’t re-use it.
10 years ago
Min RK
3ba68d8cb7
enable token-authentication by default
...
- add NotebookApp.login_token, used when NotebookApp.password is not set
- store login_token, bool(password) in notebook server-info file
- `jupyter notebook list` shows pasteable URLs with token
General changes:
- notebook servers are now authenticated by default
- first connect with token sets a cookie
- once a user has logged into one server with a token, their browser is logged in to
all subsequent servers on the same system+port until cookie_secret changes
10 years ago
Min RK
6c5cca1328
Make login_available method LoginHandler.get_login_available
...
There was a conflict for the .login_available property on LoginHandler itself
causing the login form to render incorrectly when login_available should be False
10 years ago
Thomas Kluyver
cd60550413
Merge pull request #1842 from minrk/appveyor-stuff
...
install conda-4.1.12 on appveyor
10 years ago
Min RK
2e67531c11
install conda-4.1.12 on appveyor
...
fixes path too long issue
patch copied from conda-smithy PR
10 years ago
Thomas Kluyver
cb88603ff1
Merge pull request #1837 from gnestor/busy-favicon
...
Change favicon when busy
10 years ago
Grant Nestor
b5cff95619
Don't change title when busy
10 years ago
Matthias Bussonnier
a05fe51ee7
Merge pull request #1836 from gnestor/carriage-return
...
Fix: Carriage symbol should behave like in console
10 years ago
YuviPanda
bc0a758cf2
terminal: Bump xterm.js to 2.0.1
...
Primary fix is better copy / paste support
Release notes in https://github.com/sourcelair/xterm.js/releases/tag/2.0.1
10 years ago
Grant Nestor
e832689923
Change favicon when busy
10 years ago
Grant Nestor
d2a6221c23
Fix: Carriage symbol should behave like in console
10 years ago