Min RK
97ea238485
Merge pull request #4476 from jdfreder/rm_js_blankspace_onload
...
Fix: Remove space added by display(JavaScript) on page reload
12 years ago
Min RK
a1afcd92b4
Merge pull request #4398 from Carreau/no-tooltip-on-tab
...
[Notebook] Deactivate tooltip on tab by default.
12 years ago
Thomas Kluyver
4de9ef1f8b
Merge pull request #4479 from ivanov/js-timeout
...
yet another JS race condition fix
12 years ago
Paul Ivanov
2ab51dc1a5
yet another JS race condition fix
...
this should greatly reduce the number of timeouts seen in the JS tests
12 years ago
Paul Ivanov
6eb3170963
Merge pull request #4410 from ivanov/close-new-tabs-chrome
...
make close-and-halt work on new tabs in Chrome
12 years ago
Jonathan Frederic
1a5e26dd5a
Removed left over log statements
12 years ago
Jonathan Frederic
96f5cc942b
Fix blank space added by included Javascript on page refresh or notebook load
12 years ago
Thomas Kluyver
557fb3f4ae
Python 3 compatibility for os.getcwdu()
12 years ago
Paul Ivanov
c4b9e69793
Merge pull request #4451 from ivanov/shutdown-js
...
fix: allow JS test to run after shutdown test
12 years ago
Paul Ivanov
4901f5fc16
don't delete casper instance on shutdown test
...
a lunch conversation with @minrk and @takluyver lead me to just make a
popup and have it be closed, instead of having to reorder the test suite
so that this test always runs last. Now it doesn't matter what order the
test suite runs in, and gives us a pattern for testing window closing
behavior should we need it elsewhere.
12 years ago
Thomas Kluyver
93ee2d7173
Make sessions REST API test more robust.
...
Was seeing failures on Windows because it failed to delete the folder.
12 years ago
Thomas Kluyver
0e9a7c0874
Remove unused imports in IPython.html.notebook.handlers
12 years ago
Thomas Kluyver
9fd838d624
Fix imports in IPython.html.utils
12 years ago
Thomas Kluyver
bce32ec03b
Fixes for notebook session manager
12 years ago
Thomas Kluyver
51040fb768
Update imports for Python 3
...
2to3 fixer imports (+ manual changes)
12 years ago
Thomas Kluyver
4a14ed7e22
Replace references to unicode and basestring
12 years ago
Thomas Kluyver
d4532983f4
Convert print statements to print function calls
...
libmodernize.fixes.fix_print
12 years ago
Paul Ivanov
4ffe489e72
Merge pull request #4415 from ivanov/more-tooltips
...
More tooltips in the Notebook menu
12 years ago
Paul Ivanov
e608c6d07a
fix: allow JS test to run after shutdown test
...
shutdown notebook test closes casper browser, here we re-instatiate it
after the test
12 years ago
Min RK
d797f8950f
Merge pull request #4450 from ivanov/remove-old-tornado-monkeypatch
...
remove monkey patch for older versions of tornado
12 years ago
Paul Ivanov
f04eca3ddd
remove monkey patch for older versions of tornado
...
Since we now depend on Tornado >= 3.1, this code path is no longer
necessary
12 years ago
Paul Ivanov
1123af8528
make close-and-halt work on new tabs in Chrome
...
this is not possible in Firefox, as new tabs/windows which were *not*
opened via a script ( window.open call ) are not allowed to be closed
via window.close and will yield a message like
--
[11:50:59.691] Scripts may not close windows that were not opened by script. @ http://localhost:8888/static/notebook/js/menubar.js:105
12 years ago
Min RK
4e8bc066e9
Merge pull request #4435 from minrk/tornado-tweaks
...
raise 404 on not found static file
12 years ago
Min RK
57fa14a2fa
Merge pull request #4442 from Carreau/fix-oir
...
finish object_info_request/object_info rename in tooltip
12 years ago
Matthias BUSSONNIER
a74c36b62a
remove compatibility layer
12 years ago
Min RK
8b58e38990
Merge pull request #4436 from minrk/require-ext
...
allow `require("nbextensions/extname")` to load from IPYTHONDIR/nbextensions
12 years ago
Matthias BUSSONNIER
bdb1c94137
fix and add shim for change introduce by #4195
...
comm merging renamed object_info_request to object_info
12 years ago
Min RK
4f3f1f1ebb
Merge pull request #4437 from minrk/etag
...
don't compute etags in static file handlers
12 years ago
Min RK
c3e6e625a7
Merge pull request #4427 from minrk/checkpoint-on-first-save
...
notebooks should always have one checkpoint
closes #4396
12 years ago
Matthias Bussonnier
5bd89b7376
Merge pull request #4425 from Carreau/fix-js-python
...
Fix impossibility to upload notebooks.
12 years ago
Matthias BUSSONNIER
79f1edc5e9
fix notebook upload
...
pythonnism + PUT instead of POST
12 years ago
MinRK
f8ddcffacb
allow `require("nbextensions/extname")` to load from IPYTHONDIR/nbextensions
12 years ago
MinRK
7ea4db6c48
don't compute etags in static file handlers
...
etags skip cache timing, which we probably don't want. If-Modified-Since is good enough for us.
12 years ago
Min RK
0aaafce4af
Merge pull request #4195 from minrk/widget-msg
...
IPEP 21: widget messages
12 years ago
MinRK
ff744e25cd
raise 404 on not found static file
...
master gives 403 due to empty string being outside of root
12 years ago
Thomas Kluyver
daf15735bd
Merge pull request #4428 from minrk/tornado-3.1
...
bump minimum tornado version to 3.1.0
12 years ago
MinRK
6fa13ebb98
bump minimum tornado version to 3.1.0
...
The no-hidden behavior of the files handler
already requires this, but instead of raising, it just doesn't hide hidden files.
Bumping the minimum version also allows much cleaner static file handler subclasses.
12 years ago
Paul Ivanov
80ac24683f
give travis 10 seconds to start server
12 years ago
Paul Ivanov
357b78171a
fix: JS kernel state should reflect killed state
12 years ago
MinRK
79a7b1e421
fix tornado log propagation
...
in the notebook
12 years ago
Paul Ivanov
26b5a76841
don't use test.begin
...
the PPA we use on Travis CI doesn't have CasperJS 1.1.0-DEV yet, so
we're better off not using it for now.
12 years ago
Paul Ivanov
217b43cf87
use test.begin to give test group a name
12 years ago
Paul Ivanov
641f157fd9
add test for shutdown notebook
12 years ago
Paul Ivanov
e971d051ed
created a kernel_running method
12 years ago
Paul Ivanov
755565019d
adds test of clicking the play button
12 years ago
Paul Ivanov
baf90fd755
add checks for new cell added using shift-enter
12 years ago
Paul Ivanov
89f2ed95f9
refactor of get_output_cell
12 years ago
Paul Ivanov
047f3d76cc
minor shortening
12 years ago
Paul Ivanov
1703b289c9
test keyboard interrupt shortcuts
12 years ago
Paul Ivanov
19a20a3c70
add Ctrl-M keyboard shortcut
12 years ago