Sylvain Corlay
f1cc2d1cc6
Allow a comparison operator 'equals' to be set for reverse lookup
11 years ago
Min RK
cc64652f56
use \0 instead of 'wake up' to finish output
...
since we are now seeing the captured output,
we don't need `wake up` at the end of all of our test outputs.
11 years ago
Min RK
c9f60e6354
Merge pull request #7664 from minrk/start-busy
...
don't trigger kernel_starting after kernel_connected
11 years ago
Min RK
5298f5342a
Merge pull request #7626 from Carreau/refresh-rate
...
Make time to refresh "configurable", and limit refresh on focus
11 years ago
Jonathan Frederic
95ac0675c9
Merge pull request #7665 from jdfreder/fixedmodeindi2
...
Fix the mode indicator width.
11 years ago
Jonathan Frederic
697fcf3dcd
Remove accident
11 years ago
Jonathan Frederic
fae9040524
invoek css
11 years ago
Jonathan Frederic
5f72e00dd7
Used fa-fw to force mode indicator as fixed width.
11 years ago
Min RK
ded9e7b6ad
don't trigger kernel_starting after kernel_connected
...
trigger instead at the beginning of Kernel.start
if a websocket is fully connected, the kernel has finished starting
11 years ago
Jonathan Frederic
69b07bf0a8
Prevent list items from being deselected on redraw.
11 years ago
Jonathan Frederic
6d248f258a
Merge pull request #6890 from bollwyvl/widget-select-multiple
...
SelectMultiple widget
11 years ago
Min RK
f1828497e5
only show prompt overlay if there's a prompt
...
on which to overlay
11 years ago
Min RK
c0b5621732
Merge pull request #7655 from Carreau/position-tooltip
...
position tooltip in #site
11 years ago
Matthias Bussonnier
ea8fbb930f
position tooltip in #site
...
Fixes #7654 . As the position may be calculated for some browser
differently because of the translate-Z hack.
11 years ago
Matthias Bussonnier
7cbc54b9c3
fix sticky warning.
...
Widget.warning('text....') was infinitely sticky in some cases
like content manager raising 'not implemented' on copy.
The make default click_callback to dismiss notification,
and fix the logic to not unbind the click handler if it requests
the notification not to be dismissed.
11 years ago
Min RK
0ef85028d7
don't prevent spec_changed from firing on load
...
fixes check for the case where kernelspec info is coming from the kernel,
rather than notebook metadata.
This case was getting skipped by a bad check on `_session_starting`.
11 years ago
Nicholas Bollweg
39e7836ddc
firing select.change on option.click
11 years ago
Nicholas Bollweg
7643b3ccf0
listening for change on SelectView and SelectMultipleView
11 years ago
Nicholas Bollweg
6a372a4c66
squashing the whitespace changes
11 years ago
Min RK
e48d772063
back to dev
11 years ago
Min RK
4ac3b6b6a6
prerelease 3.0.0b1
11 years ago
Min RK
1a4aac0de0
Merge pull request #7554 from jdfreder/interact-fix
...
Use Output widget with Interact
11 years ago
Min RK
526ae4ff16
Merge pull request #7630 from minrk/untranslateZ
...
remove translateZ hack
11 years ago
Thomas Kluyver
180842480d
Merge PR #7616 at f6260bd: notebook running indicator in dashboard
...
Closes gh-7616
11 years ago
Mathieu
5de2bdfbbb
invoke css
11 years ago
Mathieu
0f78612964
replace stripes with hover highlight
11 years ago
Min RK
a5218e0cae
fix initial collapsed state on load
...
OutputArea.collapsed should only be assigned inside expand/collapse methods
setting `collapsed = false` when it actually is collapsed prevents expand from having any effect,
resulting in apparently invisible output.
11 years ago
Min RK
7ce360aa6b
Merge pull request #7580 from Carreau/dirty-indicator
...
indicate unsaved changes in text editor
11 years ago
Min RK
fd8db4f282
remove translateZ hack
...
while it does improve repaint performance on *some* setups (OS X+Chrome+Low-DPI),
it seems to have no effect on most (OS X+FF, OS X+Chrome+High-DPI, Linux+Chrome),
and the opposite effect on others (Linux+FF).
11 years ago
Thomas Kluyver
d3c9ea2c7f
Merge pull request #7468 from minrk/jslink
...
document and validate link, dlink
11 years ago
Matthias Bussonnier
cccbf02be5
Make time to refresh "configurable", and limit refresh on focus
...
Closes #7611 and jupyter/jupyter-drive#61
11 years ago
Mathieu
eca11122f9
invoke css
11 years ago
Mathieu
8bf4dbb488
add zebra striping to the dashboard
11 years ago
Jason Grout
d3bd5ac96a
Fix error when overwriting a bad symbolic link installing an nbextension
...
The unit test fails before this fix and works after this fix.
Basically, if the already-installed symlink is a bad link, .exists()
returns False (so the existing link is not removed), while .lexists()
will return True (so the existing link is removed).
11 years ago
Thomas Kluyver
c571fa545d
Merge pull request #7609 from jasongrout/install-single-nbextension
...
Change install_nbextension to take install only a single nbextension, with an optional destination
11 years ago
Thomas Kluyver
e7b54cb7e0
Merge pull request #7622 from jdfreder/uploadfix
...
Fix upload feature for new dashboard UI
11 years ago
Jonathan Frederic
bd30228c27
Add some more comments...
11 years ago
Jonathan Frederic
efaffe1c02
invoke css
11 years ago
Jonathan Frederic
87186354d3
Make upload work with new UI
11 years ago
Min RK
358099a6d6
add missing error dialogs to tree actions
...
- new file/folder, copy were not catching errors
- made error messages more consistent
11 years ago
Min RK
a720a14159
fix help-links on Firefox
...
link text must come after icon to layout properly on Firefox
this makes help links from the kernel match those already populated from the template
11 years ago
Mathieu
a9201807a9
add running indication for notebook icon in dashboard
11 years ago
Jonathan Frederic
7b8b8b7a1e
Fix interact test
11 years ago
Jonathan Frederic
03ffca6d88
Merge pull request #7602 from SylvainCorlay/fix_slider
...
Validation on the python side
11 years ago
Thomas Kluyver
b0e4ef6b5c
Merge pull request #7505 from jdfreder/actions
...
Dashboard checkbox style interface
11 years ago
Min RK
2ad741a673
remove Link, DirectionalLink from widgets.__init__
...
only functions are part of the public API
11 years ago
Min RK
0071563176
use jslink, jsdlink for frontend link functions
11 years ago
Thomas Kluyver
9790e43997
Merge pull request #7605 from minrk/f-the-pager
...
fix the pager and tooltip locations
11 years ago
Jason Grout
4a9e371243
Cast the destination url to unicode in python2
...
Thanks to @takluyver for this review comment.
11 years ago
Sylvain Corlay
64788624f5
Not using _**_changed handles anymore
11 years ago