Thomas Kluyver
f75eb99fa3
Merge pull request #2552 from minrk/safe-trigger
...
catch and log event errors on outputarea.element
9 years ago
dhirschf
1975bf830f
Addressed review comments
9 years ago
dhirschf
6bb89b717a
Workaround for Windows Containers
...
On Windows `os.stat` treats host mapped volumes as broken symlinks
9 years ago
Krista
d3b94fa5f4
added robots.txt
...
This commit fixes issue #1387 by adding a file `robots.txt`
that makes robots go away.
This commit is also similar to
316665e5d7
as it also adds the `favicon.ico`.
9 years ago
Ondrej
533aea11fd
Added padding around gray box of ` markdown
...
Added padding of 1px from top and bottom and 5px from left and right
around gray box of single ` markdown.
Signed-off-by: Ondrej <o.jariabka@gmail.com>
9 years ago
Ondrej
823e1f19d5
Changes single ` markdown highlighting
...
Changes highlighting of text surrounded by single ` in markdown cells by
adding gray background under the text. Highlighting should resemble the
stack-overflow highlighting.
Signed-off-by: Ondrej <o.jariabka@gmail.com>
9 years ago
Thomas Kluyver
31400855f8
Merge pull request #2549 from mscuthbert/nbval-exception-passing
...
allow raises-exception to continue
9 years ago
Michael Scott Cuthbert
4cfa7f65d5
Remove nbval version from code
9 years ago
Min RK
99e4adb928
bump protocol version to 5.2
...
for surrogate pairs fix
9 years ago
Min RK
ff5e64e431
no need to double-check second half of a surrogate pair
9 years ago
Min RK
dbb78b4167
protect against a beautiful future in which javascript handles unicode sensibly
...
We don't need to count surrogate pairs if js stops using them
9 years ago
Min RK
8b14a8d003
check more strictly for surrogate pairs
...
check both surrogates with strict bounds, not just the first, in case of weirdness.
9 years ago
Brian E. Granger
4d9809d659
Allow session of type other than notebook.
9 years ago
Matthias Bussonnier
4b8cc28b26
Merge pull request #2535 from gnestor/issue-2379
...
Remove keymaps that conflict with non-English keyboards
9 years ago
Min RK
bf3de7bd1c
5.1.0.dev
...
5.0.0 has been released
9 years ago
Min RK
fc6bca2c0f
catch and log event errors on outputarea.element
...
we already do this on global events,
but the new events on output_area.element were unsafe,
allowing extension code to prevent actions such as clear_output, etc. from completing.
9 years ago
Michael Scott Cuthbert
81be6c575a
allow raises-exception or nbval-raises-exception to continue
9 years ago
Grant Nestor
af0a7b52e6
Uncomment "toggleComment" keymaps
9 years ago
Grant Nestor
35a9ff7932
Merge branch 'master' into issue-2404
9 years ago
Grant Nestor
226492d1b1
All files are viewable by default, handle notebooks and html differently
9 years ago
Grant Nestor
5c0495d14e
Inspect mimetype in addition to file extension to determine if a file is editable/viewable
9 years ago
Thomas Kluyver
9cd249ef7f
Merge pull request #2532 from gnestor/issue-1129
...
Re: Adjust positioning of filename in save widget
9 years ago
Grant Nestor
6b267b8cd2
Remove keymaps that conflict with non-English keyboards
9 years ago
Grant Nestor
abba580536
Add more HTML-like variants
9 years ago
Grant Nestor
b51e5d59e7
Support "View" and "Edit" for a selection of multiple files
9 years ago
Grant Nestor
7cb2bae6a0
Always display "View" button and display "Edit" button for all editable files
9 years ago
Grant Nestor
f43ac2f928
Fix double url-encoding issue on view file
9 years ago
Grant Nestor
945a973da5
Clean up layout in #header-container
9 years ago
Grant Nestor
c309c8513f
Fix clipping on filename
9 years ago
Min RK
1e18e050a5
Merge pull request #2498 from parente/cull-busy-connected
...
Add cull_busy, cull_connected options
9 years ago
Peter Parente
c8ba55da21
Do not cull connected kernels by default
9 years ago
Thomas Kluyver
f0e27a9eef
Merge pull request #2492 from minrk/websocket-compression-options
...
NotebookApp.websocket_compression_options config
9 years ago
Matthias Bussonnier
c9d399ace6
Merge pull request #2500 from takluyver/cmd-palette-emptytemplate-func
...
Use function to construct empty message in command palette
9 years ago
Peter Parente
85ba2bdabd
Fix help for cull_connected and cull_busy
9 years ago
Thomas Kluyver
8d1c94853c
Tweak formatting of 'no results' message
9 years ago
Min RK
2da75c37bd
handle surrogate pairs in tooltip cursor_pos
9 years ago
Min RK
a5e64e10b7
handle surrogate pairs
...
CodeMirror / javascript use utf16 code unit offsets,
but Jupyter protocol expects unicode *character* offsets,
so we need to translate back and forth.
9 years ago
Matthias Bussonnier
e04c210fbd
Merge pull request #2507 from takluyver/shutdown-handler
...
Add /api/shutdown handler
9 years ago
Thomas Kluyver
234c3b0ed1
Merge pull request #2501 from minrk/collapse-meta
...
don’t start output areas with collapsed metadata
9 years ago
Steve (Gadget) Barnes
19d23e2de7
Issue #2502 : Add line break after The Jupyter Notebook is running at: ( #2505 )
...
* Issue #2502 : Add line break after The Jupyter Notebook is running at:
* Revert "Issue #2502 : Add line break after The Jupyter Notebook is running at:"
This reverts commit 3aa65e712006f2726ea57476dd8923753a13e4ef.
* Issue #2502 : Reverted previous changes and redone without strip trailing spaces
9 years ago
Thomas Kluyver
576c3d9f9a
Add /api/shutdown handler
9 years ago
Peter Parente
d9b4c99180
Do not cull kernels doing work by default
9 years ago
Thomas Kluyver
560aa49884
Spelling correction
9 years ago
Min RK
8413ba9592
don’t start output areas collapsed
...
this sets metadata.collapsed = true metadata on cells with no output
causing churn in notebook files
9 years ago
Min RK
ccba3bd501
don’t start output areas collapsed
...
this sets metadata.collapsed = true metadata on cells with no output
causing churn in notebook files
9 years ago
Thomas Kluyver
6f05e770d8
Use function to construct empty message in command palette
...
This takes care of correctly escaping user input so it doesn't become
HTML.
9 years ago
Peter Parente
1550a04848
Add cull_busy, cull_connected options
...
Additional logic to support culling or skipping kernels that are busy or
that have connections.
9 years ago
Thomas Kluyver
5af43fbae1
Fix test not to expect notebooks sorted
...
PR gh-2281 removed the sorting step from the server. This can result in
non-deterministic test failures, because the test checked against a
list.
9 years ago
Min RK
a49397bf98
expose passthrough for WebSocketHandler.get_compression_options
...
adds `NotebookApp.websocket_compression_options` configurable,
with a default of None (no compression)
9 years ago
Matthias Bussonnier
c50b47af12
Merge pull request #2477 from takluyver/i2476
...
Avoid double-encoding item path for view button
9 years ago
Grant Nestor
c43d258aa2
Update list of editable extensions
9 years ago
Grant Nestor
6871dc81db
Use `is_viewable` vs. `is_not_safe`
9 years ago
Grant Nestor
9d839d5052
Fix text baseline alignment in save widget
9 years ago
Thomas Kluyver
0d124e054e
Catch trying to rename to an empty filename
...
Act as if the OK button is diabled.
Closes gh-2475
9 years ago
Thomas Kluyver
1d7e6007ba
Avoid double-encoding item path for view button
...
Closes gh-2476
9 years ago
Eric Perry
113ccd0134
Open terminal tab using a hash rather than undefined for IE compatibility.
9 years ago
Thomas Kluyver
83e1a23ce3
Catch errors calling git for commit ID
...
Closes gh-2468
9 years ago
Thomas Kluyver
7454e8c954
Don't use shell when getting git commit ID
9 years ago
Thomas Kluyver
a051f24e0d
Don't call sys_info() at import time
9 years ago
Min RK
122cbf6785
typo in log command
...
don't wrap format-arguments in a tuple
9 years ago
Thomas Kluyver
4f4ff3141c
Merge pull request #2454 from minrk/stdin-can-be-none
...
sys.stdin can be None
9 years ago
Min RK
5a4b968e3b
sys.stdin can be None
...
in which case we can't check if it's a tty or read from it
9 years ago
Grant Nestor
3e01e128f5
Use animated favicon for kernel busy indicator
9 years ago
Grant Nestor
5f3dbf9890
Use different favicons for different components (notebook, terminal, file)
9 years ago
Grant Nestor
63bca42067
Open all files with `/files` path except for `.html` and .svg`
9 years ago
Kyle Kelley
7b5c42d21c
Merge pull request #2448 from gnestor/issue-1129
...
Fix save widget layout for long notebook titles
9 years ago
Grant Nestor
74ea5ebd12
Fix save widget layout for long notebook titles
9 years ago
Kyle Kelley
469b1c84be
Merge pull request #2402 from gnestor/utf-8
...
Specify `charset=UTF-8` when serving non-base64 files
9 years ago
Matthias Bussonnier
7dac0a2bac
Merge pull request #2433 from takluyver/toolbar-btn-label
...
Allow toolbar buttons to have short label
9 years ago
Min RK
521f43f0bf
Merge pull request #2430 from minrk/never-abs-urls
...
fix some absolute URL paths
9 years ago
acrule
e928e21704
fix typo in action name
9 years ago
acrule
487d3ecb09
redirect paste menu items to call paste actions, not notebook paste functions
9 years ago
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.
9 years ago
Grant Nestor
9e5ba0ccbe
Update test
9 years ago
Min RK
61439f8ffb
fix some absolute URLs
...
absolute URLs should never occur in the javascript
9 years ago
Min RK
eaeb5cb410
remove some outdated, incorrect $.getScript examples
9 years ago
Thomas Kluyver
b93820bf4c
Merge pull request #2419 from minrk/notebook-stop
...
minor cleanup in 'jupyter notebook stop'
9 years ago
Thomas Kluyver
e5a492dd25
Merge pull request #2418 from minrk/remember-edit-extensions
...
editor: remember user language choices per file extension
9 years ago
Min RK
9e84fe332c
test notebook stop
9 years ago
Min RK
97f4913c16
only set codemirror mode if it exists
9 years ago
Thomas Kluyver
6eb0d15a16
Merge pull request #2420 from minrk/utils.ajax
...
accept jquery's ajax({url: '...'}) signature
9 years ago
Min RK
76c6617b28
delete settings.url when pulling it out
9 years ago
Thomas Kluyver
28d5454d37
Merge pull request #2421 from minrk/allow-root-after-super
...
check allow_root after calling super
9 years ago
Kyle Kelley
691f101b7d
Merge pull request #2424 from minrk/stop-draft76
...
stop using old websocket implementation in tests
9 years ago
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
9 years ago
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.
9 years ago
Min RK
25c4ff33e4
accept jquery's ajax({url: '...'}) signature
...
to ease extensions updating from `$.ajax` to `utils.ajax`
9 years ago
Min RK
0d200ce9ab
minor cleanup in 'jupyter notebook stop'
9 years ago
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.
9 years ago
Jason Grout
8e822e999f
Call the code cell’s clear_output so a cell event is triggered.
...
Thanks to @gnestor for this, from PR #2394 .
9 years ago
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.
9 years ago
Grant Nestor
dcf077c2bf
Specify `charset=UTF-8` for `text/plain` files
9 years ago
Grant Nestor
e1d476ae98
Specify `charset=UTF-8` when serving non-base64 files
9 years ago
Thomas Kluyver
d00b7e3e17
Merge pull request #2388 from brookisme/notebook-stop
...
NbserverStopApp: stop notebooks through cli - jupyter notebook stop <…
9 years ago
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`.
9 years ago
Brookie Guzder-Williams
44df51ad60
always exit(1) if not server found. break up long list comprehension
9 years ago
Brookie Guzder-Williams
b2f63b4a9c
SIGTERM not SIGQUIT
9 years ago
Min RK
f5f2eadd92
Merge pull request #2349 from parmentelat/split-cell
...
include metadata when copying a cell
9 years ago
Min RK
6ef2e425c2
Merge pull request #2281 from delftswa2017/remove-duplicate-sort
...
Remove redundant sort from back-end
9 years ago
Min RK
8a0410ecae
Merge pull request #2390 from miishke/menubar-toggle
...
Added show, hide, and toggle actions for menubar container to the Com…
9 years ago