Michael Marchetti
536a6d64dc
Use `dict()` to convert the mapping to a dictionary
11 years ago
Michael Marchetti
5639ac7134
Fix secondary error that occurs during handling of HTTP 500 status
...
In log.py, we're attempting to log the request headers when a
500-series error occurs, but tornado.httputil.HTTPHeaders isn't a dict -
it inherits from collections.MutableMapping. So it fails during
JSON serialization. The fix is to convert it to a dict first.
Unfortunately, the HTTPHeaders class doesn't expose any methods
to access the underlying dictionary (`request.headers._dict`) directly,
so we recreate it using the public API.
11 years ago
Thomas Kluyver
d732e28cb2
Merge pull request #711 from minrk/allow-async-kernel-manager
...
allow some KernelManager methods to be async
11 years ago
Min RK
377f4f24dc
Merge pull request #783 from marceloramires/master
...
Fixing way in which selection ranges are deleted
11 years ago
Safia Abdalla
4e8344831c
Updated tests on rename in ContentsManager
11 years ago
marcelo-ramires
89b7d96ccd
Fixing way in which selection ranges are deleted
11 years ago
Thomas Kluyver
edd8fdd44c
Merge pull request #631 from jcb91/feature/celltoolbar_fix
...
fix incorrect html structure from cell toolbar generator functions
11 years ago
Min RK
b2e33823cb
Merge pull request #765 from marceloramires/master
...
Fixing backspace on multiple selection bug
11 years ago
Min RK
f78e3f0d76
Merge pull request #779 from captainsafia/add-tests-for-dir-rename
...
Add tests for directory renaming under ContentsManager
11 years ago
Min RK
ba344843eb
add SessionManager.close
...
allows explicit closing, rather than relying on implicit del,
which can run in the wrong thread.
11 years ago
Min RK
cfa64552b2
initialize Application in background thread
...
rather than initializing in main and starting in background, which seemed to cause occasional issues.
Also fix checking for dead notebook, which is no longer a subprocess.
11 years ago
Min RK
9043ae145c
handle async in sessions
...
needed because sessions call kernel methods
11 years ago
Min RK
6024f04698
allow some KernelManager methods to be async
...
Allows custom KernelManagers to do slower async operations as part of kernel startup/shutdown.
11 years ago
Min RK
20d858a02a
Merge pull request #706 from Carreau/ugly-fix
...
Work around jump/scroll on heading links
11 years ago
Min RK
1d934b3a9a
Merge pull request #777 from jcb91/bugfix/keyboard
...
give defined ordering to keyboard shortcuts with the same help_index
11 years ago
Matthias Bussonnier
cdb7c7b843
Merge pull request #770 from SylvainCorlay/module_names
...
Use jquery-ui instead of jqueryui
11 years ago
Jonathan Frederic
ca4ec66f5a
Merge pull request #763 from Carreau/fixWaitForOutput
...
Timeout is an option of `waitFor`, not `then`
11 years ago
Safia Abdalla
8e0a8d1ea6
Added tests for directory renaming
11 years ago
Josh Barnes
1a855af8f2
give defined ordering to keyboard shortcuts with the same help_index
11 years ago
Sylvain Corlay
f32651e202
Use jquery-ui instead of jqueryui
11 years ago
Josh Barnes
531b373eb8
fix bug in `notebook/js/quickhelp` whereby edit-mode shortcuts were duplicated on every rebuild
11 years ago
Matthias Bussonnier
259be440b5
use var
11 years ago
Sylvain Corlay
2cb85ab939
fix deprecation warning
11 years ago
marcelo-ramires
6692ea7348
Fixing backspace on multiple selection bug
11 years ago
Matthias Bussonnier
c54b4f0e1d
more info on timeout
11 years ago
Matthias Bussonnier
a0929ab8c1
Timeout is an option of `waitFor`, not `then`
11 years ago
Matthias Bussonnier
6f5e7cae97
fix typo
11 years ago
Brian E. Granger
eaf06374ba
Merge pull request #752 from minrk/explicit-default-dialog-button
...
allow specifying default dialog button
11 years ago
Brian E. Granger
a9626ce3d1
Changing colors on find and replace matches.
11 years ago
Matthias Bussonnier
2dabc68924
Merge pull request #741 from ellisonbg/find-replace-ux
...
Work on the style and usability of find and replace...
11 years ago
Min RK
85bf940b3c
Merge pull request #729 from Carreau/debug-484
...
Add debug statements for notebook changed on disk
11 years ago
Brian E. Granger
e31fc195e2
Addressing review comments...
11 years ago
Brian E. Granger
0576363be4
Better jQuery style...
11 years ago
Min RK
ed812735cf
allow specifying default dialog button
...
rather than always focusing rightmost button
use:
default_button: "label"
to explicitly request a button be the default.
11 years ago
Brian E. Granger
75a0585aec
Work on the style and usability of find and replace...
11 years ago
Min RK
b10326e93c
Merge pull request #718 from Carreau/fixansi
...
Fix closing ansi handling.
11 years ago
Colin Jermain
5768fc7c11
BUG: use url_escape to encode URL for browser
11 years ago
Matthias Bussonnier
cdd2ae7cc6
Add debug statements for #484
11 years ago
Matthias Bussonnier
226a0c8676
Merge pull request #692 from Carreau/moar-actions-III
...
Moar actions iii
11 years ago
Matthias Bussonnier
f99ee3025c
Fix closing ansi handling.
...
The following was wrong:
IPython.utils.ansispan("\x1b[38;5;28;01mtry\x1b[39;00m")
"<span style="color: rgb(0,102,0);" class="ansibold">try< span>"
11 years ago
Matthias Bussonnier
d81d6a8e39
Work around #699
11 years ago
Matthias Bussonnier
d2c972a45c
Rename action visibility -> collapsed, scrolling->scrolled
11 years ago
Matthias Bussonnier
02102c5297
Merge pull request #696 from jhamrick/throttle
...
Rate limit scrolling callback
11 years ago
Matthias Bussonnier
40daca3eca
Merge pull request #703 from Carreau/ctrl-space
...
Unbind ctrl-space for now
11 years ago
Robin Dunn
783d31a22a
Don't run git unless it looks like we are in a repo.
11 years ago
Matthias Bussonnier
629c92466f
unbind ctrl-space for now
11 years ago
Matthias Bussonnier
74a9789ef9
remove unused variable
11 years ago
Jessica B. Hamrick
059646ce11
Make sure notification is sticky
11 years ago
Jessica B. Hamrick
b2a17eee49
Set a default rate limit
11 years ago
Jessica B. Hamrick
fded61ef63
Remove console.log
11 years ago