notebook/IPython/html
Min RK a712e079b4 Merge pull request #6483 from jhamrick/fix-heading-anchors
Trim anchor link in heading cells, fixes #6324
2014-09-16 10:57:40 -07:00
..
auth s/base_project_url/base_url/ 2014-02-08 23:09:24 -08:00
base Check time of last ping before timing out a missing pong. 2014-09-14 23:22:05 +01:00
kernelspecs Kernel resource handlers now require authenticated user 2014-06-16 15:24:30 -07:00
nbconvert move /files/ redirect to base handlers 2014-07-31 11:57:37 -07:00
notebook remove unused project_dir 2014-07-31 11:57:38 -07:00
services handle system-wide kernelspecs 2014-09-10 14:30:44 -07:00
static Merge pull request #6483 from jhamrick/fix-heading-anchors 2014-09-16 10:57:40 -07:00
templates Merge pull request #6205 from Carreau/momentjs 2014-08-23 22:19:08 +02:00
tests Merge pull request #6412 from takluyver/sessions-rest-api-fix 2014-09-06 15:04:13 -07:00
tree remove unused TreeRedirectHandler 2014-09-04 17:40:48 -07:00
widgets Merge pull request #6377 from jasongrout/fix-widget-prefix 2014-09-15 13:40:09 -07:00
__init__.py add install_nbextension at top-level IPython.html 2014-02-08 20:03:36 -08:00
__main__.py
fabfile.py fab css checks whether it needs to do anything 2014-07-23 16:59:44 -07:00
log.py minor notebook logging changes 2014-02-11 15:33:07 -08:00
nbextensions.py add utils.path.ensure_dir_exists 2014-04-29 10:18:36 -07:00
notebookapp.py make the default url customizable 2014-09-04 17:40:48 -07:00
README.md Fix doc, CodeMirror is installed via bower 2014-07-29 15:41:20 +02:00
utils.py update contents per further review 2014-07-31 11:57:38 -07:00

IPython Notebook development

Development dependencies

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

  • fabric
  • node.js
  • less (npm install -g less)
  • bower (npm install -g bower)

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 fab update 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 fab css from this directory, or 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.