MinRK
3693ac83ae
support binary message from javascript
2014-10-15 12:23:32 -07:00
MinRK
c9c131ebf9
s/unserialize/deserialize
2014-10-15 12:23:32 -07:00
MinRK
7da61bfc13
use default kernel name in kernels service
...
matches sessions API
2014-10-12 14:59:03 -07:00
MinRK
624f0071a2
remove on_first_message authentication
...
in ZMQStreams. No need for weird, special first message.
- use regular cookie auth
- use url param for session id
2014-10-09 15:12:20 -07:00
Matthias Bussonnier
b2a0798fdf
Merge pull request #6598 from minrk/nbformat-backport
...
nbformat validation
2014-10-09 11:58:56 +02:00
Matthias Bussonnier
7d7b85a043
Merge pull request #6649 from minrk/302-notebooks
...
redirect /api/notebooks to /api/contents
2014-10-09 10:52:48 +02:00
MinRK
b87fee048c
redirect /api/notebooks to /api/contents
...
eases 2.x-3.x transition for consumers such as emacs-ipython-notebook
2014-10-08 12:33:43 -07:00
MinRK
b2d946d44e
don't convert notebooks on upload
2014-10-08 12:33:34 -07:00
MinRK
8392c7ac9e
don't check_and_sign old notebooks on upload
2014-10-08 12:33:34 -07:00
MinRK
4ae05c729c
trust is stored in code_cell.metadata
...
not top-level code_cell
2014-10-08 12:33:33 -07:00
MinRK
ddd3aa2a5a
add dialogs for failed save/load
...
- failed validation doesn't prevent save/load,
but the user is now warned about it.
- there is now a warning dialog if fromJSON fails,
rather than the usual silent failure.
2014-10-08 12:33:32 -07:00
Jessica B. Hamrick
d606d53b4e
More informative error messages
2014-10-08 11:30:30 -07:00
Matthias Bussonnier
e808d23594
Merge pull request #6607 from minrk/cluster-load-remove
...
remove deleted profiles from cluster list
2014-10-05 11:45:58 +02:00
MinRK
ee1d9d65f3
stop using deprecated DelayedCallback
...
in favor of simpler IOLoop.add_timeout
It was added in pyzmq, but deprecated in pyzmq-13.
2014-10-03 12:05:23 -07:00
MinRK
1f231f7b5a
remove deleted profiles from cluster list
2014-10-03 11:36:19 -07:00
Jessica B. Hamrick
6bc5702398
More descriptive short message
2014-09-30 12:21:01 -07:00
Jessica B. Hamrick
46e40e5ea1
Return a proper JSON object
2014-09-30 10:50:09 -07:00
Jessica B. Hamrick
5e1e8a116c
Use 501 error code instead of 400
2014-09-30 10:50:09 -07:00
Jessica B. Hamrick
c4a89cd54d
Better user experience when kernel isn't found
2014-09-30 10:50:09 -07:00
Jessica B. Hamrick
cfc234dc89
Handle NoSuchKernel errors more gracefully
2014-09-30 10:50:08 -07:00
MinRK
974d45343e
allow kernel_name to be undefined in requests
...
fallback to KM.default_kernel_name in that case
2014-09-27 15:16:42 -07:00
MinRK
5bc118fb6c
handle system-wide kernelspecs
...
in html tets_kernelspecs_api, which can cause counts to be greater than 2
2014-09-10 14:30:44 -07:00
Matthias Bussonnier
97e99d0661
Merge pull request #6412 from takluyver/sessions-rest-api-fix
...
Sessions rest api fix
2014-09-06 15:04:13 -07:00
Thomas Kluyver
fa6056e9ed
Sort directory contents in test before assertion
...
Should fix recent test failures, but I can't replicate failure on my
computer, so it's not clear that it's fixed.
2014-09-05 18:44:58 -07:00
Thomas Kluyver
b2737e668e
Add tests and fix some issues
...
Tests taken from #6360
2014-09-05 10:16:37 -07:00
Thomas Kluyver
0e109ee4be
Correct comment
2014-09-05 09:40:02 -07:00
Thomas Kluyver
ca8dabf705
Fix 404 error when accessing nonexistant session
2014-09-04 15:13:59 -07:00
Thomas Kluyver
76b05b24af
Handle sessions where the kernel has been killed
2014-09-04 15:13:59 -07:00
Thomas Kluyver
81b06d81a1
Merge pull request #6358 from minrk/contents-missing
...
fix directory listing with broken symlinks
2014-09-04 14:43:45 -07:00
Min RK
fbae96f9cb
Merge pull request #6269 from takluyver/atomic-save
...
Implement atomic save
2014-09-02 10:59:38 -07:00
MinRK
819c3c326c
fix directory listing with broken symlinks
...
directory listing would 404 if any listed file doesn't exist
(e.g. symlink to missing target).
Previously-failing test included.
2014-08-26 09:12:54 -07:00
MinRK
bd5a88e954
handle undefined or closed zmq_stream in on_message
...
can happen if a message is waiting in a pipe and the web socket is closed before the message is handled.
And give ZMQChannels a nice repr with their kernel ID
2014-08-13 21:51:52 -07:00
Thomas Kluyver
8b7d4c1c2f
Rework atomic_writing with tests & docstring
2014-08-05 10:50:09 -07:00
Thomas Kluyver
04cbce2a14
Implement atomic save
...
Ping @fperez, this should avoid issues with corrupted/lost notebooks
when the disk is full, though I haven't worked out how to test it just
yet.
Closes gh-6254
2014-08-04 11:22:42 -07:00
MinRK
3e79eea46b
update contents per further review
...
- fix is_hidden always returning True on nonexistent files
- create hidden dir fails with 400
- don't read binary files twice
- logging improvements
- dialog on invalid notebook upload
- warn about disabled `--save`
2014-07-31 11:57:38 -07:00
MinRK
3c26b079f0
updates per review
...
- clarified docstrings and errors
- still more notebook/file renames
- configurable untitled names
- copy_from can be full path
- fix running, upload, new-tab behaviors in dashboard
Yay, review!
2014-07-31 11:57:38 -07:00
MinRK
bec995aa63
updates per review
...
a few more notebook mentions in docstrings,
and inappropriate use of setdefault.
2014-07-31 11:57:37 -07:00
MinRK
93b300adda
support deleting empty directories
...
can’t copy directories
2014-07-31 11:57:37 -07:00
MinRK
260afd76ae
contents service review
...
- missed some s/notebook/file/ in docstrings
- manager doesn’t sort contents
2014-07-31 11:57:37 -07:00
MinRK
accf0878ae
test creating a directory with PUT
2014-07-31 11:57:37 -07:00
MinRK
8c4069cc00
add support and tests for uploading and saving regular files
2014-07-31 11:57:36 -07:00
MinRK
0c0eb43719
teach contents service about non-notebook files
2014-07-31 11:57:36 -07:00
MinRK
6cce477e07
rename notebooks service to contents service
...
minimal functional changes, committing because tests are passing.
2014-07-31 11:57:36 -07:00
MinRK
b73aa2b9f9
mv services/notebooks services/contents
2014-07-31 11:57:35 -07:00
Thomas Kluyver
0e3d27c841
Deterministic order for kernels in notebook UI
2014-07-24 16:55:00 -07:00
rgbkrk
88e52b2746
Only allow iframe embedding on same origin.
2014-07-12 00:20:24 -05:00
Thomas Kluyver
806432072a
Add kernel name to sessions REST API
...
Also, some refactoring so that the relationship between session, kernels
and notebooks is managed in the SessionManager, not in the HTTP
handlers.
2014-07-10 23:50:00 -05:00
Thomas Kluyver
ae6309c122
Add support for different kernel specs to kernels REST API
2014-07-10 23:50:00 -05:00
MinRK
e64f689374
don’t import IPython.parallel until it’s used
...
in IPython.html.notebookapp
2014-06-24 15:53:27 -07:00
Thomas Kluyver
3b92c7c24f
Merge pull request #6011 from minrk/no-jsonapi
...
only use zmq.jsonapi when talking to zmq sockets
2014-06-18 14:45:31 -07:00