Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
YUI and Loader build for latest Gallery build
  • Loading branch information
davglass committed Jul 18, 2012
1 parent f22ae81 commit 699ec04
Show file tree
Hide file tree
Showing 21 changed files with 56 additions and 41 deletions.
2 changes: 1 addition & 1 deletion build/loader-base/loader-base-debug.js
Expand Up @@ -13,7 +13,7 @@ if (!YUI.Env[Y.version]) {
BUILD = '/build/',
ROOT = VERSION + BUILD,
CDN_BASE = Y.Env.base,
GALLERY_VERSION = 'gallery-2012.07.11-21-38',
GALLERY_VERSION = 'gallery-2012.07.18-13-22',
TNT = '2in3',
TNT_VERSION = '4',
YUI2_VERSION = '2.9.0',
Expand Down
2 changes: 1 addition & 1 deletion build/loader-base/loader-base-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/loader-base/loader-base.js
Expand Up @@ -13,7 +13,7 @@ if (!YUI.Env[Y.version]) {
BUILD = '/build/',
ROOT = VERSION + BUILD,
CDN_BASE = Y.Env.base,
GALLERY_VERSION = 'gallery-2012.07.11-21-38',
GALLERY_VERSION = 'gallery-2012.07.18-13-22',
TNT = '2in3',
TNT_VERSION = '4',
YUI2_VERSION = '2.9.0',
Expand Down
2 changes: 1 addition & 1 deletion build/loader-yui3/loader-yui3-debug.js
Expand Up @@ -2457,7 +2457,7 @@ YUI.Env[Y.version].modules = YUI.Env[Y.version].modules || {
]
}
};
YUI.Env[Y.version].md5 = '2631b5fb2c08064b4e8385f1142513e5';
YUI.Env[Y.version].md5 = '5a681478005a2bdc375c61ddfa610d1e';


}, '@VERSION@' ,{requires:['loader-base']});
2 changes: 1 addition & 1 deletion build/loader-yui3/loader-yui3-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/loader-yui3/loader-yui3.js
Expand Up @@ -2457,7 +2457,7 @@ YUI.Env[Y.version].modules = YUI.Env[Y.version].modules || {
]
}
};
YUI.Env[Y.version].md5 = '2631b5fb2c08064b4e8385f1142513e5';
YUI.Env[Y.version].md5 = '5a681478005a2bdc375c61ddfa610d1e';


}, '@VERSION@' ,{requires:['loader-base']});
4 changes: 2 additions & 2 deletions build/loader/loader-debug.js
Expand Up @@ -13,7 +13,7 @@ if (!YUI.Env[Y.version]) {
BUILD = '/build/',
ROOT = VERSION + BUILD,
CDN_BASE = Y.Env.base,
GALLERY_VERSION = 'gallery-2012.07.11-21-38',
GALLERY_VERSION = 'gallery-2012.07.18-13-22',
TNT = '2in3',
TNT_VERSION = '4',
YUI2_VERSION = '2.9.0',
Expand Down Expand Up @@ -5304,7 +5304,7 @@ YUI.Env[Y.version].modules = YUI.Env[Y.version].modules || {
]
}
};
YUI.Env[Y.version].md5 = '2631b5fb2c08064b4e8385f1142513e5';
YUI.Env[Y.version].md5 = '5a681478005a2bdc375c61ddfa610d1e';


}, '@VERSION@' ,{requires:['loader-base']});
Expand Down
4 changes: 2 additions & 2 deletions build/loader/loader-min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/loader/loader.js
Expand Up @@ -13,7 +13,7 @@ if (!YUI.Env[Y.version]) {
BUILD = '/build/',
ROOT = VERSION + BUILD,
CDN_BASE = Y.Env.base,
GALLERY_VERSION = 'gallery-2012.07.11-21-38',
GALLERY_VERSION = 'gallery-2012.07.18-13-22',
TNT = '2in3',
TNT_VERSION = '4',
YUI2_VERSION = '2.9.0',
Expand Down Expand Up @@ -5262,7 +5262,7 @@ YUI.Env[Y.version].modules = YUI.Env[Y.version].modules || {
]
}
};
YUI.Env[Y.version].md5 = '2631b5fb2c08064b4e8385f1142513e5';
YUI.Env[Y.version].md5 = '5a681478005a2bdc375c61ddfa610d1e';


}, '@VERSION@' ,{requires:['loader-base']});
Expand Down
13 changes: 9 additions & 4 deletions build/simpleyui/simpleyui-debug.js
Expand Up @@ -3785,7 +3785,7 @@ Y.UA.compareVersions = function (a, b) {
};
YUI.Env.aliases = {
"anim": ["anim-base","anim-color","anim-curve","anim-easing","anim-node-plugin","anim-scroll","anim-xy"],
"app": ["app-base","app-transitions","model","model-list","router","view"],
"app": ["app-base","app-transitions","lazy-model-list","model","model-list","model-sync-rest","router","view","view-node-map"],
"attribute": ["attribute-base","attribute-complex"],
"autocomplete": ["autocomplete-base","autocomplete-sources","autocomplete-list","autocomplete-plugin"],
"base": ["base-base","base-pluginhost","base-build"],
Expand Down Expand Up @@ -11895,6 +11895,7 @@ var DOT = '.',
/**
* The underlying DOM node bound to the Y.Node instance
* @property _node
* @type DOMNode
* @private
*/
this._node = node;
Expand Down Expand Up @@ -11943,6 +11944,7 @@ Y_Node._fromString = function(node) {
/**
* The name of the component
* @static
* @type String
* @property NAME
*/
Y_Node.NAME = 'node';
Expand All @@ -11958,6 +11960,7 @@ Y_Node.HIDE_TRANSITION = 'fadeOut';
/**
* A list of Node instances that have been created
* @private
* @type Object
* @property _instances
* @static
*
Expand Down Expand Up @@ -12674,6 +12677,7 @@ Y.one = Y_Node.one;
*
* @class NodeList
* @constructor
* @param nodes {String|element|Node|Array} A selector, DOM element, Node, list of DOM elements, or list of Nodes with which to populate this NodeList.
*/

var NodeList = function(nodes) {
Expand Down Expand Up @@ -14496,7 +14500,7 @@ Y.mix(Y.Node.prototype, {
* @for Node
* @description Stores arbitrary data on a Node instance.
* This is not stored with the DOM node.
* @param {string} name The name of the field to set. If no name
* @param {string} name The name of the field to set. If no val
* is given, name is treated as the data and overrides any existing data.
* @param {any} val The value to be assigned to the field.
* @chainable
Expand Down Expand Up @@ -17145,8 +17149,9 @@ YUI.add('io-base', function(Y) {

/**
Base IO functionality. Provides basic XHR transport support.
@module io-base
@main io-base

@module io
@submodule io-base
@for IO
**/

Expand Down
12 changes: 6 additions & 6 deletions build/simpleyui/simpleyui-min.js

Large diffs are not rendered by default.

13 changes: 9 additions & 4 deletions build/simpleyui/simpleyui.js
Expand Up @@ -3766,7 +3766,7 @@ Y.UA.compareVersions = function (a, b) {
};
YUI.Env.aliases = {
"anim": ["anim-base","anim-color","anim-curve","anim-easing","anim-node-plugin","anim-scroll","anim-xy"],
"app": ["app-base","app-transitions","model","model-list","router","view"],
"app": ["app-base","app-transitions","lazy-model-list","model","model-list","model-sync-rest","router","view","view-node-map"],
"attribute": ["attribute-base","attribute-complex"],
"autocomplete": ["autocomplete-base","autocomplete-sources","autocomplete-list","autocomplete-plugin"],
"base": ["base-base","base-pluginhost","base-build"],
Expand Down Expand Up @@ -11824,6 +11824,7 @@ var DOT = '.',
/**
* The underlying DOM node bound to the Y.Node instance
* @property _node
* @type DOMNode
* @private
*/
this._node = node;
Expand Down Expand Up @@ -11872,6 +11873,7 @@ Y_Node._fromString = function(node) {
/**
* The name of the component
* @static
* @type String
* @property NAME
*/
Y_Node.NAME = 'node';
Expand All @@ -11887,6 +11889,7 @@ Y_Node.HIDE_TRANSITION = 'fadeOut';
/**
* A list of Node instances that have been created
* @private
* @type Object
* @property _instances
* @static
*
Expand Down Expand Up @@ -12602,6 +12605,7 @@ Y.one = Y_Node.one;
*
* @class NodeList
* @constructor
* @param nodes {String|element|Node|Array} A selector, DOM element, Node, list of DOM elements, or list of Nodes with which to populate this NodeList.
*/

var NodeList = function(nodes) {
Expand Down Expand Up @@ -14419,7 +14423,7 @@ Y.mix(Y.Node.prototype, {
* @for Node
* @description Stores arbitrary data on a Node instance.
* This is not stored with the DOM node.
* @param {string} name The name of the field to set. If no name
* @param {string} name The name of the field to set. If no val
* is given, name is treated as the data and overrides any existing data.
* @param {any} val The value to be assigned to the field.
* @chainable
Expand Down Expand Up @@ -17052,8 +17056,9 @@ YUI.add('io-base', function(Y) {

/**
Base IO functionality. Provides basic XHR transport support.
@module io-base
@main io-base

@module io
@submodule io-base
@for IO
**/

Expand Down
2 changes: 1 addition & 1 deletion build/yui-nodejs/yui-nodejs-debug.js
Expand Up @@ -10024,7 +10024,7 @@ YUI.Env[Y.version].modules = YUI.Env[Y.version].modules || {
]
}
};
YUI.Env[Y.version].md5 = '2631b5fb2c08064b4e8385f1142513e5';
YUI.Env[Y.version].md5 = '5a681478005a2bdc375c61ddfa610d1e';


}, '@VERSION@' ,{requires:['loader-base']});
Expand Down

0 comments on commit 699ec04

Please sign in to comment.