Brian Granger
49c970cddf
Different clients now share a single zmq session.
...
Previously, each client (browser window) would open its own set
of ZMQ sockets to a kernel. Now one master set of connections
to the kernel is created and all clients share those connections.
In some ways, this simplifies the URL design.
I have also made kernel_ids server-side created.
15 years ago
Brian Granger
00b857165e
Fixing main toolbar area and cleaning up jquery themes.
15 years ago
Brian Granger
f45f35ec2e
Added message to help users open notebook.
15 years ago
Brian Granger
d0f883af9d
Initial template for notebook browser.
15 years ago
Brian Granger
910d129f14
Server side of file based notebook store implemented.
15 years ago
Brian Granger
3ed9c3371c
Make the main notebook div auto scroll.
15 years ago
Brian Granger
96cb3a8982
Initial reply handling implemented along with css fixes.
15 years ago
Brian Granger
17d899d38f
Basic server for htmlnotebook working.
15 years ago
Brian Granger
a2aef63d09
Work on the server side of the html notebook.
15 years ago
Brian Granger
f44f537ee4
Adding preventDefault to shift-up/down events.
15 years ago
Brian Granger
276e5db516
Added placeholder text for TextCell.
15 years ago
Brian Granger
6729e2f4f4
Fixing selection and focus logic.
15 years ago
Brian Granger
94647cfbb1
Adding shift-enter support.
15 years ago
Brian Granger
360b6bf6ab
Initial draft of HTML5/JS/CSS3 notebook.
15 years ago
MinRK
a79bd91af7
cleanup removed ipythonx,ipython-wx from setup.py
15 years ago
MinRK
b26c59e66f
don't install deathrow
15 years ago
Min RK
393557bb3d
Merge pull request #574 from jstenar/getcwdu
...
always use getcwdu instead of getcwd
15 years ago
Jörgen Stenarson
eea358698b
15 years ago
MinRK
5fcef9cac3
update gitignore to exclude dist and zipped man pages
...
These are files generated when building releases, that should not be tracked.
15 years ago
Christoph Gohlke
ec560ae17b
Windows install fixes
...
* Make Start menu item include Python version and bit-ness (prevents clobbering)
* don't ask setuptools to install pyreadline on 64b Windows, due to pyreadline bug #787574
15 years ago
Thomas Kluyver
821c9609c0
Remove unused configobj and validate libraries from externals.
15 years ago
MinRK
4166074803
Merge branch 'winsetup' (PR #536 )
...
introduces install dependency of setuptools on Windows
This is a temporary fix, and the setuptools dependency should
be removed in 0.12.
closes gh-536
closes gh-351
closes gh-369
15 years ago
MinRK
0332489792
'install' depends on setuptools on Windows
15 years ago
MinRK
76a5fa2456
Merge branch 'newapp'
...
closes gh-503
closes gh-454
closes gh-79
closes gh-456
closes gh-451
15 years ago
MinRK
34b5f30a9a
update zmq dependency to 2.1.4
15 years ago
Thomas Kluyver
8a91843dd3
Don't try to install IPython.config.default (no longer there).
15 years ago
MinRK
713a71343e
rename ipythonqt to qtconsoleapp
...
the ipython-qtconsole script has been removed in favor of 'ipython qtconsole', but the ipython-qtconsole *GUI* script remains, when installed with setuptools.
15 years ago
MinRK
77cc373d3d
reorganize default config files to match profiles as directories
...
Old files are left in place, until applications make the transition to newapp.
15 years ago
Thomas Kluyver
9dd9ddc0e7
Replace links to launchpad bugs in comments/docstrings with equivalent github links.
15 years ago
Thomas
d1ab1fc203
Merge pull request #469 from takluyver/exit-code
...
Add exit code when running all tests with iptest.
15 years ago
Thomas Kluyver
e77036cc30
Call sys.exit() at correct point in iptest.
15 years ago
Thomas Kluyver
a15c6996b1
Add exit code when running all tests with iptest.
15 years ago
MinRK
6ec9bca005
Merge PR #413
...
Adds retries and resubmit logic to IPython.parallel.
closes gh-413
15 years ago
MinRK
daa9df5b63
various db backend fixes
...
* use index on msg_id in mongodb backend (_table prevented some methods from working outside the session)
* purge_request improved to use fewer db calls
* mongodb testcase split into its own file
* Fix equality testing, NULL handling, in SQLiteDB backend
15 years ago
MinRK
59f06d7d7b
update zmq dependency on Windows to 2.1.7
15 years ago
Evan Patterson
130f56cf50
Merge pull request #422 from epatters/gui-scripts
...
Make ipython-qtconsole a GUI script
15 years ago
epatters
8bd4f9272c
Clean up entry point definition is setup.py.
15 years ago
Evan Patterson
3ba4061e0e
Make ipython-qtconsole a GUI script in setuptools.
15 years ago
Evan Patterson
82f5eb7122
Merge pull request #406 from jenshnielsen/zmqgui.
...
install IPython.zmq.gui
15 years ago
Jens Hedegaard Nielsen
c316414295
install zmq.qui fixes problems with using ipython --pylab gtk
15 years ago
MinRK
deef821be9
Merge branch 'master' of github.com:ipython/ipython
15 years ago
Brian E. Granger
011d42c9e1
Merged pull request #397 from minrk/ioterm.
...
utils.io.Term.cin/out/err -> utils.io.stdin/out/err
15 years ago
MinRK
0de0a0d4ab
io.Term.cin/out/err replaced by io.stdin/out/err
...
Behavior is now the same as sys.stdin/out/err, and
defaults to those streams.
15 years ago
MinRK
f32e2bb944
depend on pyzmq-2.1dev on Windows
...
This is a temporary dependency, and should be changed to the next release of pyzmq when it arrives.
15 years ago
MinRK
7eefed1d6b
fix 'test_pylabtools' exclusion in iptest
15 years ago
MinRK
a6aaa64016
update test exclusions
...
exclude test_irunner w/o pexpect
exclude frontend/qt w/o pyzmq or qt
closes gh-375
15 years ago
MinRK
af196e3446
make display_status optional at runtime in setupext
...
This allow the check_for_readline to *not* print its indented status line
closes gh-361
closes gh-20
15 years ago
MinRK
67c6025d9e
don't rely on setuptools for readline dependency check
15 years ago
Fernando Perez
a6ebd33613
Do not generate output for empty figures in Qt console.
...
Before, calling figure() would produce a big blank area. This ensures
output is only returned if the figure has content.
Also added basic testing for pylabtools, for which we had none.
15 years ago
MinRK
131086119a
make readline a dependency on OSX and pyreadline on Windows
...
closes gh-343
15 years ago