Paul Ivanov
641fdc77a7
include the # of active kernels in server info
12 years ago
MinRK
a45e997176
don't warn when open_browser and not file_to_run
12 years ago
MinRK
18022a7db8
don't relay notebook dir to kernel from command-line
12 years ago
MinRK
bf58dddf26
single warning message for bad startup notebook
12 years ago
MinRK
714afa7b0f
fix initial-file opening in the notebook
12 years ago
MinRK
ac5434efba
properly hook up tornado loggers
12 years ago
MinRK
16e8d0ff43
adjust definition of 'path' in notebooks
...
never includes leading or trailing '/'
12 years ago
Zachary Sailer
04c6a3cfac
refactoring of nbmanager and filenbmanager
...
major clean up of the two managers. We make sure to follow
the standard models described in IPEP 16
12 years ago
Paul Ivanov
f517d44d4b
removing contents changes from this PR
12 years ago
Zachary Sailer
2372628552
entry from command line to notebook
12 years ago
Zachary Sailer
91f25dc046
add contents web service api
12 years ago
Zachary Sailer
f998dae05f
manual rebase notebookapp.py
12 years ago
MinRK
4d48a84c8b
catch EACCES when binding notebook app
...
can come up for low ports on *ix, or user access control restrictions on Windows.
closes #4308
12 years ago
MinRK
cb953bfcc7
limit random ports to positive values
12 years ago
MinRK
eae0cc7e77
s/nb_extensions/nbextensions
13 years ago
MinRK
06b2fdc076
serve local mathjax from nb_extensions
13 years ago
MinRK
84e2384acf
s/js_extensions/nb_extensions
13 years ago
MinRK
c85292cf2e
add js_extensions_path
...
serves files in `IPYTHONDIR/js_extensions` at `/js_extensions`.
This is a location for users / devs to drop-in frontend customization as js modules, css, etc.
The model is very much like the extensions dir (hence the name) - it's a location made available, but not loaded by default. You can load things from there with require, etc.
It's a configurable search path, just like static. This way we can define a system-wide location at a later point (/usr/share/ipython/js_extensions?) and still have user installs.
13 years ago
MinRK
c8cea9d807
avoid executing code in utils.localinterfaces at import time
...
moves away from global constants to utility functions.
The code is still only executed once,
but instead of at import time, it is executed at first request.
13 years ago
MinRK
bce60e1be7
pass profile-dir instead of profile to Kernel
...
avoids relative path issues for local profiles
when the notebook server starts in a different directory
from the kernels.
13 years ago
Matt Henderson
b7ed106d11
must...bring...back...comma
13 years ago
Matt Henderson
af03eb6d1b
Modified initial template_path to pickup any overridden value by the user
13 years ago
Matt Henderson
918d872f2c
needed proper dict syntax
13 years ago
Matt Henderson
56b33145e7
Fixed custom jinja2 templates being ignored when setting template_path
13 years ago
MinRK
698953e8b1
don't recommend `ipython notebook --matplotlib`
13 years ago
Matthias BUSSONNIER
8b71a49fc2
remove again a few other occurences
13 years ago
MinRK
f9dd129e1c
remove notebook read-only view
...
it is largely broken, and had problematic security issues.
13 years ago
MinRK
af7564253d
remove a bunch of unused `default_config_file` assignments
...
These are never used, I don't know where they came from
13 years ago
Matthias Bussonnier
9b08a557e5
Merge pull request #3538 from minrk/launch_ip
...
add IPython.start_ipython
A public API for starting a real (non-embedded) IPython instance.
should avoid API breakage in the future due to simple module renames, as has just happened with the removal of frontend.
For implementation purposes, I have added launch_new_instance as a classmethod on Application. I did this, because I wanted to add the ability to pass arguments to the instance, and didn't want to manually update every duplicate launch_new_instance.
closes #1537
13 years ago
Min RK
f0db998d4d
Merge pull request #3560 from minrk/longcell
...
Remove max_msg_size
The max_msg_size safety limit is just removed.
closes #3124
13 years ago
MinRK
39578beabc
remove max_msg_size altogether
...
It was a security feature without an application.
13 years ago
MinRK
7fe1b00cdc
mention double-control-C to stop notebook server
...
in the initial log message.
closes #2971
13 years ago
MinRK
563d9372bf
up default max_msg_size to 1MB
13 years ago
MinRK
3ffc6d0ab5
Application.launch_instance
...
removes `new` from method name, since it isn't accurate.
13 years ago
MinRK
63b65b8c6c
use launch_new_instance classmethod to launch apps
13 years ago
Matthias Bussonnier
9640b57161
Merge pull request #3528 from minrk/staticbase
...
fix local mathjax with custom base_project_url
13 years ago
MinRK
b20845172b
fix local mathjax with custom base_project_url
...
closes #2720
13 years ago
Thomas Kluyver
a2bf752dba
Remove unused imports in IPython.html
13 years ago
MinRK
bd03a99e28
use `parent=self` throughout IPython
...
instead of `config=self.config`
only real effective change: IPythonKernelApp.parent has been renamed to IPKernelApp.parent_handle.
13 years ago
MinRK
a3653e34b1
update references for IPython.html
13 years ago
MinRK
cf726d6a40
mv IPython.html.notebook -> IPython.html
13 years ago