Skip to content
This repository was archived by the owner on Nov 30, 2018. It is now read-only.

Commit 4f0a230

Browse files
Switched over to yui for documentation.
1 parent 8a1a09a commit 4f0a230

File tree

1,277 files changed

+537
-62886
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,277 files changed

+537
-62886
lines changed

build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ push-location "platforms" -PassThru
1212
pop-location
1313

1414
Write-Host "Building API Docs"
15-
./tools/jsdoc/jsdoc -c conf.json
15+
yuidoc
1616

1717
pause

conf.json

-22
This file was deleted.

platforms/Bower/Durandal/js/activator.js

+58-36
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
* The activator module encapsulates all logic related to screen/component activation.
88
* An activator is essentially an asynchronous state machine that understands a particular state transition protocol.
99
* The protocol ensures that the following series of events always occur: canDeactivate (previous state), deactivate (previous state), canActivate (new state), activate (new state).
10-
* @module durandal/activator
11-
* @requires module:durandal/system
12-
* @requires module:knockout
10+
* @module activator
1311
*/
1412
define(['durandal/system', 'knockout'], function (system, ko) {
1513
var activator;
@@ -184,6 +182,9 @@ define(['durandal/system', 'knockout'], function (system, ko) {
184182
}).promise();
185183
};
186184

185+
/**
186+
* @class Activator
187+
*/
187188
function createActivator(initialActiveItem, settings) {
188189
var activeItem = ko.observable(null);
189190

@@ -443,49 +444,70 @@ define(['durandal/system', 'knockout'], function (system, ko) {
443444
return computed;
444445
}
445446

446-
activator = /** @lends module:durandal/activator */ {
447+
/**
448+
* @class ActivatorSettings
449+
* @static
450+
*/
451+
var activatorSettings = {
447452
/**
448-
* The default settings used by activators.
449-
*/
450-
defaults: {
451-
/**
452-
* The default value passed to an object's deactivate function as its close parameter.
453-
*/
454-
closeOnDeactivate: true,
455-
affirmations:['yes', 'ok'],
456-
interpretResponse: function (value) {
457-
if(system.isObject(value)){
458-
value = value.can || false;
459-
}
460-
461-
if (system.isString(value)) {
462-
return ko.utils.arrayIndexOf(this.affirmations, value.toLowerCase()) !== -1;
463-
}
453+
* The default value passed to an object's deactivate function as its close parameter.
454+
* @property {boolean} closeOnDeactivate
455+
*/
456+
closeOnDeactivate: true,
457+
affirmations:['yes', 'ok'],
458+
/**
459+
* A function that interprets the response of a canActivate/canDeactivate call using the known affirmative values.
460+
* @method interpretResponse
461+
* @param {object} value
462+
* @returns {boolean}
463+
*/
464+
interpretResponse: function (value) {
465+
if(system.isObject(value)){
466+
value = value.can || false;
467+
}
464468

465-
return value;
466-
},
467-
areSameItem: function (currentItem, newItem, activationData) {
468-
return currentItem == newItem;
469-
},
470-
beforeActivate: function (newItem) {
471-
return newItem;
472-
},
473-
afterDeactivate: function (item, close, setter) {
474-
if (close && setter) {
475-
setter(null);
476-
}
469+
if (system.isString(value)) {
470+
return ko.utils.arrayIndexOf(this.affirmations, value.toLowerCase()) !== -1;
477471
}
472+
473+
return value;
474+
},
475+
areSameItem: function (currentItem, newItem, activationData) {
476+
return currentItem == newItem;
478477
},
479-
/** Creates a new activator.
480-
* @function
478+
beforeActivate: function (newItem) {
479+
return newItem;
480+
},
481+
afterDeactivate: function (item, close, setter) {
482+
if (close && setter) {
483+
setter(null);
484+
}
485+
}
486+
}
487+
488+
/**
489+
* @class ActivatorModule
490+
* @static
491+
*/
492+
activator = {
493+
/**
494+
* The default settings used by activators.
495+
* @property {ActivatorSettings} defaults
496+
*/
497+
defaults: activatorSettings,
498+
/**
499+
* Creates a new activator.
500+
* @method create
481501
* @param {object} [initialActiveItem] The item which should be immediately activated upon creation of the ativator.
482-
* @param {object} [settings] Per activator overrides of the default activator settings.
483-
* @returns {object} The created activator.
502+
* @param {ActivatorSettings} [settings] Per activator overrides of the default activator settings.
503+
* @returns {Activator} The created activator.
484504
*/
485505
create: createActivator,
486506
/**
487507
* Determines whether or not the provided object is an activator or not.
508+
* @method isActivator
488509
* @param {object} object Any object you wish to verify as an activator or not.
510+
* @returns {boolean} True if the object is an activator; false otherwise.
489511
*/
490512
isActivator:function(object){
491513
return object && object.__activator__;

platforms/HTML/Samples/lib/durandal/js/activator.js

+58-36
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
* The activator module encapsulates all logic related to screen/component activation.
88
* An activator is essentially an asynchronous state machine that understands a particular state transition protocol.
99
* The protocol ensures that the following series of events always occur: canDeactivate (previous state), deactivate (previous state), canActivate (new state), activate (new state).
10-
* @module durandal/activator
11-
* @requires module:durandal/system
12-
* @requires module:knockout
10+
* @module activator
1311
*/
1412
define(['durandal/system', 'knockout'], function (system, ko) {
1513
var activator;
@@ -184,6 +182,9 @@ define(['durandal/system', 'knockout'], function (system, ko) {
184182
}).promise();
185183
};
186184

185+
/**
186+
* @class Activator
187+
*/
187188
function createActivator(initialActiveItem, settings) {
188189
var activeItem = ko.observable(null);
189190

@@ -443,49 +444,70 @@ define(['durandal/system', 'knockout'], function (system, ko) {
443444
return computed;
444445
}
445446

446-
activator = /** @lends module:durandal/activator */ {
447+
/**
448+
* @class ActivatorSettings
449+
* @static
450+
*/
451+
var activatorSettings = {
447452
/**
448-
* The default settings used by activators.
449-
*/
450-
defaults: {
451-
/**
452-
* The default value passed to an object's deactivate function as its close parameter.
453-
*/
454-
closeOnDeactivate: true,
455-
affirmations:['yes', 'ok'],
456-
interpretResponse: function (value) {
457-
if(system.isObject(value)){
458-
value = value.can || false;
459-
}
460-
461-
if (system.isString(value)) {
462-
return ko.utils.arrayIndexOf(this.affirmations, value.toLowerCase()) !== -1;
463-
}
453+
* The default value passed to an object's deactivate function as its close parameter.
454+
* @property {boolean} closeOnDeactivate
455+
*/
456+
closeOnDeactivate: true,
457+
affirmations:['yes', 'ok'],
458+
/**
459+
* A function that interprets the response of a canActivate/canDeactivate call using the known affirmative values.
460+
* @method interpretResponse
461+
* @param {object} value
462+
* @returns {boolean}
463+
*/
464+
interpretResponse: function (value) {
465+
if(system.isObject(value)){
466+
value = value.can || false;
467+
}
464468

465-
return value;
466-
},
467-
areSameItem: function (currentItem, newItem, activationData) {
468-
return currentItem == newItem;
469-
},
470-
beforeActivate: function (newItem) {
471-
return newItem;
472-
},
473-
afterDeactivate: function (item, close, setter) {
474-
if (close && setter) {
475-
setter(null);
476-
}
469+
if (system.isString(value)) {
470+
return ko.utils.arrayIndexOf(this.affirmations, value.toLowerCase()) !== -1;
477471
}
472+
473+
return value;
474+
},
475+
areSameItem: function (currentItem, newItem, activationData) {
476+
return currentItem == newItem;
478477
},
479-
/** Creates a new activator.
480-
* @function
478+
beforeActivate: function (newItem) {
479+
return newItem;
480+
},
481+
afterDeactivate: function (item, close, setter) {
482+
if (close && setter) {
483+
setter(null);
484+
}
485+
}
486+
}
487+
488+
/**
489+
* @class ActivatorModule
490+
* @static
491+
*/
492+
activator = {
493+
/**
494+
* The default settings used by activators.
495+
* @property {ActivatorSettings} defaults
496+
*/
497+
defaults: activatorSettings,
498+
/**
499+
* Creates a new activator.
500+
* @method create
481501
* @param {object} [initialActiveItem] The item which should be immediately activated upon creation of the ativator.
482-
* @param {object} [settings] Per activator overrides of the default activator settings.
483-
* @returns {object} The created activator.
502+
* @param {ActivatorSettings} [settings] Per activator overrides of the default activator settings.
503+
* @returns {Activator} The created activator.
484504
*/
485505
create: createActivator,
486506
/**
487507
* Determines whether or not the provided object is an activator or not.
508+
* @method isActivator
488509
* @param {object} object Any object you wish to verify as an activator or not.
510+
* @returns {boolean} True if the object is an activator; false otherwise.
489511
*/
490512
isActivator:function(object){
491513
return object && object.__activator__;

0 commit comments

Comments
 (0)