notebook/IPython/html
2014-01-08 13:37:35 -08:00
..
auth
base whitelist alphanumeric characters for cookie_name 2014-01-06 14:57:34 -08:00
nbconvert skip nbconvert html tests without pandoc 2013-12-23 12:41:59 -08:00
notebook Move notebook URL fragment regexen into IPython.html.base.handlers 2013-12-19 13:01:00 -08:00
services Move notebook URL fragment regexen into IPython.html.base.handlers 2013-12-19 13:01:00 -08:00
static Adding back doc in Keyboard Shortcut. 2014-01-08 13:37:35 -08:00
templates Adding keyboard manager logic. 2014-01-07 14:42:35 -08:00
tests Merge pull request #4656 from takluyver/nbconvert-service 2013-12-20 14:22:29 -08:00
tree Move notebook URL fragment regexen into IPython.html.base.handlers 2013-12-19 13:01:00 -08:00
__init__.py
fabfile.py
notebookapp.py Separate listing nbconvert exporters to /api/nbconvert 2013-12-13 14:46:51 -08:00
README.md
utils.py Fix imports in IPython.html.utils 2013-10-29 09:15:56 -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 commited into our git repo. Our dependencies are described in the file static/bower.json. To update our bower packages, run fab components in this directory.

Because CodeMirror does not use proper semantic versioning for its GitHub tags, we maintain our own fork of CodeMirror that is used with bower. This fork should track the upstream CodeMirror exactly; the only difference is that we are adding semantic versioned tags to our repo.

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.

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.