Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(83)

Side by Side Diff: app/models/charm.js

Issue 8071044: Update charm small to match "Charm Token".
Patch Set: Created 12 years ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 'use strict'; 1 'use strict';
2 2
3 /** 3 /**
4 * Provide the Charm and CharmList classes. 4 * Provide the Charm and CharmList classes.
5 * 5 *
6 * @module models 6 * @module models
7 * @submodule models.charm 7 * @submodule models.charm
8 */ 8 */
9 9
10 YUI.add('juju-charm-models', function(Y) { 10 YUI.add('juju-charm-models', function(Y) {
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 metadata: {}, 359 metadata: {},
360 name: {}, 360 name: {},
361 config: {}, 361 config: {},
362 icon: {}, 362 icon: {},
363 owner: {}, 363 owner: {},
364 peers: {}, 364 peers: {},
365 proof: {}, 365 proof: {},
366 provides: {}, 366 provides: {},
367 rating_numerator: {}, 367 rating_numerator: {},
368 rating_denominator: {}, 368 rating_denominator: {},
369 recent_downloads: {}, 369 recent_downloads: {},
rharding 2013/04/01 23:53:17 didn't we also mention that recent_downloads is ac
370 recent_commits: {},
370 relations: {}, 371 relations: {},
371 requires: {}, 372 requires: {},
372 revision: { 373 revision: {
373 /** 374 /**
374 * Parse the revision number out of a string. 375 * Parse the revision number out of a string.
375 * 376 *
376 * @method revision.setter 377 * @method revision.setter
377 */ 378 */
378 setter: function(val) { 379 setter: function(val) {
379 return parseInt(val, 10); 380 return parseInt(val, 10);
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 ATTRS: {} 413 ATTRS: {}
413 }); 414 });
414 415
415 }, '0.1.0', { 416 }, '0.1.0', {
416 requires: [ 417 requires: [
417 'model', 418 'model',
418 'model-list', 419 'model-list',
419 'juju-charm-id' 420 'juju-charm-id'
420 ] 421 ]
421 }); 422 });
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b