Skip to content

IPEP 16: Notebook multi directory dashboard and URL mapping

Zachary Sailer edited this page May 1, 2013 · 31 revisions

A Multi-directory IPython notebook dashboard

Author Zach Sailer <zachsailer@gmail.com>
Status Active
Created April 4, 2013
Updated May 1, 2013
Discussion #3166

Abstract

The current notebook dashboard only allows the user to open notebooks in their current directory location. It does not allow you to navigate through or open notebooks in subdirectories. This proposal describes a new URL mapping scheme to adjust for a multi-directory dashboard system and explores the possibility of implementing such a system.

Motivation

If you have notebooks saved or would like to start new notebooks in subdirectories, you have to either restart the current IPython notebook server in that subdirectory, or start a new notebook server ther. It would be convenient if you could click a button on your current dashboard and have it do the work for you. Then, you could pass back and forth through directories without starting up a new servers everytime. This would help with organizing a project and relieve frustration.

Proposed URL Mapping

Before this new dashboard can be implemented, the URL mapping of IPython notebook would need to be adjusted to allow for the proper storing of notebooks and path changing. One can see the current IPython notebook URL mapping here.

This proposal outlines the URL mapping scheme for this new multi-directory dashboard. It follows a RESTful design and offers an easy, practical URL path navigation. This does not propose anything drastically different than the current IPython web-service design; it simply takes it a step further to provide access to subdirectories in the dashboard. Therefore, you will see similar design in the IPython Development wiki pages.

Foreshadowing the future implementation of a projects page (see "Things to Consider"), this proposes to restructure the web-services side of the notebook to be contained in an API. The new URL scheme will reflect this by including /api as the top-level URL.

The chart below shows the new proposed URL scheme for web-services in the notebook, where "foo/bar" is a path to a subdirectory:

HTTP verb New URL Action
GET /api/notebooks/foo/bar returns a dict with the "foo/bar" dashboard's sub-directories, files, notebooks and path **
POST /api/notebooks/foo/bar if sending a body, saving that body as a new notebook in "foo/bar"; if no body, create a new notebook in "foo/bar"
GET /api/notebooks/foo/bar/<notebook_id> returns the json data for the notebook with the given ID in "foo/bar"
PUT /api/notebooks/foo/bar/<notebook_id> saves an existing notebook with body data in "foo/bar"
DELETE /api/notebooks/foo/bar/<notebook_id> deletes the notebook with the given ID in "foo/bar"

** This is an example dictionary returned from "/notebooks/foo/bar" web service.

{   "path": "foo/bar", 
    "notebooks":[{"kernel_id":"###","name":"Notebook1","notebook_id":"###"},{...}], 
    "directories": ["sub-directory1", "sub-directory2", ...],
    "files":["file1","file2",...]
    }

The same URL pattern will be made to the other web-services (i.e. /kernels and /clusters) shown in the current URL mapping.

Along side the IPython web-services, there are other website URL's that will need to change as well. The chart below shows the proposed changes for the new website URL scheme of the notebook.

Notice the addition of "/tree" to the website URL's. This is to prevent any confusion if the user has a subdirectory named "/notebooks".

HTTP verb URL Action
GET /tree navigates user to dashboard at the top level directory of the current file system
GET / redirects to "/tree" URL
GET /tree/foo/bar navigates user to dashboard for the "foo/bar" directory
GET /tree/login navigates to login page; if no user profile is defined, it navigates user to dashboard
GET /tree/logout logs out of current profile, and navigates user to login page
GET /notebooks/foo/bar/<notebook_name> go to live notebook view of the named notebook
GET /notebooks/foo/bar/new creates a new notebook with profile (or default, if no profile exists) settings in"foo/bar"
GET /notebooks/foo/bar/<notebook_name>/copy copies notebook of given name to "foo/bar" directory
GET /notebooks/foo/bar/<notebook_name>/print prints the notebook with the given name; if notebook name doesn't exist, displays error message
GET /edit/foo/bar go to live edit view for text files

Things to Consider

Notebook Sharing

One question is whether we want the URL to continue using notebook ID, rather than the notebook's name. Keeping the ID leaves the URL as a hybrid between a path name (i.e. "foo/bar") and notebook ID. It might be nice to have the URL be consistent and say, "/foo/bar/notebook1" rather than a "foo/bar/long-stream-of-numbers-at-the-end".

The difficulty with changing the URL to filenames rather than IDs, however, is found in the sharing of notebooks:

  1. If a notebook is being shared, and it is renamed or changed by user#1, those changes are not made on user#2's notebook page. If they save their unchanged notebook, all progress is lost for the user#1. User#2 would need to reload the page to avoid losing the progress of user#1.
  2. The URL needs to change for both users if a notebook is renamed. The notebook ID style URL stays consistent despite any changes made.

"Projects"

The second thing to consider is the notion of projects. A project is analogous to a repository on Github, where all files, notebooks, and sub-directores are located inside the project's file system. This IPEP only proposes implementing the ability to navigate through a hierarchical file system within a single project. When the server launches under this implementation, a dashboard opens at the top-level directory of a project (i.e. $HOME). The user can move through parent directories and sub-directories within this project, but cannot switch projects in the current server. They must relauch a server in the new project's location on their file system.

In the future (perhaps as a second stage to this proposal), we would like to give the notebook the ability to switch between and create new projects on a single server. This will require small adjustments to this proposed URL scheme. The goal would be to create a new top-level "projects page" where the user's projects are listed. When one is clicked, the page is directed to the normal dashboard described above, with the project's file system of notebooks, sub-directories, and other files.

The new URL mapping would require the addition of a /<project_name> to the URL hierarchy. The tables below show a possible mapping for this project's notion.

HTTP verb New URL Action
GET /api/<project_name>/notebooks/foo/bar returns a dict with the project's "foo/bar" sub-directories, files, notebooks and path
POST /api/<project_name>/notebooks/foo/bar if sending a body, saving that body as a new notebook in the project's "foo/bar" location; if no body, create a new notebook in "foo/bar"
GET /api/<project_name>/notebooks/foo/bar/<notebook_id> returns the json data for the notebook with the given ID in "/<project_name>foo/bar"
PUT /api/<project_name>/notebooks/foo/bar/<notebook_id> saves an existing notebook with body data in "/<project_name>foo/bar"
DELETE /api/<project_name>/notebooks/foo/bar/<notebook_id> deletes the notebook with the given ID in "/<project_name>foo/bar"

The next chart shows the changes that would be needed for the website URL mapping.

HTTP verb URL Action
GET / navigate's user the the a "project's page" which lists all the projects on the local file-system
GET /<project_name>/tree navigates user to the top-level dashboard with the specified project name
GET /<project_name>/tree/foo/bar navigates user to dashboard for the "/<project_name>/foo/bar" directory
GET /<project_name>/tree/login navigates to login page; if no user profile is defined, it navigates user to the "project's page"
GET /<project_name>/tree/logout logs out of current profile, and navigates user to login page
GET /<project_name>/notebooks/foo/bar/<notebook_id> open the notebook with the given ID
GET /<project_name>/notebooks/foo/bar/<notebook_id>/copy copies notebook of given ID to "/<project_name>/foo/bar" directory
GET /<project_name>/notebooks/foo/bar/new creates a new notebook with profile (or default, if no profile exists) settings in"/<project_name>/foo/bar"
GET /<project_name>/notebooks/foo/bar/<notebook_id>/print prints the notebook with the given ID; if notebook ID doesn't exist, displays error message
GET /<project_name>/edit/foo/bar go to live edit view for text files

See Discussion about this IPEP

Go to the IPEP 16 ~ issue #3166 here.

Clone this wiki locally