Bussonnier Matthias
b8fe73ba3c
Merge pull request #2932 from takluyver/get-static-files
...
Simplify using notebook static files from external code
13 years ago
Thomas Kluyver
9e2894caa2
Simplify using notebook static files from external code.
13 years ago
MinRK
e1748fe10a
fix last remaining KernelApp reference
13 years ago
Brian E. Granger
25fb761da3
Merge pull request #2708 from Carreau/less-css
...
Less css
13 years ago
MinRK
c4c8d970aa
define and test IPython.kernel public API
13 years ago
MinRK
1d0cae7b2e
mv IPython.zmq to IPython.kernel.zmq
13 years ago
MinRK
1f35decb54
move IPKernelApp from zmq.ipkernel to zmq.kernelapp
...
- merged IPKernelApp into KernelApp, they are no longer separate classes
- embed_kernel moved to its own file
- ipkernel now only contains the Kernel class
- associated imports updated
13 years ago
MinRK
8338b936db
move utils.kernel (formerly entry_point and lib.kernel) to kernel.util
13 years ago
MinRK
b24d16b532
move IPython.lib.kernel to IPython.utils.kernel
...
where it always should have been.
13 years ago
Matthias BUSSONNIER
d078afb51a
use less as a component
13 years ago
Matthias BUSSONNIER
1991cc187e
remove trailing whitespace
13 years ago
Bussonnier Matthias
412b54b21f
fix print css less
13 years ago
Bussonnier Matthias
d46b6ad3b9
add less flag
13 years ago
W. Trevor King
d1506a5a02
frontend.html.notebook: Use utils.localinterfaces.LOCALHOST
13 years ago
MinRK
fa989a99a1
ip/transport live in KernelManager now
...
remove them as configurables in the Application objects
13 years ago
Brian E. Granger
f37d707c08
Creating application.config attribute.
...
This creates less coupling between the handlers and the outer
IPython application.
13 years ago
Brian E. Granger
82f4cf5574
General cleanup of kernelmanger.MultiKernelManager.
13 years ago
Bussonnier Matthias
4e5b1eb41a
diverse fixes for project url
...
* Force leading and trailing slashes in base_project/kernel_url
* Add support for the prefix in template for static files
* Fix some forgotten quotes
* remove old make_static_url which is now a jinja2 macro
fixes-2720
13 years ago
Cameron Bates
7493794594
Move environment setting from handler to the notebook application
13 years ago
dkua
5993c3bf9f
Made changes as per discussion in PR thread.
13 years ago
dkua
da8c05414e
Made some changes to message and logic as advised by Fernando.
13 years ago
dkua
c8d3dbcc98
Refactored warning printout as per Issue #2244
13 years ago
Bradley M. Froehle
727379ec4f
Notebook: Store the username in a cookie whose name is unique.
...
Cookies cannot be saved on a per-port basis, so a cookie "username" is
shared across all running IPython notebooks with the same hostname.
Using a unique cookie name prevents this collision.
This allows a user to start multiple IPython notebooks and be logged into
each.
14 years ago
Brian Granger
d95f4bc810
Renaming BaseNotebookManager->NotebookManager to preserve config.
14 years ago
Brian Granger
f819997f6e
Fixing minor bugs in notebookapp related to base class name.
14 years ago
Brian Granger
8df2d331a7
Fixing minor things for the Azure backed nb storage.
14 years ago
Brian Granger
9784a2ac52
Refactoring notebook managers and adding Azure backed storage.
...
I have created a base class for all notebook managers. Our
existing, file-based store, is now in filenbmanager.py. I have
also created a new Azure Blob based backed notebook manager.
14 years ago
Puneeth Chaganti
a8556b5d9e
CLN: Use name to id mapping of notebooks instead of searching.
...
Minor clean-up.
14 years ago
MinRK
4ee5129dad
log local mathjax path
14 years ago
MinRK
3c6c38289a
handle single static path in FileFindHandler
14 years ago
MinRK
96158cff3f
use FileFindHandler in NotebookApp
...
adds NotebookApp.extra_static_paths configurable for extending the search path.
The default is to include profile/static.
14 years ago
Bussonnier Matthias
22e757f91d
Merge pull request #2073 from Carreau/fixes-1997
...
Allows both password and prefix for notebook at the same time.
14 years ago
Matthias BUSSONNIER
51d715d00a
allows password and prefix for notebook
...
fixes #1997
14 years ago
Matthias BUSSONNIER
d85f075ad7
conform to pep 3110
...
brutally replace all `exeption <type>, <name>:` by
`exception <type> as <name> :`
`exception <type>, <type> :` should not be present anywhere in the code
anymore, or should be present with explicit tuple as
`exception (<type>, <type>)`
14 years ago
MinRK
ab2de249ed
disable ^C^C confirmation on Windows
14 years ago
MinRK
603b7d9598
relax profile regex in notebook
...
Almost any text is a valid profile name, and the previous code
only included ascii alphanumeric strings.
closes #2011
14 years ago
Bradley M. Froehle
7ae0c9482f
notebook: Print a warning (but do not abort) if no webbrowser can be found.
...
Closes gh-2006.
14 years ago
Min RK
e306daad47
Merge pull request #1981 from tkf/kill-bg-processes
...
Clean BG processes created by %%script on kernel exit
* uses less forceful shutdown of kernels in the notebook, allowing atexit machinery to fire
* enables daemon BackgroundJobs
* cleanup %%script --bg subprocesses at shutdown
14 years ago
MinRK
61bbd632ef
use shutdown_kernel instead of hard kill in notebook
14 years ago
MinRK
272b954d7b
use notebook-dir as cwd for kernels
14 years ago
MinRK
26a1cc7ee2
minor notebook-dir config adjustments
...
* `ipython Notebook /path/to/dir` sets notebook-dir to dir, not parent.
* add info message reporting notebook-dir
* file-to-run overrides no-browser
14 years ago
MinRK
91180c0511
add InlineBackend to ConsoleApp class list
...
so it will be included in generated config files / help-all output
14 years ago
Bradley M. Froehle
7c1091c299
exit if server cannot start (instead of ugly traceback)
14 years ago
Bradley M. Froehle
6faad7f38f
NotebookApp: Make the number of ports to retry user configurable.
...
Closes gh-1750.
14 years ago
Brian E. Granger
13cc762f4c
Merge pull request #1630 from minrk/mergekernel
...
Merge divergent Kernel implementations
14 years ago
MinRK
b037cf18a4
move default log setup to _log_default from init_logging
...
allows classes to be passed log attribute, avoiding duplicate setup and occasional errors if things are done in the wrong order.
14 years ago
Min RK
c6fedc3456
Merge pull request #1686 from punchagan/notebook-cmd-line
...
ENH: Open a notebook from the command line
open notebook files from the command line, just
like ipython can open (run) python files. For example:
ipython notebook foo.ipynb
closes #945
14 years ago
MinRK
f72eebe15f
update with forthcoming MathJax CDN move
14 years ago
Puneeth Chaganti
1e9d2f4a1c
ENH: Open a notebook from the command line
...
This commit lets you open notebook files from the command line, just
like ipython can open (run) python files. For example:
ipython notebook foo.ipynb
Fixes #945 .
14 years ago
MinRK
86e3e953da
add ioloop.install to backported patches
14 years ago