2
0
mirror of https://github.com/jupyter/notebook.git synced 2025-02-17 12:39:54 +08:00
Commit Graph

10356 Commits

Author SHA1 Message Date
Thomas Kluyver
3543f79254 Merge pull request from minrk/schedule-stop-callback
schedule IOLoop.stop on the main thread
2017-09-14 10:46:35 +01:00
Min RK
b2bd0ff702 missing add_callback_from_signal 2017-09-14 10:38:06 +02:00
Thomas Kluyver
60f81e49b2 release 5.1.0rc3 2017-09-12 11:43:23 +01:00
Steven Silvester
834b75af70 Merge pull request from mpacer/file_var_rename
changed all python variables named file to file_name to not override built_in file
2017-09-06 09:02:12 -05:00
M Pacer
2fac7003e2 changed all python variables named file to file_name to not override built_in file 2017-09-05 16:59:41 -07:00
Thomas Kluyver
d4c6fe46ce Merge pull request from sytays/patch-2
typos fix
2017-08-28 17:50:41 +01:00
Syed TS
b87fa6c734 typos fix-2 2017-08-28 15:18:10 +00:00
Syed TS
563f220a43 typos fix 2017-08-28 10:12:47 +00:00
Min RK
86092a1d10 use add_callback_from_signal 2017-08-26 10:33:16 -04:00
Min RK
f8a6e1c5b7 Merge pull request from takluyver/mathjax-callback-err
Attempt to fix mysterious mathjax callback error
2017-08-26 10:31:46 -04:00
J Forde
30f739cf69 Merge pull request from jiaqi216/docs-build
Travis Builds Doc
2017-08-25 19:22:56 -04:00
Jiaqi Liu
44471d97f4 docs only run in python3 2017-08-25 14:02:13 -07:00
Jiaqi Liu
3a23a69d97 rename doc group to docs 2017-08-25 13:22:25 -07:00
Jiaqi Liu
df76c6e2f5 forgot -r 2017-08-25 13:00:14 -07:00
Jiaqi Liu
708883521a pip install doc-requirements in travis 2017-08-25 12:42:06 -07:00
Jiaqi Liu
95bd9df2af add to doc requirements.txt file 2017-08-25 12:21:27 -07:00
Thomas Kluyver
d42c65afe1 Merge pull request from cebolan/fix-help
Fix documentation on keyboard shortcuts
2017-08-24 20:11:31 +01:00
cebolan
31f888e6ae Fix documentation on keyboard shortcuts
closes 
2017-08-24 12:59:13 -04:00
Thomas Kluyver
daeb0a401b Merge pull request from hroncok/transutils
Have _ defined in notebook.transutils
2017-08-24 11:26:22 +01:00
Miro Hrončok
6e1ac76423 Have _ defined in notebook.transutils
Import it in conf.py (docs)

Fixes https://github.com/jupyter/notebook/issues/2798
2017-08-24 11:58:38 +02:00
Thomas Kluyver
379c359fa1 Log failure to load notebook at error level 2017-08-22 11:11:47 +01:00
Thomas Kluyver
41062f87b3 Ensure AMSmath is loaded before calling resetEquationNumbers method 2017-08-22 11:11:05 +01:00
Thomas Kluyver
04c5aec072 Catch errors from queueing Mathjax resetEquationNumbers call. 2017-08-22 10:53:12 +01:00
Min RK
5a3d7c63d0 Merge pull request from takluyver/mathjax-pkg-data
Add Mathjax/jax/element/mml to package_data
2017-08-21 19:14:21 +02:00
Thomas Kluyver
1f50751448 Add Mathjax/jax/element/mml to package_data
Closes gh-2780
Closes gh-1108
2017-08-21 16:46:21 +01:00
Min RK
cc9ec35c82 Merge pull request from takluyver/no-double-upload
Prevent uploading file twice
2017-08-21 16:26:52 +02:00
Thomas Kluyver
e3df23656e Prevent uploading file twice
Closes gh-2773
2017-08-21 12:59:20 +01:00
Thomas Kluyver
4d21a1b386 Merge pull request from Madhu94/update-changelog-5.1
docs(notebook): Update changelog for 5.1
2017-08-20 17:21:25 +01:00
madhu
11b22d280c docs(notebook): Update changelog for 5.1 2017-08-20 21:17:04 +05:30
Min RK
81d0e6146d Merge pull request from heroxbd/master
d/s/examples/N/Importing Notebooks.ipynb: disable execution.
2017-08-20 15:04:58 +02:00
Grant Nestor
12eb55f594 Merge pull request from takluyver/i2775
URL escape file path in iframe view handler
2017-08-19 16:08:23 -07:00
Benda Xu
db90e16d17 d/s/examples/N/Importing Notebooks.ipynb: disable execution.
This notebook example includes writing to the directory of another
  module, usually resulting in a doc build failure.  Therefore we
  disable its execution by nbsphinx.

Closes: 
See-Also: https://bugs.gentoo.org/show_bug.cgi?id=626860
2017-08-19 17:31:38 +09:00
Grant Nestor
63c7c336f0 release 5.1.0rc2 2017-08-19 00:09:16 -07:00
Thomas Kluyver
20cac8236d URL escape file path in iframe view handler
Closes gh-2775
2017-08-18 11:06:45 +01:00
Grant Nestor
2136007923 release 5.1.0rc1 2017-08-17 16:59:17 -07:00
Grant Nestor
5fff543d33 Merge pull request from takluyver/i2757
Catch OSError when getting file mtime & ctime
2017-08-17 12:01:41 -07:00
Thomas Kluyver
3115f0602f deprecated name warn() -> warning() 2017-08-17 11:08:04 +01:00
Thomas Kluyver
1e511c5ebf Catch OSError when getting file mtime & ctime
Closes gh-2757
2017-08-16 18:26:25 +01:00
Min RK
90004b9032 schedule IOLoop.stop on the main thread
loop.stop() will not be safe from a thread in tornado 5

There has never been a guarantee to this effect,
but it has happened to be true so far.

The result is that the stop event will not fire until the next loop iteration (e.g. triggered by an HTTP request).
Using add_callback ensures that the main thread wakes and handles the stop event.

cf tornado#2119
2017-08-12 16:11:09 +02:00
Grant Nestor
f8d4d6ad2d Merge pull request from takluyver/editor-cm-mode-mime
Set CodeMirror mode using mimetype, not mode name
2017-08-08 17:58:17 -04:00
Thomas Kluyver
835bbd132c Set CodeMirror mode using mimetype, not mode name
One mode definition file can contain different modes, e.g. clike includes C, C++,
C#, Java, and a few others. We need to use the mime type to distinguish which one
we want.

Closes gh-2737
2017-08-08 16:44:51 +01:00
Grant Nestor
b099303a96 release 5.1.0rc1 2017-08-07 16:49:06 -04:00
Grant Nestor
7dc9439af7 Merge pull request from vidartf/comm-buffers
Add buffers argument to comm open/close
2017-08-07 16:40:24 -04:00
Vidar Tonaas Fauske
9249ae25e1 Add buffers argument to CommManager.new_comm 2017-08-07 18:55:59 +02:00
Vidar Tonaas Fauske
05c1f6feb8 Add buffers argument to comm open/close 2017-08-07 18:55:59 +02:00
Min RK
da2d54f73e Merge pull request from Madhu94/trust_without_save
Allow notebooks to be trusted without triggering a save
2017-08-07 15:52:23 +02:00
Min RK
114b9167e6 Merge pull request from takluyver/uninstall-nbext-find
Uninstall an nbextension from the first location it is found
2017-08-07 14:15:32 +02:00
Thomas Kluyver
2884afc3cb Describe the --py flag for uninstall command 2017-08-07 10:55:12 +01:00
Thomas Kluyver
d992f42421 Fix description for disable command 2017-08-07 10:52:53 +01:00
Thomas Kluyver
add7c44d51 Uninstall an nbextension from the first location it is found
Closes gh-2725 (see discussion on that PR)
2017-08-07 10:50:10 +01:00