notebook/IPython/html
Bussonnier Matthias 0118cfbd48 re-hook notification area for editor.
- re-order element to be the same as in notebook,
 - rename events correctly.
 - Add event on savign to show that save is in progress, that get
   dismissed on file save

Closes #7569
2015-01-25 19:59:16 +01:00
..
auth
base use single WebSocket connection for all channels 2015-01-06 11:15:15 -08:00
edit
files
kernelspecs Fix HEAD requests for kernelspec resources 2014-12-17 10:40:55 -08:00
nbconvert removing spurious import 2015-01-13 22:45:38 -05:00
notebook make FilesRedirectHandler redirect logic accessible 2014-12-27 15:11:42 -08:00
services allow requesting contents without body 2015-01-24 12:46:15 -08:00
static re-hook notification area for editor. 2015-01-25 19:59:16 +01:00
templates re-hook notification area for editor. 2015-01-25 19:59:16 +01:00
terminal require terminado >= 0.3.3 for terminal handlers 2015-01-16 19:06:45 -08:00
tests wait for new-notebook button to arrive 2015-01-23 15:07:25 -08:00
tree
widgets Merge pull request #7523 from jdfreder/outputwidgetfix 2015-01-22 17:02:59 -08:00
__init__.py
__main__.py
allow76.py
log.py
nbextensions.py path.sep 2015-01-09 14:18:31 -08:00
notebookapp.py promote "no terminals" message to warn 2015-01-16 19:08:22 -08:00
README.md
tasks.py friendlier error messages when invoke/lessc are missing 2014-12-27 00:16:28 -08:00
utils.py escaped URLs are always utf-8 2015-01-14 12:06:12 -08:00

IPython Notebook development

Development dependencies

Developers of the IPython Notebook will need to install the following tools:

  • invoke
  • node.js
  • less (npm install -g less)

Components

We are moving to a model where our JavaScript dependencies are managed using bower. These packages are installed in static/components and committed into a separate git repo ipython/ipython-components. Our dependencies are described in the file static/components/bower.json. To update our bower packages, run bower install in this directory.

less

If you edit our .less files you will need to run the less compiler to build our minified css files. This can be done by running python setup.py css from the root of the repository. If you are working frequently with .less files please consider installing git hooks that rebuild the css files and corresponding maps in ${RepoRoot}/git-hooks/install-hooks.sh.

JavaScript Documentation

How to Build/ view the doc for JavaScript. JavaScript documentation should follow a style close to JSDoc one, so you should be able to build them with your favorite documentation builder. Still the documentation comment are mainly written to be read with YUI doc. You can either build a static version, or start a YUIdoc server that will live update the doc at every page request.

To do so, you will need to install YUIdoc.

Install NodeJS

Node is a browser less javascript interpreter. To install it please refer to the documentation for your platform. Install also NPM (node package manager) if it does not come bundled with it.

Get YUIdoc

npm does by default install package in ./node_modules instead of doing a system wide install. I'll leave you to yuidoc docs if you want to make a system wide install.

First, cd into js directory :

cd IPython/html/static/js/
# install yuidoc
npm install yuidocjs

Run YUIdoc server

From IPython/html/static/js/

# run yuidoc for install dir 
./node_modules/yuidocjs/lib/cli.js --server .

Follow the instruction and the documentation should be available on localhost:3000

Omitting --server will build a static version in the out folder by default.