mirror of https://github.com/perkeep/perkeep.git
newui: Cleaning up TODOs in comments
This commit is contained in:
parent
7c319ca284
commit
45f54ffb1f
|
@ -1,5 +1,7 @@
|
|||
/**
|
||||
* @fileoverview TODO
|
||||
* @fileoverview An item showing in a blob item container; represents a blob
|
||||
* that has already been uploaded in the system, or acts as a placeholder
|
||||
* for a new blob.
|
||||
*
|
||||
*/
|
||||
goog.provide('camlistore.BlobItem');
|
||||
|
@ -64,7 +66,7 @@ goog.inherits(camlistore.BlobItem, goog.ui.Control);
|
|||
|
||||
|
||||
/**
|
||||
* TODO: Handle more permanode types.
|
||||
* TODO(bslatkin): Handle more permanode types.
|
||||
*
|
||||
* @param {string} blobRef string BlobRef to resolve.
|
||||
* @param {camlistore.ServerType.IndexerMetaBag} metaBag Metadata bag to use
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/**
|
||||
* @fileoverview TODO
|
||||
* @fileoverview Contains a set of BlobItems. Knows how to fetch items from
|
||||
* the server side. Is preconfigured with common queries like "recent" blobs.
|
||||
*
|
||||
*/
|
||||
goog.provide('camlistore.BlobItemContainer');
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/**
|
||||
* @fileoverview TODO
|
||||
* @fileoverview Placeholder BlobItem in a BlobItemContainer that lets the
|
||||
* user upload new blobs to the server.
|
||||
*
|
||||
*/
|
||||
goog.provide('camlistore.CreateItem');
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* @fileoverview TODO
|
||||
* @fileoverview Entry point for the blob browser UI.
|
||||
*
|
||||
*/
|
||||
goog.provide('camlistore.IndexPage');
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
/**
|
||||
* @fileoverview TODO
|
||||
* @fileoverview Connection to the blob server and API for the RPCs it
|
||||
* provides. All blob index UI code should use this connection to contact
|
||||
* the server.
|
||||
*
|
||||
*/
|
||||
goog.provide('camlistore.ServerConnection');
|
||||
|
@ -79,7 +81,7 @@ camlistore.ServerConnection.prototype.getRecentlyUpdatedPermanodesDone_ =
|
|||
* @param {Function=} opt_fail Optional fail callback.
|
||||
*/
|
||||
camlistore.ServerConnection.prototype.createPermanode = function(success, opt_fail) {
|
||||
// TODO: stop depending on camli.js. For now, cheating:
|
||||
// TODO(bradfitz): stop depending on camli.js. For now, cheating:
|
||||
camliCreateNewPermanode({
|
||||
success: success,
|
||||
fail: opt_fail
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* @fileoverview TODO
|
||||
* @fileoverview Toolbar for manipulating the display of the blob index page.
|
||||
*
|
||||
*/
|
||||
goog.provide('camlistore.Toolbar');
|
||||
|
|
Loading…
Reference in New Issue