Brian E. Granger
ab83599d36
Merge pull request #7389 from minrk/one-websocket
...
use single WebSocket connection for all channels
11 years ago
Min RK
a6800450e4
Merge pull request #7398 from jasongrout/body-classes
...
Split apart the body attributes and classes in the notebook templates
11 years ago
Min RK
3cf6eacc86
Merge pull request #7324 from quantopian/separate-checkpoint-manager
...
DEV: Refactor checkpoint logic out of FileContentsManager into a separate class.
11 years ago
Mathieu
d90cc0e0de
put current kernel at the top
11 years ago
Mathieu
4e5839dde4
add choice of kernel for new notebook
11 years ago
Mathieu
0eb340b3e2
create new notebook with same kernel
11 years ago
Jason Grout
5dea7ad30b
Split apart the body attributes and classes in the notebook templates
11 years ago
Scott Sanderson
64e5c49608
DEV: Break get_checkpoint into separate methods.
...
One for notebooks and one for checkpoints.
11 years ago
Scott Sanderson
2569c3069d
STY: s/CheckpointManager/Checkpoints
...
It's easy to confuse CheckpointManager and ContentsManager.
11 years ago
Scott Sanderson
021e2da495
DEV: Separate FileCheckpointManager and GenericFileCheckpointManager.
...
- Adds a `GenericCheckpointMixin` as a helper for implementing the two
boundary-traversing Checkpoint API methods, `create_checkpoint` and
`restore_checkpoint`.
- `GenericFileCheckpointManager` is implemented as a subclass of
`FileCheckpointManager` using `GenericCheckpointMixin`. Note that
this is the safe subtyping relationship because of method
signature *contra*variance: `FileCheckpointManager` accepts
`FileContentsManager` in its method signatures type, whereas
`GenericFileCheckpointManager` accepts any `ContentsManager`.
- Moved Checkpoint-related classes to their own files.
11 years ago
Jason Grout
0bdfdc03ca
python3 does not like adding lists and map results
...
Thanks to @takluyver for pointing this out
11 years ago
Jason Grout
18cfbc0d11
Generate fontweight enum values without an extraneous variable from a comprehension
...
In python 2, the comprehension will create a new class attribute, i. Using a map will not create the extra local variable.
11 years ago
Matthias Bussonnier
dc9efdfc98
Split js tests in N subgroups.
...
js test are the longer ~8 minutes vs ~3 for Python, and fails the more often.
Hopefully this will speedup the build and have less test relaunched when we
have a random faillure. Splitting should make the js test a bit faster
11 years ago
Scott Sanderson
12fe97e2af
DEV: Allow CheckpointManagers to optimize for shared backends.
...
On `create_checkpoint` and `restore_checkpoint`, pass a path and a
`ContentsManager` to `CheckpointManager` instead of an already-loaded
model.
The `CheckpointManager` base class provides a correct implementation of
these methods that's generic across any ContentsManager, but subclasses
are free to specialize when the storage backend of `ContentsManager` is
shared.
11 years ago
Scott Sanderson
55d4e20aaf
DEV: Remove ContentsManager.walk.
11 years ago
Scott Sanderson
2b73f1e620
DEV: Implement os.walk analog for ContentsManagers.
11 years ago
Scott Sanderson
1e2e86dcca
MAINT: Return dicts from CheckpointManager.get_checkpoint.
...
The output is going to get converted to a dict anyway, and this makes it
easier to pipe output from a CheckpointManager directly to a
ContentsManager.
11 years ago
Min RK
1cac03528b
use single WebSocket connection for all channels
...
multiplex on a 'channel' key in message,
rather than separate websockets.
Unlike zmq, there aren't different message patterns that require the channels to be separate.
Reduces FD count by factor of 3 and connection complexity in js.
11 years ago
Min RK
38d0463557
Merge pull request #7215 from Carreau/coveralls
...
enable test coverage on coveralls
11 years ago
Matthias Bussonnier
2b7568c13f
Merge pull request #7375 from minrk/empty-execute-result
...
ensure data, metadata are set in execute_results
11 years ago
Matthias Bussonnier
87b7f7599c
Merge pull request #7278 from minrk/nb-file-ext
...
don't enforce .ipynb extension in URLs
11 years ago
Matthias Bussonnier
f51872c4c2
Merge pull request #7346 from jdfreder/terminal-page
...
Use page backdrop color in terminal page
11 years ago
Min RK
b891a50896
Merge pull request #7379 from juhasch/js-tests
...
Js tests
11 years ago
Jonathan Frederic
f79b914e5c
invoke css
11 years ago
Jonathan Frederic
f0da3c863c
Make headerbar -1 margin global
11 years ago
Juergen Hasch
5e641876da
fix insert_cell_at_index call in tests
11 years ago
Juergen Hasch
2fbf8835e1
fix insert_cell_at_index call in tests
11 years ago
Matthias Bussonnier
cc0efade88
Merge pull request #7376 from minrk/modal-z-index
...
recompile css
11 years ago
Min RK
c9c6b8d8a2
recompile css
...
it had fallen out of sync with updated bootstrap
11 years ago
Min RK
d2335ab000
handle missing data, metadata in validate_mimebundle
11 years ago
Min RK
9e3e5cfca7
store widget state in single key
...
rather than in a dict, which doesn't work without reserializing *all* stored widget states (of all notebooks), since localStorage only supports storing strings.
11 years ago
Min RK
ffaa09492a
Merge pull request #7315 from Carreau/codacy2
...
miscellaneous cleanup
11 years ago
Min RK
796b480922
Merge pull request #7359 from jdfreder/tab-fix
...
Accordion and Tab widget, fixes for ancient bugs.
11 years ago
Min RK
45d8afa32d
Merge pull request #7361 from quantopian/fix-extension-rename
...
BUG: Fix broken codemirror highlighting on file rename.
11 years ago
dongweiming
491046425d
fix widget description can not display when use --no-mathjax
11 years ago
Jonathan Frederic
ad546d89f9
Merge pull request #7341 from jdfreder/remove-popup
...
Remove the popup widget
11 years ago
Scott Sanderson
cbb196bb94
DOC: Add comment.
11 years ago
Scott Sanderson
782ac56768
BUG: Fix broken codemirror highlighting on file rename.
...
When a users uses the rename dialog in the text editor, we call
_set_mode_for_model on the returned model. The expected model to be
returned from rename has no value for mimetype, which causes us to pass
`undefined` to `CodeMirror.findModeByMIME`, which returns `undefined`
back. We then try access an attribute of the (undefined) return value,
causing an error.
This now properly checks whether the `mimetype` attribute is set on the
input model.
11 years ago
Scott Sanderson
7030a8717a
DEV: Add full support for non-notebook checkpoints.
11 years ago
Scott Sanderson
23837e9ad4
DEV: Remove unnecessary notary calls.
11 years ago
Matthias Bussonnier
a82db63916
Merge pull request #7330 from minrk/display-name
...
use 'Python X' for IPython kernel display name
11 years ago
Matthias Bussonnier
214195ce5f
Merge pull request #7327 from minrk/kernel-links
...
move Python-specific help links to kernel_info
11 years ago
Matthias Bussonnier
c0efca80ea
Merge pull request #7331 from minrk/fix-scroll
...
fix scroll actions
11 years ago
Matthias Bussonnier
ea5f2066af
Merge pull request #7340 from minrk/kernel-js-event
...
load kernel js, css, logo on spec_changed event
11 years ago
Matthias Bussonnier
41f24bbe2c
Merge pull request #7358 from jdfreder/persistence-page-specific
...
Associate widget state persistence with current URL.
11 years ago
Matthias Bussonnier
1e6f969c39
Merge pull request #7357 from jdfreder/error-overlay
...
When executing a cell, clear output and ignore queued animations.
11 years ago
Matthias Bussonnier
290dab0846
Merge pull request #7342 from jdfreder/wid-border-radius
...
Adjust widget border radius to match new notebook style
11 years ago
Jonathan Frederic
47c12abbf3
Fix a bunch of bugs with the accordion and tab widgets
11 years ago
Jonathan Frederic
8ad7cb3f4b
Associate persistence with URL
11 years ago
Jonathan Frederic
b37c5d21d0
When executing a cell, clear output and ignore queued animations.
11 years ago
Jonathan Frederic
edf737d111
invoke css
11 years ago
Jonathan Frederic
8ff7381ef3
Remove superfluous body tag from terminal less
11 years ago
Jonathan Frederic
8e54937893
Fixed pre-display "pixel-like" widget attribute parsing
11 years ago
Min RK
67abf3ddab
update kernelspec test
...
to expect Python display name
11 years ago
Jonathan Frederic
e2bb4ca875
invoke css
11 years ago
Jonathan Frederic
7b602f07cc
Use page backdrop with the terminal
11 years ago
Jonathan Frederic
d0ab0ad4aa
Display kernels in alphabetical order.
11 years ago
Jonathan Frederic
992976844d
Merge pull request #7302 from Carreau/1pix
...
a few 1 pixel fixes.
11 years ago
Jonathan Frederic
8d3f5b2865
invoke css
12 years ago
Jonathan Frederic
1a1c93b9d2
Remove modal less
12 years ago
Jonathan Frederic
2f982bd1e0
invoke css
12 years ago
Jonathan Frederic
239b4ab3dc
Fix widget radii
12 years ago
Jonathan Frederic
3f2dc88154
Remove the popup widget
12 years ago
Scott Sanderson
631a68d83e
TEST: Test separate roots for Contents and Checkpoints.
12 years ago
Scott Sanderson
f71f216880
DEV: More checkpoint API refactoring.
...
Changed the public checkpoint API to:
- `create_checkpoint(self, nb, path)`
- `get_checkpoint_content(self, checkpoint_id, path)`
- `rename_checkpoint(self, checkpoint_id, old_path, new_path)`
- `delete_checkpoint(self, checkpoint_id, path)`
- `list_checkpoints(self, path)`
All paths in the above are API-style paths, and the `nb` argument to
`create_checkpoint` is a dictionary suitable for passing to
`nbformat.write`.
The new `get_checkpoint_content` method returns an unvalidated notebook
content dictionary. It is used by `ContentManager.restore_checkpoint`
to load content to be written via `save`.
12 years ago
Min RK
2587cf710c
load kernel js, css, logo on spec_changed event
...
Ensures kernel.js is always loaded.
It wasn't being loaded when creating a new notebook with a particular kernel because `change_kernel` wasn't being called. Only the `spec_changed` event is triggered by all the various ways a kernel can be loaded,
so load kernel stuff on that event.
12 years ago
Min RK
026ec844f9
update new notebook button with kernelspec changes
...
display_name is in the spec, not top-level.
12 years ago
Matthias Bussonnier
c1d9f4d436
Merge pull request #7283 from minrk/kernel-spec-model
...
add resource URLs to kernelspec model
12 years ago
Min RK
c6b610f04f
make FilesRedirectHandler redirect logic accessible
...
from a static method
instead of calling FRH.get(self), which doesn't work on Python 2
due to unbound method class checking.
12 years ago
Min RK
86dca85890
handle deprecated files redirect on /notebooks
12 years ago
Matthias Bussonnier
4e2dfe2527
Some code cleanup in javascript and python
...
change patern that are prone to error, like function redifinition
and other.
12 years ago
Min RK
96a5661648
fix scroll actions
...
div#notebook no longer scrolls at all.
Instead, only the body scrolls.
This may be a problem, but at least scroll actions work now.
12 years ago
Min RK
83f51e877c
move Python-specific help links to kernel_info
...
help_links in kernel_info were already in the msg spec,
but not implemented.
Python-specific docs are now linked to the Python version.
12 years ago
Min RK
cb0c95575e
friendlier error messages when invoke/lessc are missing
...
and not needed.
12 years ago
Scott Sanderson
dc295f67bd
MAINT: Add missing `config=True`s.
12 years ago
Scott Sanderson
4da8a30f20
DEV: Refactor checkpoint logic from FileContentsManager.
...
- Add a `CheckpointManager` base class and infrastructure for creating a
`checkpoint_manager` instance attribute on `ContentsManager`.
- Provide default implementations of `delete` and `rename` in the base
`ContentsManager` class. `ContentsManager` subclasses are now
required to implement `delete_file` and `rename_file`. These methods
no longer need to manage checkpoints.
- Move checkpoint-related functionality from `FileContentsManager` to a
dedicated `FileCheckpointManager` subclass.
- Move shared filesystem interaction logic into `FileManagerMixin`
used by both `FileContentsManager` and `FileCheckpointManager`.
- Minor tweaks to ContentsManager tests to get methods from the right
object.
The purpose of this change is to provide an API for users to replace
just the checkpoint logic associated with a particular
`ContentsManager`. In particular, this change makes it possible to
easily support remote storage of checkpoints while otherwise retaining
normal filesystem interactions.
12 years ago
Brian E. Granger
df578b8835
Merge pull request #7307 from Carreau/remove-white
...
remove whitespace below menubar when toolbar hidden.
12 years ago
Brian E. Granger
87ab53bcfe
Merge pull request #7311 from Carreau/reform-css-2
...
Reform css 2
12 years ago
Brian E. Granger
dd2c077939
Merge pull request #7318 from Carreau/dialog-border-radius
...
fix border radius on element.
12 years ago
Matthias Bussonnier
031e829daf
stack vertically keyboard shortcut on narrow viewport.
12 years ago
Matthias Bussonnier
0165e97c7c
unify submenu style with menu style
...
closes #7303 .
Also change the arrow that indicate submenu for a fontawesoem icon,
instead of the ugly hack that show only the left border of a rectangle element
which with is twice the one of its border to get a triangle.
12 years ago
Matthias Bussonnier
39444a7190
fix border radius on element.
...
set a value to border-radius large, and actually make border radius
small smaller than border radius large.
Make dialog border radius coherent with the rest of the UI.
12 years ago
Matthias Bussonnier
c3c2c0dd08
also print traceback
12 years ago
Min RK
52d37ca17a
Merge pull request #7312 from quantopian/refactor-contents-update
...
MAINT: Move `update` from FileContentsManager to ContentsManager.
12 years ago
Min RK
729c233f7d
Merge pull request #7308 from Carreau/reform-css
...
reformat css
12 years ago
Scott Sanderson
9aad3c631f
MAINT: Move `update` from FileContentsManager to ContentsManager.
...
The implementation in FileContentsManager is written entirely in terms
of the required API, and is sensible for other ContentsManager
implementations.
12 years ago
Matthias Bussonnier
80726e438b
Print that generating coverage report failed when runnign js test only
12 years ago
Matthias Bussonnier
160690f50a
reformat css
...
cause I want to inject some variable in it after (like border radius)
and a few other thigs.
This is just a reformating that does not change the generated css.
12 years ago
Min RK
d94479ad29
Merge pull request #7251 from Carreau/unregister-preset
...
add ability to unregister a preset
12 years ago
Matthias Bussonnier
54a3f47905
remove whitespace below menubar when toolbar hidden.
...
closes #7292
12 years ago
Min RK
47b41d980b
Merge pull request #7287 from Carreau/mistake
...
binary or is rare in JS
12 years ago
Jonathan Frederic
09b289d932
Merge pull request #7274 from Carreau/global-command
...
make global css change on command/edit mode
12 years ago
Matthias Bussonnier
27f3c224c2
a few 1 pixel fixes.
...
this uses the same html/css structure acroos the tabs, and reduce the overlay
click zone that expended the size of the header to 25px instead of 24px
12 years ago
Matthias Bussonnier
b003b62de4
Actually test that the j-nth cell.
12 years ago
Brian E. Granger
7b21e13705
Merge pull request #7242 from jdfreder/terminal-fixes
...
Some UI design changes for the Notebook and associates
12 years ago
Jonathan Frederic
34c08c035f
New file open editor
12 years ago
Jonathan Frederic
6e86c7645b
Fix JS test new button selector
12 years ago
Jonathan Frederic
9e3b18605a
Reverse order of file/folder and notebooks in new menu
12 years ago
Jonathan Frederic
e593e6a123
Dont prompt for name.
12 years ago
Jonathan Frederic
2c43bc60ae
invoke css
12 years ago
Jonathan Frederic
e0adde46f3
New new button
12 years ago
Jonathan Frederic
849c96ae61
Merge pull request #7268 from Carreau/ungroup-button
...
ungroup button on dashboard
12 years ago
Jonathan Frederic
c6548ebe0e
Merge pull request #7288 from Carreau/that/this
...
remove that.
12 years ago
Matthias Bussonnier
7a295d1924
Merge pull request #7273 from Carreau/content-no-namespace
...
Do not inject self in IPython namespace
12 years ago
Matthias Bussonnier
123c0f3b28
remove that.
12 years ago
Matthias Bussonnier
6b57f44bf6
ungroup button on dashboard
...
fix a few instanced of button toolbar that were not with the right class or not in btn groups.
12 years ago
Matthias Bussonnier
1dfdda6e97
binary or is rare in JS
12 years ago
Min RK
43da311f5e
add Notebook.ensure_extension
...
allows override of file-extension logic in notebook extensions
12 years ago
Matthias Bussonnier
06d4d1505a
Merge pull request #7266 from Carreau/shutdown-orange
...
make shutdown yellow/orange
12 years ago
Min RK
e7b6d5dec3
update kernelspec model tests
12 years ago
Min RK
a417785c5e
add resource URLs to kernelspec model
...
- move kernelspec itself to model.spec
- add resources top-level key with resource URLs
- no more 404s or HEAD requests under normal circumstances
12 years ago
Min RK
ad995dfdb8
Merge pull request #7244 from minrk/rm-signature
...
don't store signatures in notebooks
12 years ago
Thomas Kluyver
217e758e3d
Merge pull request #7264 from dongweiming/custom_js_3.0
...
Update custom.js for 3.0
12 years ago
dongweiming
85a2a88396
Update custom.js for 3.0
12 years ago
Thomas Kluyver
fa7423383e
Merge pull request #7191 from minrk/contents-test-reuse
...
abstract some methods in contents service tests
12 years ago
Min RK
4404c7ea2b
checkpoint
12 years ago
Min RK
979eb2d281
don't enforce .ipynb extension in URLs
...
let ContentsManager decide what's a notebook
12 years ago
Min RK
db5147998d
docstring on test_dir
12 years ago
Thomas Kluyver
eb93afeaf8
Merge pull request #7254 from quantopian/type-not-dotted-object
...
MAINT: Use `Type` instead of `DottedObjectName` for managers.
12 years ago
Bussonnier Matthias
9c959ce6b1
correct variable name
12 years ago
Bussonnier Matthias
15ab64e884
make global css change on command/edit mode
12 years ago
Bussonnier Matthias
eaf8fdc4f9
Do not inject self in IPython namespace
...
And do not require nemaespace either
- this is bad practice, and this prevent from
writing a blended content manager that works both
with drive and localhost as they shoudl both export
themselves to IPython.Contents module.
12 years ago
Scott Sanderson
acf011bd9c
DEV: Tweaks to Login/LogoutHandler setup.
...
- Require handlers to be tornado.web.RequestHandlers. Rename the
- NotebookApp attributes from log{in,out}_handler to log{in,out}_handler_class.
12 years ago
Jonathan Frederic
7926c36b0d
Remove right margin from the terminal
12 years ago
Jonathan Frederic
8d2e57e3ef
invoke css
12 years ago
Jonathan Frederic
028b79b385
Move kernel logo to right margin.
12 years ago
Jonathan Frederic
fd5659427d
invoke css
12 years ago
Jonathan Frederic
2c714357c4
Review comments
12 years ago
Jonathan Frederic
359bc2e1bc
invoke css
12 years ago
Jonathan Frederic
096b1638bf
Remove padding on editor
12 years ago
Jonathan Frederic
7daba81475
invoke css
12 years ago
Jonathan Frederic
cda53215ba
Improve edit app
12 years ago
Jonathan Frederic
b81a9f6bc6
invoke css
12 years ago
Jonathan Frederic
972065ad22
Additional aesthetic clean-up
12 years ago
Jonathan Frederic
461b2e74b6
invoke css
12 years ago
Jonathan Frederic
94a893d975
Prevent terminal from scrolling
12 years ago
Jonathan Frederic
fbc2adf2d5
Make things consistent
12 years ago
Jonathan Frederic
4e7832cf64
invoke css
12 years ago
Jonathan Frederic
726c95cbff
Address review comments
12 years ago
Bussonnier Matthias
2b0147c21a
no shadow on print media
...
Also hide celltoolbars
12 years ago
Matthias Bussonnier
6e9ef7abeb
Style notebook as a document
12 years ago
Jonathan Frederic
4d62ad0df6
invoke css
12 years ago
Jonathan Frederic
79fe99d124
Make terminal pretty
12 years ago
Jonathan Frederic
3969f0ec84
Move terminal less into better location
12 years ago
Jonathan Frederic
f8968df7e2
Merge pull request #7148 from minrk/kernel-selector
...
remove kernel selector from header
12 years ago
Bussonnier Matthias
bb61df5c35
make shutdown yellow/orange
12 years ago
Jonathan Frederic
196478b765
Merge pull request #7260 from takluyver/widgetvaluedefaults
...
Widget values as positional arguments
12 years ago
Matthias Bussonnier
27c90f1da3
Merge pull request #7087 from nheijermans/master
...
Enable the IPython Notebook to display messages from other clients.
12 years ago
Scott Sanderson
8e2286911d
DEV: Set `klass=object` for Log{in,out}Handler.
...
It seems plausible that people will implement custom handlers that
aren't subclasses of a known type.
Another possible option would be `IPythonHandler`, but even that feels
too restrictive.
12 years ago
Scott Sanderson
0953de3432
MAINT: Remove unused imports.
...
I was in the neighborhood...
12 years ago
Scott Sanderson
8ab449cd9a
MAINT: Use `Type` instead of `DottedObjectName` Log{in,out}Handler.
12 years ago
Scott Sanderson
23b3a332f9
MAINT: Use `Type` instead of `DottedObjectName` for managers.
...
`Type` is strictly more powerful than `DottedObjectName` and is easier
for users to override.
12 years ago
Thomas Kluyver
0c3c3b3c79
Fix instantiating config in editor and terminal
12 years ago
Thomas Kluyver
e2139e7190
Fix module name
12 years ago
Thomas Kluyver
01331514bd
Load common_config, and load extensions specified therein
12 years ago
Thomas Kluyver
c719d2fe83
Refactor out load_extensions_from_config function
12 years ago
Min RK
00e4ad59c0
add counter to new notebooks in test_manager
...
ensures brand new notebooks are untrusted
previously, all new notebooks were identical,
so once one was trusted, they would all start trusted.
12 years ago
Thomas Kluyver
9c0fb7bf68
Use more conventional *args naming over *parg
12 years ago
Thomas Kluyver
cbb685b314
Fix copy-pasted super() call
12 years ago
Jason Goad
cda015340c
added value positional argument to applicable widgets
12 years ago
Jason Goad
7bcced9da0
widget fix?
12 years ago
Scott Sanderson
a1ad9abe51
MAINT: Unicode literal in assertDictContainsSubset
12 years ago
Scott Sanderson
4a2149d1c3
TEST: Add a non-notebook file to directory test.
12 years ago
Scott Sanderson
af7d1cdb50
STY: Define dirs as a single expression.
12 years ago
Scott Sanderson
f7cf204b25
BUG: Convert to bytes before comparing binary blobs.
12 years ago
Scott Sanderson
e9b81b6c7a
TEST: Verify base64 return values after decoding.
12 years ago
Scott Sanderson
fcc1bbecb3
MAINT: Remove unused blob and b64_blob attributes.
12 years ago
Scott Sanderson
f20a7b41cb
TEST: Abstract out directory/file deletion methods.
12 years ago
Scott Sanderson
46f299ccf2
TEST: Refactor symlink tests.
12 years ago
Min RK
a4b47e7e8a
move symlink tests to TestFileManager
12 years ago
Scott Sanderson
61c2e0442f
TEST: Add checks for subdirectory name splitting.
...
Previously the tests failed to catch a bug where a ContentsManager
didn't split name from path in a nested subdirectory.
12 years ago
Scott Sanderson
c7ca3066ec
TEST: More fine-grained test for directory contents.
...
Verify that each entry in a directory listing matches the result of a
content-less direct get.
12 years ago
Scott Sanderson
23e5e6da4f
TEST: Expect a 404 on delete of non-existent file.
12 years ago
Scott Sanderson
6bfab2de08
BUG: Allow for the possibility that to_path is empty string.
...
This is a legal input for representing the root directory.
12 years ago
Scott Sanderson
44805b94db
BUG: Sanitize to_path in ContentsManager.copy.
...
Without this, one of the test cases in `test_copy` attempts a copy to a
directory that starts with a leading double-slash.
12 years ago
Scott Sanderson
7ab1bf7487
BUG: Set default mimetype when base64 is requested
12 years ago
Min RK
c166a05f5d
abstract some methods in contents service tests
...
should allow re-use for ContentsManager subclasses
12 years ago
Min RK
53d1f1b1a1
Merge pull request #7259 from takluyver/kernelspec-head-error
...
Fix HEAD requests for kernelspec resources
12 years ago
Thomas Kluyver
c7f2a8689e
Merge pull request #7253 from minrk/async-contents-handlers
...
allow ContentsManager methods to return Futures
12 years ago
Thomas Kluyver
49fbae9751
Fix HEAD requests for kernelspec resources
...
Closes gh-7237
Closes gh-7258
StaticFileHandler.get() is a coroutine. When Tornado calls a handler
method, it uses the return value to determine whether or not it's a
coroutine. So when head() calls get(), it needs to pass the return value
on for Tornado to handle it properly.
12 years ago
Min RK
41b548bacc
use gen.Return for Python 2
12 years ago
Min RK
da95c496d9
transparent gif placeholder src
...
avoids invalid empty src
12 years ago
Min RK
9f9714e11f
remove kernel logo text placeholder
12 years ago
Min RK
da88bff678
add text placeholder for kernels with no logo
...
capital first initial on gray field
12 years ago
Min RK
d5f6aaa1f6
remove kernel selector from header
...
- add kernel name to indicator
- float kernel logo where indicator used to be
12 years ago
Min RK
dc70ae6b07
allow ContentsManager methods to return Futures
...
mainly adding `@gen.coroutine` and `yield gen.maybe_future` all over the place.
No FileContentsManager methods are actually async at this point.
12 years ago
Brian E. Granger
6c55690994
Merge pull request #7227 from jdfreder/undead
...
Add visual cue for widgets with dead comms
12 years ago
Jonathan Frederic
e7370be7cc
invoke css
12 years ago
Jonathan Frederic
79fd5c3fed
Address comments
12 years ago
Thomas Kluyver
5a5f621591
Merge pull request #7247 from Carreau/fix-restore-checkpoint
...
fix restore checkpoint add an empty cell
12 years ago
Thomas Kluyver
2dbc8f5304
Merge pull request #7248 from Carreau/config-ctm
...
pass config to contentsManager
12 years ago
Bussonnier Matthias
f0c5de7c7e
make method private
12 years ago
Min RK
0c39228307
Merge pull request #7250 from Carreau/kspecbase
...
fix logo on base_url prefix
12 years ago
Bussonnier Matthias
ddbd7aa4fa
add ability to unregister a preset
...
fix #7218
12 years ago
Jonathan Frederic
6b2333fc51
Merge pull request #7229 from jdfreder/tab-rename
...
Tab rename - s/Notebooks/Files
12 years ago
Bussonnier Matthias
3bce53e32e
fix logo on base_url prefix
12 years ago
Bussonnier Matthias
51f1cad6e4
pass config to contentsManager
12 years ago
Bussonnier Matthias
df418c6a62
fix restore checkpoint add an empty cell
12 years ago
Matthias Bussonnier
449384e85f
Merge pull request #7224 from jasongrout/fix-toolbarjs
...
Fix javascript iteration through array
12 years ago
Matthias Bussonnier
7eb4d1b84d
Merge pull request #7225 from Carreau/fix-actions
...
fix leading underscore
12 years ago