Commit Graph

10112 Commits

Author SHA1 Message Date
Grant Nestor
8644a15a6b Prevent marked from returning inline styles for table cells 2017-08-01 12:06:34 -07:00
Thomas Kluyver
4f4ff3141c Merge pull request #2454 from minrk/stdin-can-be-none
sys.stdin can be None
2017-04-28 13:45:22 +01:00
Min RK
5a4b968e3b sys.stdin can be None
in which case we can't check if it's a tty or read from it
2017-04-28 12:41:47 +02:00
Matthias Bussonnier
57b3cb73b8 Merge pull request #2452 from gnestor/issue-1254
Use different favicons for different components (notebook, terminal, file)
2017-04-27 18:41:28 -07:00
Grant Nestor
3e01e128f5 Use animated favicon for kernel busy indicator 2017-04-27 13:31:30 -07:00
Grant Nestor
5f3dbf9890 Use different favicons for different components (notebook, terminal, file) 2017-04-27 13:31:08 -07:00
Kyle Kelley
7b5c42d21c Merge pull request #2448 from gnestor/issue-1129
Fix save widget layout for long notebook titles
2017-04-27 09:48:33 -07:00
Thomas Kluyver
cdeeda62d7 Merge pull request #2447 from bgruening/patch-1
wording fix
2017-04-27 11:55:04 +01:00
Grant Nestor
74ea5ebd12 Fix save widget layout for long notebook titles 2017-04-26 18:17:12 -07:00
Björn Grüning
89fe391543 wording fix 2017-04-26 21:08:30 +02:00
Kyle Kelley
469b1c84be Merge pull request #2402 from gnestor/utf-8
Specify `charset=UTF-8` when serving non-base64 files
2017-04-26 11:48:33 -07:00
Matthias Bussonnier
7dac0a2bac Merge pull request #2433 from takluyver/toolbar-btn-label
Allow toolbar buttons to have short label
2017-04-25 10:07:34 -07:00
Min RK
521f43f0bf Merge pull request #2430 from minrk/never-abs-urls
fix some absolute URL paths
2017-04-24 17:27:52 +02:00
Thomas Kluyver
e1ba0075f6 Merge pull request #2431 from acrule/paste-enable-action-link
Redirect paste menu items to call actions
2017-04-24 10:56:59 +01:00
acrule
e928e21704 fix typo in action name 2017-04-21 10:33:38 -07:00
acrule
487d3ecb09 redirect paste menu items to call paste actions, not notebook paste functions 2017-04-21 10:22:25 -07:00
Thomas Kluyver
af244a63b8 Allow toolbar buttons to have short label
I've wanted this for ages - little monochrome icons can only convey so
much information. So far, I've only added a label to the run button.
2017-04-21 14:49:21 +01:00
Grant Nestor
9e5ba0ccbe Update test 2017-04-20 11:31:14 -07:00
Min RK
61439f8ffb fix some absolute URLs
absolute URLs should never occur in the javascript
2017-04-19 17:00:41 +02:00
Min RK
eaeb5cb410 remove some outdated, incorrect $.getScript examples 2017-04-19 16:57:03 +02:00
Thomas Kluyver
b93820bf4c Merge pull request #2419 from minrk/notebook-stop
minor cleanup in 'jupyter notebook stop'
2017-04-19 15:49:17 +01:00
Thomas Kluyver
e5a492dd25 Merge pull request #2418 from minrk/remember-edit-extensions
editor: remember user language choices per file extension
2017-04-19 15:43:56 +01:00
Min RK
9e84fe332c test notebook stop 2017-04-19 16:27:51 +02:00
Min RK
97f4913c16 only set codemirror mode if it exists 2017-04-19 15:18:14 +02:00
Thomas Kluyver
6eb0d15a16 Merge pull request #2420 from minrk/utils.ajax
accept jquery's ajax({url: '...'}) signature
2017-04-19 13:36:51 +01:00
Min RK
76c6617b28 delete settings.url when pulling it out 2017-04-19 14:05:50 +02:00
Thomas Kluyver
28d5454d37 Merge pull request #2421 from minrk/allow-root-after-super
check allow_root after calling super
2017-04-19 12:57:18 +01:00
Kyle Kelley
691f101b7d Merge pull request #2424 from minrk/stop-draft76
stop using old websocket implementation in tests
2017-04-18 07:45:06 -07:00
Min RK
31219f0447 stop using Allow76
since we are using phantomjs 2, we don't need the old websocket implementation anymore

which is broken with tornado 4.5, anyway
2017-04-18 15:40:12 +02:00
Min RK
b74003b8d5 check allow_root after calling super
super can dispatch to subcommands such as `list`, etc.

we only want to check root *at most* for starting the notebook server itself.
2017-04-18 13:52:00 +02:00
Min RK
25c4ff33e4 accept jquery's ajax({url: '...'}) signature
to ease extensions updating from `$.ajax` to `utils.ajax`
2017-04-18 13:25:54 +02:00
Min RK
0d200ce9ab minor cleanup in 'jupyter notebook stop' 2017-04-18 11:40:12 +02:00
Min RK
a2f6a8c3bb editor: remember user language choices per file extension
When the language is selected manually, record the file extension and choice in config
so that future files opened with the same extension use the same mode.

This allows users to teach the editor about file extensions CodeMirror doesn't know about.
2017-04-18 11:02:42 +02:00
Kyle Kelley
6cebd3ef66 Merge pull request #2411 from jasongrout/outputclearevents
Pass the output area object in events specific to the output area.
2017-04-17 18:48:16 -07:00
Jason Grout
8e822e999f Call the code cell’s clear_output so a cell event is triggered.
Thanks to @gnestor for this, from PR #2394.
2017-04-13 16:20:28 -04:00
Jason Grout
76b77a0b09 Pass the output area object in events specific to the output area.
Also, add a new event triggered right before the output area is cleared. This is useful if an output renderer has cleanup work to do before the DOM element is removed off of the page.
2017-04-13 14:27:36 -04:00
Grant Nestor
dcf077c2bf Specify charset=UTF-8 for text/plain files 2017-04-12 11:13:25 -07:00
Grant Nestor
e1d476ae98 Specify charset=UTF-8 when serving non-base64 files 2017-04-12 07:48:25 -07:00
Thomas Kluyver
d00b7e3e17 Merge pull request #2388 from brookisme/notebook-stop
NbserverStopApp: stop notebooks through cli - jupyter notebook stop <…
2017-04-11 19:10:36 +01:00
Peter Parente
a747374bae Merge pull request #2398 from minrk/activity-session
use dedicated Session for activity monitor
2017-04-11 12:45:00 -04:00
Min RK
f4d2c246d5 use dedicated Session for activity monitor
instead of re-using kernel.session, which can cause hash collisions if other objects use `kernel.session`.
2017-04-11 17:43:15 +02:00
Brookie Guzder-Williams
44df51ad60 always exit(1) if not server found. break up long list comprehension 2017-04-11 08:22:33 -07:00
Brookie Guzder-Williams
b2f63b4a9c SIGTERM not SIGQUIT 2017-04-10 10:38:57 -07:00
Min RK
f5f2eadd92 Merge pull request #2349 from parmentelat/split-cell
include metadata when copying a cell
2017-04-10 12:04:51 +02:00
Min RK
6ef2e425c2 Merge pull request #2281 from delftswa2017/remove-duplicate-sort
Remove redundant sort from back-end
2017-04-10 11:21:38 +02:00
Min RK
8a0410ecae Merge pull request #2390 from miishke/menubar-toggle
Added show, hide, and toggle actions for menubar container to the Com…
2017-04-10 11:20:48 +02:00
Milos Miljkovic
f39a551149 Added show, hide, and toggle actions for menubar container to the Command Palette 2017-04-09 13:09:44 -04:00
Kyle Kelley
082153d7e8 Merge pull request #2385 from rgbkrk/ensure-trailing-slash
ensure a trailing slash on the base_url
2017-04-08 21:01:15 -07:00
Brookie Guzder-Williams
ed4de773c9 remove unused kill_cmd/signal prop 2017-04-08 12:41:01 -07:00
Brookie Guzder-Williams
277d000d54 dont cast to string 2017-04-08 12:39:30 -07:00