10043 Commits

Author SHA1 Message Date
Thomas Kluyver
4f819c4565 Merge pull request #2041 from clarka34/patch-1
Update button icon.
2017-01-16 09:36:08 +00:00
clarka34
7ab7fd0c24 Update button icon.
Changed button icon so it displays properly. Previously, it displayed an empty icon.
2017-01-15 23:38:26 -08:00
Kyle Kelley
f5f97d1f93 Merge pull request #2007 from minrk/password
add `jupyter notebook password` entrypoint
2017-01-13 09:55:27 -06:00
Min RK
2659ff85b1 Merge pull request #2026 from ashaffer/master
Throttle element resizing in output areas
2017-01-13 16:19:58 +01:00
jean-roch
6ab3a5c098 correcting function definition 2017-01-13 16:06:34 +01:00
Min RK
035fc91fa9 test runtime-loading of modules
verify that runtime-required modules are the same as those used to build the classes

(this is the primary motivator for the rollback of webpack)
2017-01-13 15:18:19 +01:00
Min RK
f587b01f66 avoid race to set ws.onclose callback
between stop_channels and ws_closed_late
2017-01-13 14:20:32 +01:00
Min RK
3fb26ad4da remove nonexistent lint test 2017-01-13 13:43:26 +01:00
Min RK
16a751c4d6 fix attachments test
Don't try to pass non-JSONable data across evaluate boundary
2017-01-13 13:19:33 +01:00
Min RK
7188f02763 check if module is defined before checking for items on it 2017-01-13 13:19:13 +01:00
Min RK
003ce4e71a reimpelement casper.thenClick
using jquery.

default implementation doesn't seem to trigger events.
2017-01-13 13:02:49 +01:00
Kyle Kelley
45bd561a9c Merge pull request #2038 from michaelpacer/mimetype_tpl
Mimetype tpl
2017-01-12 14:11:40 -06:00
michaelpacer
f3b4d16d14 fix typo(?) on the exception to edit application/javascript 2017-01-12 11:46:36 -08:00
michaelpacer
cd24d1ee92 add .tpl to set of editable extensions by notebook text editor 2017-01-12 11:46:06 -08:00
vlimant
ab019aae74 allows to overload the method to check unix-type password using crypt 2017-01-10 06:30:36 -08:00
Thomas Kluyver
9394d7af54 Merge pull request #2028 from pleabargain/patch-1
typo an to and
2017-01-07 21:17:38 +00:00
Dennis
b97336c35d typo an to and 2017-01-07 19:20:36 +02:00
Andrew Shaffer
28008783e1 Merge branch 'master' of ssh://github.com/ashaffer/notebook 2017-01-07 00:31:54 -08:00
Andrew Shaffer
e16c590b73 throttle element resizing in output areas 2017-01-07 00:30:58 -08:00
Min RK
f488e89527 update casper, phantom on travis 2017-01-06 16:55:43 +01:00
Min RK
4f7160aac6 es5ify
- const, let -> var
- evaluated object keys
2017-01-06 16:55:22 +01:00
Min RK
5cafbfe822 Merge pull request #2005 from minrk/require-api-token
forward-port xsrf fixes
2017-01-06 13:50:23 +01:00
Min RK
cec4205bee add preact to package_data 2017-01-04 13:52:39 +01:00
Min RK
82b3a65523 ES5ify shortcut editor 2017-01-04 13:47:17 +01:00
Min RK
cbd6eef04a get preact from script tag
doesn't seem to like loading with require
2017-01-04 13:47:16 +01:00
Min RK
11bd42c353 un-nest loading of contents in main modules 2017-01-04 13:47:16 +01:00
Min RK
aa5293a253 missing typeahead require in commandpalette 2017-01-04 13:46:24 +01:00
Min RK
7839d32cfe remove test for reverted deprecated paths 2017-01-04 13:46:24 +01:00
Min RK
47d4451958 remove webpack shims
restore explicit imports of jquery, etc.
2017-01-04 11:40:13 +01:00
Min RK
83ca4833eb update bundler tests with self.request 2017-01-04 10:41:56 +01:00
Min RK
a69494833b forward-port fixes 2017-01-03 15:52:59 +01:00
Min RK
f7b85b0999 include jupyter notebook password entrypoint in secure notebook docs 2017-01-03 15:27:02 +01:00
Min RK
f871d64e6e exercise password app 2017-01-03 15:15:44 +01:00
Min RK
53f809d407 use a warning for failure to set file permissions
instead of print
2017-01-03 14:50:56 +01:00
Kyle Kelley
4da035c577 Merge pull request #2009 from ellisonbg/md-max-width
Don't use max-width on tables in rendered markdown
2016-12-22 12:37:31 -06:00
Min RK
8a644a9794 restore r.js-based build system from 4.x 2016-12-22 18:44:46 +01:00
Brian E. Granger
2ed20e4980 Don't use max-width on tables in rendered markdown 2016-12-22 10:34:40 -07:00
Min RK
cd7e0a939c add jupyter notebook password entrypoint
records, hashes, and stores password in json config
2016-12-22 13:43:05 +01:00
Min RK
0b50201ae4 note downgrade of CodeMirror in changelog 2016-12-21 22:31:00 +01:00
Min RK
86c6268f64 prose review 2016-12-21 22:31:00 +01:00
Min RK
dacea0e0d9 changelog notes for 4.3.1 2016-12-21 22:31:00 +01:00
Min RK
d6f091c443 allow disabling xsrf check
for deployments that want to grant unfettered access, even from anonymous API requests
2016-12-21 22:30:58 +01:00
Min RK
8e141df890 run Python tests with a token
exercises token auth
2016-12-21 22:30:28 +01:00
Min RK
2da82f909c get xsrf from cookie, not body data
so that it can't be skimmed with a GET of the page
2016-12-21 22:29:35 +01:00
Min RK
9478a6b82b use tornado xsrf token in API
- Cookie-authenticated API requests must use set X-XSRFToken header
- add utils.ajax for making ajax requests, adding xsrf header from default location
2016-12-21 22:29:35 +01:00
Min RK
70e79a0ad6 add token_authenticated property
indicates if a token is used for authentication, in which case xsrf checks should be skipped.
2016-12-21 22:29:35 +01:00
Min RK
4a8af93b5b enable tornado xsrf cookie 2016-12-21 22:29:30 +01:00
Min RK
645f0f9dad Merge pull request #2004 from gnestor/codemirror-5.16
Downgrade to CodeMirror 5.16
2016-12-21 22:03:43 +01:00
Grant Nestor
e03ab77460 Downgrade to CodeMirror 5.16
Closes https://github.com/jupyter/notebook/issues/1967
2016-12-21 12:52:06 -08:00
Min RK
62347f9842 Merge pull request #2003 from gnestor/4.3.1
Add 4.3.1 to changelog
2016-12-21 21:08:26 +01:00