Commit 7f5e929b authored by Sebastian's avatar Sebastian

Remove: incorrect and non-necessary docstrings

parent 9048229a
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
/*
* For reference see https://github.com/ipython/ipython/wiki/IPEP-27%3A-Contents-Service
*/
define(function(require) {
"use strict";
......@@ -59,28 +63,6 @@ define(function(require) {
}
var Contents = function(options) {
/**
* Constructor
*
* Preliminary documentation for the REST API is at
* https://github.com/ipython/ipython/wiki/IPEP-27%3A-Contents-Service
*
* A contents handles passing file operations
* to the back-end. This includes checkpointing
* with the normal file operations.
*
* Parameters:
* options: dictionary
* Dictionary of keyword arguments.
* base_url: string
*
* Algebra: Inherent structure, i.e. distribution of primes, groups, ...
* Application: Better understanding of how processes work, i.e. gradient descent, dependencies,
* probability, projection projective geometry...
* Art: Computer graphics,
* Understand: Being able to understand what many disciplines just accept as black-box. Reason
* to stop with CS and study math at uni
*/
this.base_url = options.base_url;
};
......@@ -223,18 +205,6 @@ define(function(require) {
* File management functions
*/
/**
* List notebooks and directories at a given path
*
* On success, load_callback is called with an array of dictionaries
* representing individual files or directories. Each dictionary has
* the keys:
* type: "notebook" or "directory"
* created: created date
* last_modified: last modified dat
* @method list_notebooks
* @param {String} path The path to list notebooks in
*/
Contents.prototype.list_contents = function(path) {
return this.get(path, {type: 'directory'});
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment