notebook/jupyter_notebook
Ian Barfield e27e58bcc4 fix bug in stale profile clean up for clusters
"clusters" tab of my notebook wasn't rendering, so checked the log, found the stack trace:

```
[...]
      File "/usr/local/lib/python3.4/site-packages/ipython-3.0.0-py3.4.egg/IPython/html/services/clusters/handlers.py", line 21, in get
        self.finish(json.dumps(self.cluster_manager.list_profiles()))
      File "/usr/local/lib/python3.4/site-packages/ipython-3.0.0-py3.4.egg/IPython/html/services/clusters/clustermanager.py", line 77, in list_profiles
        self.update_profiles()
      File "/usr/local/lib/python3.4/site-packages/ipython-3.0.0-py3.4.egg/IPython/html/services/clusters/clustermanager.py", line 74, in update_profiles
        self.profiles.pop(stale)
    TypeError: unhashable type: 'set'
```

looks like a pretty straightforward mistake
2015-04-10 13:37:04 -04:00
..
auth
base jupyter_notebook imports 2015-04-08 23:04:21 -07:00
edit
files jupyter_notebook imports 2015-04-08 23:04:21 -07:00
kernelspecs
nbconvert jupyter_notebook imports 2015-04-08 23:04:21 -07:00
notebook
services fix bug in stale profile clean up for clusters 2015-04-10 13:37:04 -04:00
static jupyter_notebook imports 2015-04-08 23:04:21 -07:00
templates
terminal jupyter_notebook imports 2015-04-08 23:04:21 -07:00
tests jupyter_notebook imports 2015-04-08 23:04:21 -07:00
tree jupyter_notebook imports 2015-04-08 23:04:21 -07:00
widgets jupyter_notebook imports 2015-04-08 23:04:21 -07:00
__init__.py
__main__.py jupyter_notebook imports 2015-04-08 23:04:21 -07:00
allow76.py
log.py
nbextensions.py
notebookapp.py temporarily look in .ipython/kernels for the notebook 2015-04-09 10:44:36 -07:00
README.md
tasks.py
utils.py

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.