Fernando Perez
14d29450a3
Merge pull request #1560 from minrk/testdocs
...
remove obsolete discussion of Twisted/trial from testing docs
We don't use trial anymore, so these docs were no longer accurate.
closes #1558
2012-04-13 20:31:32 -07:00
Min RK
c543852c33
Merge pull request #1552 from minrk/fix1550
...
use os.getcwdu in NotebookManager
prevents unicode error when starting in non-unicode path.
closes #1550
2012-04-09 17:37:08 -07:00
MinRK
9cb1559d5e
document initially hidden javascript container
2012-04-09 15:35:29 -07:00
MinRK
c21be2f386
hide output_area for js
...
prevents growing vertical space from adding empty output_areas.
2012-04-09 15:35:29 -07:00
MinRK
5c6c247b65
[notebook] clear_output is handled after a delay
...
This reduces flicker during common loops like:
for step in stuff:
clear_output()
print something
the timeout is flushed *immediately* on any subsequent output.
2012-04-09 15:35:28 -07:00
MinRK
fe92e50471
remove a few more obsolete twisted notes
2012-04-09 11:01:21 -07:00
MinRK
124037690e
use os.getcwdu in NotebookManager
...
prevents unicode error when starting in non-unicode path.
2012-04-04 09:48:29 -06:00
Min RK
a9e226f943
Merge pull request #1544 from minrk/multilingual
...
make MultiKernelManager.kernel_manager_class configurable
2012-04-02 19:15:15 -07:00
MinRK
fd2cc9d19e
make MultiKernelManager.kernel_manager_class configurable
...
This allows deployments to use customized KernelManager subclasses via config.
2012-03-31 19:24:38 -07:00
MinRK
0495291a83
store git commit hash in utils._sysinfo instead of hidden git_commit_info.ini data file.
2012-03-30 14:17:16 -07:00
Min RK
c7de46e6cc
Merge pull request #1508 from minrk/i1507
...
fix sorting profiles in clustermanager
dicts aren't orderable on Python3. In any case, these should be sorted by name, not by the ordering of the dicts themselves.
closes #1507
2012-03-16 16:30:00 -07:00
MinRK
600acfb694
fix sorting profiles in clustermanager
2012-03-16 14:52:06 -07:00
MinRK
f9438de710
small changes in response to pyflakes pass
...
removes incomplete kernelstarter file, which shouldn't be in the repo at all yet.
2012-03-15 15:54:20 -07:00
MinRK
9927cec392
denote raw cell with 'Raw Text' in UI
2012-03-14 15:07:55 -07:00
MinRK
f036c032c7
interpret 'plaintext' cells with their new name 'raw'
2012-03-14 12:45:28 -07:00
MinRK
9ffc7829da
rename plaintext cell -> raw cell
2012-03-13 17:31:39 -07:00
Brian E. Granger
5a444db9f7
Merge pull request #1383 from ellisonbg/nbparallel
...
IPython clusters can now be managed using the Notebook.
2012-03-08 22:19:12 -08:00
MinRK
9d80f8522c
use DummyIPClusterStart to load config in notebook ClusterManager
...
ensures that config loading matches what would happen in ipcluster.
The only change needed in IPClusterStart itself was moving the on_stop registration from init_launchers to start_controller, where it should have been anyway.
2012-03-08 12:21:51 -08:00
Brian Granger
19322be14d
Chaging # of engines format in cluster list.
2012-03-08 11:37:28 -08:00
Brian Granger
24510c6e00
Sort profiles in cluster tab.
2012-03-08 11:31:04 -08:00
Brian Granger
c0a87aa940
Notebook cluster manager now uses proper launchers.
2012-03-08 11:27:31 -08:00
Brian Granger
dbefa745fd
On tab select, the URL is updated.
2012-03-08 11:27:31 -08:00
Brian Granger
35ffb5500a
Cluster management is now working.
...
You can start/stop clusters in the notebook with a very simple UI. More to do,
but this is a start.
2012-03-08 11:27:30 -08:00
Brian Granger
5df969af5c
Fixing tab design.
2012-03-08 11:27:30 -08:00
Brian Granger
34d784a5ab
Draft of the cluster list UI.
...
Not functional yet, but the idea is there.
2012-03-08 11:27:30 -08:00
Brian Granger
b819fbfe8f
Initial try at adding tabs to project dashboard.
2012-03-08 11:27:30 -08:00
Brian Granger
3631fae153
Major refactoring of notebook.
...
* Created new base page html/css/js.
* Everything inherits from the page template.
* Universal header border.
* Notebook list borders are set to 1px all around.
* No border around notebook area.
* Border cleanup of toolbar/menubar.
* Lots of code reorg to get ready for further refactoring.
2012-03-08 11:27:29 -08:00
Brian Granger
6dc7b078b9
Refactoring templates and top level js/css organization.
2012-03-08 11:27:29 -08:00
Brian Granger
f19a63759b
First version of cluster web service.
...
This exposes ipcluster's over the web. The current implementation
uses IPClusterLauncher to run ipcluster in a separate process.
Here is the URL scheme we are using:
GET /clusters => list available clusters
GET /cluster/profile => list info for cluster with profile
POST /cluster/profile/start => start a cluster
POST /cluster/profile/stop => stop a cluster
2012-03-08 11:27:29 -08:00
Brian E. Granger
6b5a5f0b36
Merge pull request #1450 from minrk/httpsmathjax
...
load mathjax from CDN via https.
2012-02-29 15:27:45 -08:00
Fernando Perez
d3296558ff
Merge pull request #1451 from minrk/headlevel
...
Include heading level in JSON. Closes #1439 .
2012-02-28 15:14:48 -08:00
MinRK
8de583a6cd
include heading level in JSON
...
adds level-including to/fromJSON methods to HeadingCell
2012-02-28 14:21:05 -08:00
MinRK
83c5470bf7
load mathjax from CDN via https
...
Amazon CloudFront (MathJax's CDN) supports HTTPS, but their SSL certificate only applies to *.cloudfront.net urls. This retrieves the cloudfront host at runtime, and loads MathJax from there via HTTPS.
2012-02-28 13:53:48 -08:00
MinRK
3e3137bd00
don't build sphinx docs for sdist
2012-02-28 10:27:42 -08:00
MinRK
212ec345e6
fix system->os.system typo
...
in setupbase.py
2012-02-28 10:26:03 -08:00
MinRK
7ad2568d53
fix inverted self.browser logic
2012-02-20 10:00:50 -05:00
Min RK
ea945fa31c
Merge pull request #1406 from ivanov/browser-selection
...
adds new `NotebookApp.browser` configurable and corresponding `--browser` alias for specifying which browser should be launched with the notebook landing page.
2012-02-18 18:39:31 -08:00
Paul Ivanov
6ee29b4c72
be more explicit about how --browser value is used
2012-02-14 14:26:31 -08:00
Paul Ivanov
407c8ee6d7
added --browser option to notebook
...
now you can specify --browser=firefox when starting ipython notebook
2012-02-13 19:15:32 -08:00
Paul Ivanov
7b9099041d
document how to select browser for notebook
2012-02-13 18:11:54 -08:00
Min RK
7e4a76fb96
Merge pull request #1405 from takluyver/xunit-monkeypatch-on-request
...
Only monkeypatch xunit when the tests are run using it.
Sidesteps weird issues seen on Ubuntu buildbots.
2012-02-13 15:33:09 -08:00
Thomas Kluyver
7d849a2f70
Only monkeypatch xunit when the tests are run using it.
2012-02-13 23:17:05 +00:00
Thomas
c926a2872c
Merge pull request #1395 from takluyver/xunit-kf
...
Make Xunit count KnownFailure tests as skipped, not failures.
2012-02-12 03:49:28 -08:00
Brian E. Granger
d0c445a63c
Merge pull request #1386 from ellisonbg/jsd3
...
Adding Javascript output handling to the notebook.
2012-02-09 17:47:36 -08:00
Thomas Kluyver
4f947c2877
Make separate function to monkeypatch Xunit.
2012-02-09 20:20:19 +00:00
Thomas Kluyver
5773f8cd1d
Monkeypatch Xunit to count known failures as skips, not errors.
2012-02-09 19:52:20 +00:00
Min RK
6b2cb224cd
Merge pull request #1353 from takluyver/i1345
...
Save notebook as script using unicode file handle.
Using io.open(), which is the Python 3 open() in 2.6 and above.
Closes #1345
2012-02-08 15:14:47 -08:00
Fernando Perez
1964ac4570
Merge pull request #1387 from ellisonbg/celltype-update
...
Fix issue where toolbar cell type drop list would not correctly update with cell types.
2012-02-07 21:31:32 -08:00
Brian Granger
6c9a7d0d41
Fixing Cell menu to update cell type select box.
2012-02-07 12:02:54 -08:00
Brian Granger
5ef2e06a42
Javascript output is not run on notebook loading and paste's.
2012-02-07 09:18:23 -08:00