Commit Graph

9239 Commits

Author SHA1 Message Date
Carol Willing
eac86ab13b Edits to text 2016-05-06 14:14:55 -07:00
Matthias Bussonnier
1838e966e6 Document kernel.js extensions. 2016-05-06 12:06:04 -07:00
Matthias Bussonnier
d8fc95173b Merge pull request #1347 from Carreau/shortcut-editor-2
Create a shortcut editor for the notebook.
2016-05-05 14:47:09 -07:00
Matthias Bussonnier
6aa60a5581 Merge pull request #1429 from Carreau/codecov
Add codecov.yml
2016-05-05 14:46:12 -07:00
Matthias Bussonnier
96615ed836 'set drop to 10%' 2016-05-04 13:52:37 -07:00
Matthias Bussonnier
18a6698691 Add codecov.yml
And lower coverage threshold to 60%
this should prevent coverage to fail on simple patch like
https://github.com/jupyter/notebook/pull/1418
2016-05-04 11:32:17 -07:00
Thomas Kluyver
27a4bf8e4b Merge pull request #1420 from yuvallanger/import-notebooks-patch
Make Importing Notebooks guide work again.
2016-05-03 21:15:19 +01:00
Yuval Langer
80ae2c9322 Use fixed version number. 2016-05-03 20:07:28 +03:00
Yuval Langer
cbbc713a77 Make Importing Notebooks guide work again. 2016-05-03 19:07:33 +03:00
Min RK
6c0847cba8 Merge pull request #1417 from willingc/pollock-encrypt
Add Let's Encrypt to the docs
2016-05-03 10:55:58 +02:00
Carol Willing
215244b5f6 Fix minor formatting error 2016-05-02 15:27:33 -07:00
Carol Willing
f84bb09fec Add letsencrypt instructions re: Pollock on ML 2016-05-02 15:16:26 -07:00
Matthias Bussonnier
c170ba1021 Merge pull request #1412 from captainsafia/fix-sys-info
Check if sys_info is null
2016-05-02 09:11:04 -07:00
Min RK
371cd86970 Merge pull request #1413 from captainsafia/add-permitted-mimetypes
Add PERMITTED_MIMETYPES to mimetype check
2016-05-02 11:12:02 +02:00
Safia Abdalla
be7649b873 Replaced PERMITTED_MIMETYPES with EDIT_MIMETYPES 2016-05-02 03:01:00 -05:00
Safia Abdalla
883429615d Add PERMITTED_MIMETYPES 2016-05-01 22:53:28 -05:00
Safia Abdalla
fb4cb19aa6 Check if sys_info is null 2016-05-01 21:28:48 -05:00
Min RK
3d176dd620 Merge pull request #1403 from takluyver/i1401
Don't pass destination when installing nbextension from Python package
2016-04-29 11:54:01 +02:00
Brian E. Granger
2acae71738 Merge pull request #1405 from blink1073/update-lab
Update lab
2016-04-28 17:04:11 -07:00
Steven Silvester
7c3f507117 Update lab 2016-04-28 18:36:48 -05:00
Thomas Kluyver
f5abb87488 Don't pass destination when installing nbextension from Python package
Closes gh-1401
2016-04-28 17:24:27 +01:00
Min RK
99f4540019 Merge pull request #1389 from SylvainCorlay/old_widgets
Enable older version of ipywidgets on notebook 4.2
2016-04-28 10:07:49 +02:00
Matthias Bussonnier
251061ea18 Merge pull request #1396 from mgeier/issue-1390
CSS: "alert" is missing "margin-top"
2016-04-27 12:45:45 +02:00
Matthias Geier
c6c709a894 CSS: "alert" is missing "margin-top"
Closes #1390.
2016-04-27 11:43:55 +02:00
Carol Willing
7752e15cf1 Merge pull request #1391 from minrk/nbext-dest
specify destination for nbextension install
2016-04-26 04:35:26 -07:00
Min RK
e1eacf8d25 specify destination for nbextension install
arg was supported, just not passed along
2016-04-26 11:27:48 +02:00
Matthias Bussonnier
c681186e2d Merge pull request #1199 from julienr/drop_visual_indicator
[WIP] [Image attachment] Add visual indicator that a drop is possible
2016-04-24 19:05:45 +02:00
Julien Rebetez
ac373f46fe Bump codemirror version to 5.14, which includes the fix for the dragleave event. 2016-04-24 17:31:20 +02:00
Min RK
1e9cddc68b Merge pull request #1378 from parleur/nice_customjs
Protection againt bad custom.js
2016-04-23 11:22:10 +02:00
Julien Rebetez
65f1fae5ec Use a gray dashed border instead of yellow background to indicate dropzone 2016-04-23 10:32:11 +02:00
Julien Rebetez
14f7c2ccc0 Better handling of dnd events to correctly remove the dropzone effect when escape is pressed. 2016-04-23 10:32:11 +02:00
Julien Rebetez
180ef74ff5 Clear the dropzone indicator on cell render.
Change the dropzone CSS effect to be on the input_area
2016-04-23 10:32:11 +02:00
Julien Rebetez
7b974946ff Add a visual indicator that a drop is possible when dragging an image on a markdown cells 2016-04-23 10:32:11 +02:00
Sylvain Corlay
f6b7656499 Enable widgets 4.1 2016-04-22 19:32:40 -04:00
Matthias Bussonnier
baa49f73c8 Add eslint deps 2016-04-21 18:21:43 +02:00
Matthias Bussonnier
12b48343cb dynamic sourcemaps 2016-04-21 18:00:17 +02:00
Matthias Bussonnier
ab85f165c7 Create shortcut editor for the notebook
1) finish the step allowing the use of es6

  - this include some tweak to web pack configuration to speed up
    recompile in watch mode (in particular cache sourcemaps).
  - enable eslint (error only), on obvious mistakes.
  - setup babel to compile to es5 as a target.

2) Make the test pass under Casper that does not always have
`Function.prototype.bind` defined, which we cannot patch only in the
tests.

3) Write an actual shortcut editor that list and allow to modify most of
the command mode shortcut.

The logic to persist the shortcuts is a bit tricky as there are default
keyboard shortcuts, and so when you "unbind" them you need to re-unbind
them at next startup. This does not work for a few shortcut for
technical reasons: `<Esc>`, `<Shift>`, as well as `<Ctrl-Shift-P>` and `<F>`
which register asynchronously, so are not detected as "default"
shortcuts.
2016-04-21 18:00:17 +02:00
Pierre Gerold
fcec0896ce Protect the three call to custom.js 2016-04-21 11:46:32 +02:00
Min RK
1ca5557234 Merge pull request #1374 from blink1073/dedupe
Enforce npm dedupe
2016-04-21 10:45:19 +02:00
Pierre Gerold
be52aa38f9 Condom againt bad custom.js 2016-04-20 17:35:38 +02:00
Steven Silvester
c2723c7996 Fix check_output syntax 2016-04-19 09:58:28 -05:00
Steven Silvester
b78f91c696 Match the usage of the shell kwarg 2016-04-19 09:57:45 -05:00
Steven Silvester
a8928d8303 Raise the error if dedupe fails 2016-04-19 08:14:40 -05:00
Steven Silvester
b30e35a8a1 Enforce npm dedupe 2016-04-19 08:13:14 -05:00
Min RK
89f942029d Merge pull request #1367 from blink1073/jupyterlab-failsafe
Allow JupyterLab to fail gracefully on install
2016-04-19 11:46:49 +02:00
Steven Silvester
0176f72550 Do not verify lab installed files yet 2016-04-18 10:45:17 -05:00
Steven Silvester
a31a2236db Allow JupyterLab to fail gracefully on install for now 2016-04-18 10:31:44 -05:00
Min RK
f75e591bd6 Merge pull request #1351 from Carreau/es6
ES6 and prerequisite to shortcut editor
2016-04-18 11:37:32 +02:00
Matthias Bussonnier
07f988f433 Merge pull request #1360 from takluyver/override-css-mimetype
Override mimetype for .css files
2016-04-16 13:24:35 +02:00
Carol Willing
d8d541020c Merge pull request #1361 from wasade/missingnewline
Missing newline impacting RTD rendering
2016-04-15 18:02:14 -07:00