Min RK
fbaae651ad
remove UI for setting default kernel
...
can be set with:
IPython.new_notebook_widget.set_default_kernel('kernel_name')
11 years ago
Min RK
8eb6ec00d8
store current kernel selection in frontend config
...
instead of localStorage
11 years ago
Min RK
11ef669ec6
kernelspecs is a dict
...
sort menus client-side
11 years ago
Min RK
d9767e8c94
separate selecting default kernel from new notebook with specified kernel
...
adds checkmark to indicate selection
11 years ago
Min RK
0cfd8731a0
include current kernel name in new notebook dropdown
11 years ago
Min RK
d312486840
Add kernel-select dropdown to new notebook button
...
most recent choice is remembered in localStorage
11 years ago
Min RK
f94e482478
handle undefined settings in promising_ajax
11 years ago
Min RK
696394e27d
allow kernel_name to be specified in url parameter
11 years ago
Min RK
9e809126e4
add utils.get_url_param
...
I really cannot believe that we need to write this ourselves
11 years ago
Thomas Kluyver
c3cb2164f6
Clear output after replacing cell contents
11 years ago
Thomas Kluyver
90817ccb1f
Machinery to replace the current cell instead of adding a new one
11 years ago
Matthias Bussonnier
b12ac2cb15
Merge pull request #7011 from jdfreder/killthelayout
...
Kill the layout manager
11 years ago
Jonathan Frederic
e519371402
Merge pull request #7093 from jasongrout/model-views
...
Make the model.views dict a dict of promises for views
11 years ago
Jonathan Frederic
5e7d1cfa9f
Add dark lower border to pager handle
11 years ago
Jonathan Frederic
e7330f5e22
Address @carreau 's review comments
11 years ago
Jonathan Frederic
c0f01d65e8
Increase pager handle size.
11 years ago
Jonathan Frederic
ebb6e818a7
Fix, prevent notebook from having its height set on pager display
11 years ago
Jonathan Frederic
e79a43e867
Fix scroll/resize handle missing behavior.
11 years ago
Jonathan Frederic
a7d54cd512
Fix scrolling for large outputs
11 years ago
Jonathan Frederic
353a9afd34
Kill the layout manager
11 years ago
Jonathan Frederic
5a9e4d7986
Manual fixes
11 years ago
Jonathan Frederic
b53386b37b
Ran function comment conversion tool
11 years ago
Jason Grout
13c1b95fbd
Make the model.views dict a dict of promises for views
...
Otherwise, there is a race condition where the model doesn't know about views until they are actually created.
11 years ago
Jonathan Frederic
91524a1379
Merge pull request #7057 from Carreau/jsdoc
...
Move js doc into function themselves.
11 years ago
Jason Grout
63f8566c6f
Wait for any promises returned by a view's render method before considering the view created
...
This lets a view wait on children views to be created before considering itself created.
Thanks to @ssunkara for catching this.
11 years ago
Kyle Kelley
a19f345170
Merge pull request #7007 from Carreau/less-update
...
Less update
11 years ago
Thomas Kluyver
1929f5702c
Merge pull request #6945 from minrk/kernel-info-lang
...
fix loading of language name from kernel_info
11 years ago
Bussonnier Matthias
a2b35cb869
use less variable for rounded corner
...
and allow none in versions comparison
11 years ago
Min RK
0a36fb6cdc
Merge pull request #7068 from Carreau/close-pager
...
close pager on escape on command mode
11 years ago
Thomas Kluyver
eb14a13843
Merge pull request #6991 from minrk/unhandled-types
...
Handle unrecognized output and cell types
11 years ago
Matthias Bussonnier
ed7bcb5359
close pager on escape on command mode
11 years ago
Osada Paranaliyanage
bc55f3c16e
Refresh terminal list. closes #7018 .
11 years ago
Min RK
88219df674
Preserve nbformat_minor from the future
...
warn on click of unrecognized elements, rather than on load.
11 years ago
Matthias Bussonnier
684b31bea1
Merge pull request #6990 from jasongrout/viewlists
...
Refactor the do_diff and manual child view lists into a separate ViewList object
11 years ago
Matthias Bussonnier
480beffd7b
Move js donc into function themselves.
...
Then it is possible in the browser js console to get the documentation
interactively.
11 years ago
Matthias Bussonnier
0bb4e55ff6
Merge pull request #7055 from foogunlana/codemirror_bug_fix
...
Fixed the code mirror skipping Markdown cell bug
11 years ago
foogunlana
f0010c086d
Fixed code mirror bug for markdown cells
11 years ago
foogunlana
dbc98b5f69
Fixed code mirror skipping Markdown cell bug
11 years ago
Min RK
9067245c0b
Merge pull request #7033 from Carreau/fcell
...
get cell correctly in nested context
11 years ago
Scott Sanderson
6a8dfa492e
BUG: Prevent users from undoing the initial document load with CTRL-Z.
...
Prior to this change, setting a document's initial content in the text
editor created a history entry, which meant that hitting CTRL-Z
repeatedly could clear the entire document. This change clears document
history after loading so that repeated CTRL-Z applications return the
document to its state at load time.
11 years ago
Jason Grout
3c98127f7c
remove obsolete optimization
11 years ago
Bussonnier Matthias
794ef18920
get cell correctly in nested context
...
fix some extensions like live_reveal
the .not('.cell .cell') part prevent the potential selection of DOM
elelment that would have the class cell from any output. In each branch
of the dom we thus select the first decendent node that have the class
'.cell'.
11 years ago
Thomas Kluyver
a5e065328b
Extensions config for text editor
11 years ago
Thomas Kluyver
d64c6e5841
Load nbextensions from config
11 years ago
Jason Grout
e6a8ef00e0
Catch errors after our then()s, instead of in parallel with them (this missing exceptions)
...
When an error is thrown in a then() success handler, it doesn't call the same then()'s error handler.
I also made all of the utils.reject handlers verbose to aid in debugging.
11 years ago
Jason Grout
efe7098a60
Fix viewlist to use promises correctly
...
A viewlist wasn't getting properly populated before. This also switches the list update to use splice for in-place updates.
11 years ago
Min RK
cf91873644
Merge pull request #6866 from takluyver/nb-texteditor
...
Notebook text editor
11 years ago
Thomas Kluyver
011beaa385
Rename texteditor files & folders to edit
11 years ago
Jason Grout
9553f30222
Update widget selection containers to reflect how viewlist works
...
add_child takes a model and returns a view. remove_child takes a view and removes it.
the pop_child_view method is now gone.
11 years ago
Jason Grout
247ebf16f0
Add comments emphasizing the order of steps in widget box remove() methods
11 years ago