From 37476716ff18aa0777199df2c1f1f5814f93188b Mon Sep 17 00:00:00 2001 From: Dav Glass Date: Mon, 7 Jan 2013 15:10:54 -0600 Subject: [PATCH] Seed Build --- build/simpleyui/simpleyui-debug.js | 15 - build/simpleyui/simpleyui.js | 15 - build/yui-base/yui-base-coverage.js | 889 ++++++++++++------------ build/yui-base/yui-base-debug.js | 15 - build/yui-base/yui-base.js | 15 - build/yui-core/yui-core-coverage.js | 889 ++++++++++++------------ build/yui-core/yui-core-debug.js | 15 - build/yui-core/yui-core.js | 15 - build/yui-nodejs/yui-nodejs-coverage.js | 889 ++++++++++++------------ build/yui-nodejs/yui-nodejs-debug.js | 15 - build/yui-nodejs/yui-nodejs.js | 15 - build/yui/yui-coverage.js | 889 ++++++++++++------------ build/yui/yui-debug.js | 15 - build/yui/yui.js | 15 - src/simpleyui/js/concat.js | 15 - src/yui/js/yui.js | 15 - 16 files changed, 1748 insertions(+), 1988 deletions(-) diff --git a/build/simpleyui/simpleyui-debug.js b/build/simpleyui/simpleyui-debug.js index 925b8aa0747..a3668554fce 100644 --- a/build/simpleyui/simpleyui-debug.js +++ b/build/simpleyui/simpleyui-debug.js @@ -2010,20 +2010,6 @@ relying on ES5 functionality, even when ES5 functionality is available. **/ /** -<<<<<<< HEAD -Event to wait for before executing the `use()` callback. - -The following events are supported: - - - available - - contentready - - domready - - load - -The event may be specified as a string or as an object hash that provides -additional event configuration, as illustrated in the example below. - -======= * Leverage native JSON stringify if the browser has a native * implementation. In general, this is a good idea. See the Known Issues * section in the JSON user guide for caveats. The default value is true @@ -2052,7 +2038,6 @@ Delay the `use` callback until a specific event has passed (`load`, `domready`, @property delayUntil @type String|Object @since 3.6.0 ->>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4 @example You can use `load` or `domready` strings by default: diff --git a/build/simpleyui/simpleyui.js b/build/simpleyui/simpleyui.js index b895fb94295..cdeb3758bdd 100644 --- a/build/simpleyui/simpleyui.js +++ b/build/simpleyui/simpleyui.js @@ -1671,20 +1671,6 @@ relying on ES5 functionality, even when ES5 functionality is available. **/ /** -<<<<<<< HEAD -Event to wait for before executing the `use()` callback. - -The following events are supported: - - - available - - contentready - - domready - - load - -The event may be specified as a string or as an object hash that provides -additional event configuration, as illustrated in the example below. - -======= * Leverage native JSON stringify if the browser has a native * implementation. In general, this is a good idea. See the Known Issues * section in the JSON user guide for caveats. The default value is true @@ -1713,7 +1699,6 @@ Delay the `use` callback until a specific event has passed (`load`, `domready`, @property delayUntil @type String|Object @since 3.6.0 ->>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4 @example You can use `load` or `domready` strings by default: diff --git a/build/yui-base/yui-base-coverage.js b/build/yui-base/yui-base-coverage.js index d1e36293d3f..aa7a764bd22 100644 --- a/build/yui-base/yui-base-coverage.js +++ b/build/yui-base/yui-base-coverage.js @@ -26,7 +26,7 @@ _yuitest_coverage["build/yui-base/yui-base.js"] = { path: "build/yui-base/yui-base.js", code: [] }; -_yuitest_coverage["build/yui-base/yui-base.js"].code=["/**","The YUI module contains the components required for building the YUI seed file.","This includes the script loading mechanism, a simple queue, and the core","utilities for the library.","","@module yui","@main yui","@submodule yui-base","**/","","if (typeof YUI != 'undefined') {"," YUI._YUI = YUI;","}","","/**","The YUI global namespace object. This is the constructor for all YUI instances.","","This is a self-instantiable factory function, meaning you don't need to precede","it with the `new` operator. You can invoke it directly like this:",""," YUI().use('*', function (Y) {"," // Y is a new YUI instance."," });","","But it also works like this:",""," var Y = YUI();","","The `YUI` constructor accepts an optional config object, like this:",""," YUI({"," debug: true,"," combine: false"," }).use('node', function (Y) {"," // Y.Node is ready to use."," });","","See the API docs for the Config class for the complete","list of supported configuration properties accepted by the YUI constuctor.","","If a global `YUI` object is already defined, the existing YUI object will not be","overwritten, to ensure that defined namespaces are preserved.","","Each YUI instance has full custom event support, but only if the event system is","available.","","@class YUI","@uses EventTarget","@constructor","@global","@param {Object} [config]* Zero or more optional configuration objects. Config"," values are stored in the `Y.config` property. See the"," Config docs for the list of supported properties.","**/",""," /*global YUI*/"," /*global YUI_config*/"," var YUI = function() {"," var i = 0,"," Y = this,"," args = arguments,"," l = args.length,"," instanceOf = function(o, type) {"," return (o && o.hasOwnProperty && (o instanceof type));"," },"," gconf = (typeof YUI_config !== 'undefined') && YUI_config;",""," if (!(instanceOf(Y, YUI))) {"," Y = new YUI();"," } else {"," // set up the core environment"," Y._init();",""," /**"," Master configuration that might span multiple contexts in a non-"," browser environment. It is applied first to all instances in all"," contexts.",""," @example",""," YUI.GlobalConfig = {"," filter: 'debug'"," };",""," YUI().use('node', function (Y) {"," // debug files used here"," });",""," YUI({"," filter: 'min'"," }).use('node', function (Y) {"," // min files used here"," });",""," @property {Object} GlobalConfig"," @global"," @static"," **/"," if (YUI.GlobalConfig) {"," Y.applyConfig(YUI.GlobalConfig);"," }",""," /**"," Page-level config applied to all YUI instances created on the"," current page. This is applied after `YUI.GlobalConfig` and before"," any instance-level configuration.",""," @example",""," // Single global var to include before YUI seed file"," YUI_config = {"," filter: 'debug'"," };",""," YUI().use('node', function (Y) {"," // debug files used here"," });",""," YUI({"," filter: 'min'"," }).use('node', function (Y) {"," // min files used here"," });",""," @property {Object} YUI_config"," @global"," **/"," if (gconf) {"," Y.applyConfig(gconf);"," }",""," // bind the specified additional modules for this instance"," if (!l) {"," Y._setup();"," }"," }",""," if (l) {"," // Each instance can accept one or more configuration objects."," // These are applied after YUI.GlobalConfig and YUI_Config,"," // overriding values set in those config files if there is a"," // matching property."," for (; i < l; i++) {"," Y.applyConfig(args[i]);"," }",""," Y._setup();"," }",""," Y.instanceOf = instanceOf;",""," return Y;"," };","","(function() {",""," var proto, prop,"," VERSION = '@VERSION@',"," PERIOD = '.',"," BASE = 'http://yui.yahooapis.com/',"," /*"," These CSS class names can't be generated by"," getClassName since it is not available at the"," time they are being used."," */"," DOC_LABEL = 'yui3-js-enabled',"," CSS_STAMP_EL = 'yui3-css-stamp',"," NOOP = function() {},"," SLICE = Array.prototype.slice,"," APPLY_TO_AUTH = { 'io.xdrReady': 1, // the functions applyTo"," 'io.xdrResponse': 1, // can call. this should"," 'SWF.eventHandler': 1 }, // be done at build time"," hasWin = (typeof window != 'undefined'),"," win = (hasWin) ? window : null,"," doc = (hasWin) ? win.document : null,"," docEl = doc && doc.documentElement,"," docClass = docEl && docEl.className,"," instances = {},"," time = new Date().getTime(),"," add = function(el, type, fn, capture) {"," if (el && el.addEventListener) {"," el.addEventListener(type, fn, capture);"," } else if (el && el.attachEvent) {"," el.attachEvent('on' + type, fn);"," }"," },"," remove = function(el, type, fn, capture) {"," if (el && el.removeEventListener) {"," // this can throw an uncaught exception in FF"," try {"," el.removeEventListener(type, fn, capture);"," } catch (ex) {}"," } else if (el && el.detachEvent) {"," el.detachEvent('on' + type, fn);"," }"," },"," handleLoad = function() {"," YUI.Env.windowLoaded = true;"," YUI.Env.DOMReady = true;"," if (hasWin) {"," remove(window, 'load', handleLoad);"," }"," },"," getLoader = function(Y, o) {"," var loader = Y.Env._loader,"," lCore = [ 'loader-base' ],"," G_ENV = YUI.Env,"," mods = G_ENV.mods;",""," if (loader) {"," //loader._config(Y.config);"," loader.ignoreRegistered = false;"," loader.onEnd = null;"," loader.data = null;"," loader.required = [];"," loader.loadType = null;"," } else {"," loader = new Y.Loader(Y.config);"," Y.Env._loader = loader;"," }"," if (mods && mods.loader) {"," lCore = [].concat(lCore, YUI.Env.loaderExtras);"," }"," YUI.Env.core = Y.Array.dedupe([].concat(YUI.Env.core, lCore));",""," return loader;"," },",""," clobber = function(r, s) {"," for (var i in s) {"," if (s.hasOwnProperty(i)) {"," r[i] = s[i];"," }"," }"," },",""," ALREADY_DONE = { success: true };","","// Stamp the documentElement (HTML) with a class of \"yui-loaded\" to","// enable styles that need to key off of JS being enabled.","if (docEl && docClass.indexOf(DOC_LABEL) == -1) {"," if (docClass) {"," docClass += ' ';"," }"," docClass += DOC_LABEL;"," docEl.className = docClass;","}","","if (VERSION.indexOf('@') > -1) {"," VERSION = '3.5.0'; // dev time hack for cdn test","}","","proto = {"," /**"," Applies a new configuration object to the config of this YUI instance. This"," will merge new group/module definitions, and will also update the loader"," cache if necessary. Updating `Y.config` directly will not update the cache.",""," @method applyConfig"," @param {Object} o the configuration object."," @since 3.2.0"," **/"," applyConfig: function(o) {",""," o = o || NOOP;",""," var attr,"," name,"," // detail,"," config = this.config,"," mods = config.modules,"," groups = config.groups,"," aliases = config.aliases,"," loader = this.Env._loader;",""," for (name in o) {"," if (o.hasOwnProperty(name)) {"," attr = o[name];"," if (mods && name == 'modules') {"," clobber(mods, attr);"," } else if (aliases && name == 'aliases') {"," clobber(aliases, attr);"," } else if (groups && name == 'groups') {"," clobber(groups, attr);"," } else if (name == 'win') {"," config[name] = (attr && attr.contentWindow) || attr;"," config.doc = config[name] ? config[name].document : null;"," } else if (name == '_yuid') {"," // preserve the guid"," } else {"," config[name] = attr;"," }"," }"," }",""," if (loader) {"," loader._config(o);"," }",""," },",""," /**"," Old way to apply a config to this instance (calls `applyConfig` under the"," hood).",""," @private"," @method _config"," @param {Object} o The config to apply"," **/"," _config: function(o) {"," this.applyConfig(o);"," },",""," /**"," Initializes this YUI instance.",""," @private"," @method _init"," **/"," _init: function() {"," var filter, el,"," Y = this,"," G_ENV = YUI.Env,"," Env = Y.Env,"," prop;",""," /**"," The version number of this YUI instance.",""," This value is typically updated by a script when a YUI release is built,"," so it may not reflect the correct version number when YUI is run from"," the development source tree.",""," @property {String} version"," **/"," Y.version = VERSION;",""," if (!Env) {"," Y.Env = {"," core: ['get', 'features', 'intl-base', 'yui-log', 'yui-later'],"," loaderExtras: ['loader-rollup', 'loader-yui3'],"," mods: {}, // flat module map"," versions: {}, // version module map"," base: BASE,"," cdn: BASE + VERSION + '/build/',"," // bootstrapped: false,"," _idx: 0,"," _used: {},"," _attached: {},"," _missed: [],"," _yidx: 0,"," _uidx: 0,"," _guidp: 'y',"," _loaded: {},"," // serviced: {},"," // Regex in English:"," // I'll start at the \\b(simpleyui)."," // 1. Look in the test string for \"simpleyui\" or \"yui\" or"," // \"yui-base\" or \"yui-davglass\" or \"yui-foobar\" that comes after a word break. That is, it"," // can't match \"foyui\" or \"i_heart_simpleyui\". This can be anywhere in the string."," // 2. After #1 must come a forward slash followed by the string matched in #1, so"," // \"yui-base/yui-base\" or \"simpleyui/simpleyui\" or \"yui-pants/yui-pants\"."," // 3. The second occurence of the #1 token can optionally be followed by \"-debug\" or \"-min\","," // so \"yui/yui-min\", \"yui/yui-debug\", \"yui-base/yui-base-debug\". NOT \"yui/yui-tshirt\"."," // 4. This is followed by \".js\", so \"yui/yui.js\", \"simpleyui/simpleyui-min.js\""," // 0. Going back to the beginning, now. If all that stuff in 1-4 comes after a \"?\" in the string,"," // then capture the junk between the LAST \"&\" and the string in 1-4. So"," // \"blah?foo/yui/yui.js\" will capture \"foo/\" and \"blah?some/thing.js&3.3.0/build/yui-davglass/yui-davglass.js\""," // will capture \"3.3.0/build/\""," //"," // Regex Exploded:"," // (?:\\? Find a ?"," // (?:[^&]*&) followed by 0..n characters followed by an &"," // * in fact, find as many sets of characters followed by a & as you can"," // ([^&]*) capture the stuff after the last & in \\1"," // )? but it's ok if all this ?junk&more_junk stuff isn't even there"," // \\b(simpleyui| after a word break find either the string \"simpleyui\" or"," // yui(?:-\\w+)? the string \"yui\" optionally followed by a -, then more characters"," // ) and store the simpleyui or yui-* string in \\2"," // \\/\\2 then comes a / followed by the simpleyui or yui-* string in \\2"," // (?:-(min|debug))? optionally followed by \"-min\" or \"-debug\""," // .js and ending in \".js\""," _BASE_RE: /(?:\\?(?:[^&]*&)*([^&]*))?\\b(simpleyui|yui(?:-\\w+)?)\\/\\2(?:-(min|debug))?\\.js/,"," parseBasePath: function(src, pattern) {"," var match = src.match(pattern),"," path, filter;",""," if (match) {"," path = RegExp.leftContext || src.slice(0, src.indexOf(match[0]));",""," // this is to set up the path to the loader. The file"," // filter for loader should match the yui include."," filter = match[3];",""," // extract correct path for mixed combo urls"," // http://yuilibrary.com/projects/yui3/ticket/2528423"," if (match[1]) {"," path += '?' + match[1];"," }"," path = {"," filter: filter,"," path: path"," };"," }"," return path;"," },"," getBase: G_ENV && G_ENV.getBase ||"," function(pattern) {"," var nodes = (doc && doc.getElementsByTagName('script')) || [],"," path = Env.cdn, parsed,"," i, len, src;",""," for (i = 0, len = nodes.length; i < len; ++i) {"," src = nodes[i].src;"," if (src) {"," parsed = Y.Env.parseBasePath(src, pattern);"," if (parsed) {"," filter = parsed.filter;"," path = parsed.path;"," break;"," }"," }"," }",""," // use CDN default"," return path;"," }",""," };",""," Env = Y.Env;",""," Env._loaded[VERSION] = {};",""," if (G_ENV && Y !== YUI) {"," Env._yidx = ++G_ENV._yidx;"," Env._guidp = ('yui_' + VERSION + '_' +"," Env._yidx + '_' + time).replace(/[^a-z0-9_]+/g, '_');"," } else if (YUI._YUI) {",""," G_ENV = YUI._YUI.Env;"," Env._yidx += G_ENV._yidx;"," Env._uidx += G_ENV._uidx;",""," for (prop in G_ENV) {"," if (!(prop in Env)) {"," Env[prop] = G_ENV[prop];"," }"," }",""," delete YUI._YUI;"," }",""," Y.id = Y.stamp(Y);"," instances[Y.id] = Y;",""," }",""," Y.constructor = YUI;",""," // configuration defaults"," Y.config = Y.config || {"," bootstrap: true,"," cacheUse: true,"," debug: true,"," doc: doc,"," fetchCSS: true,"," throwFail: true,"," useBrowserConsole: true,"," useNativeES5: true,"," win: win,"," global: Function('return this')()"," };",""," //Register the CSS stamp element"," if (doc && !doc.getElementById(CSS_STAMP_EL)) {"," el = doc.createElement('div');"," el.innerHTML = '';"," YUI.Env.cssStampEl = el.firstChild;"," if (doc.body) {"," doc.body.appendChild(YUI.Env.cssStampEl);"," } else {"," docEl.insertBefore(YUI.Env.cssStampEl, docEl.firstChild);"," }"," } else if (doc && doc.getElementById(CSS_STAMP_EL) && !YUI.Env.cssStampEl) {"," YUI.Env.cssStampEl = doc.getElementById(CSS_STAMP_EL);"," }",""," Y.config.lang = Y.config.lang || 'en-US';",""," Y.config.base = YUI.config.base || Y.Env.getBase(Y.Env._BASE_RE);",""," if (!filter || (!('mindebug').indexOf(filter))) {"," filter = 'min';"," }"," filter = (filter) ? '-' + filter : filter;"," Y.config.loaderPath = YUI.config.loaderPath || 'loader/loader' + filter + '.js';",""," },",""," /**"," Finishes the instance setup. Attaches whatever YUI modules were defined"," at the time that this instance was created.",""," @method _setup"," @private"," **/"," _setup: function(o) {"," var i, Y = this,"," core = [],"," mods = YUI.Env.mods,"," extras = Y.config.core || [].concat(YUI.Env.core); //Clone it..",""," for (i = 0; i < extras.length; i++) {"," if (mods[extras[i]]) {"," core.push(extras[i]);"," }"," }",""," Y._attach(['yui-base']);"," Y._attach(core);",""," if (Y.Loader) {"," getLoader(Y);"," }",""," },",""," /**"," Executes the named method on the specified YUI instance if that method is"," whitelisted.",""," @method applyTo"," @param {String} id YUI instance id."," @param {String} method Name of the method to execute. For example:"," 'Object.keys'."," @param {Array} args Arguments to apply to the method."," @return {Mixed} Return value from the applied method, or `null` if the"," specified instance was not found or the method was not whitelisted."," **/"," applyTo: function(id, method, args) {"," if (!(method in APPLY_TO_AUTH)) {"," this.log(method + ': applyTo not allowed', 'warn', 'yui');"," return null;"," }",""," var instance = instances[id], nest, m, i;"," if (instance) {"," nest = method.split('.');"," m = instance;"," for (i = 0; i < nest.length; i = i + 1) {"," m = m[nest[i]];"," if (!m) {"," this.log('applyTo not found: ' + method, 'warn', 'yui');"," }"," }"," return m && m.apply(instance, args);"," }",""," return null;"," },","","/**","Registers a YUI module and makes it available for use in a `YUI().use()` call or","as a dependency for other modules.","","The easiest way to create a first-class YUI module is to use","Shifter, the YUI component build","tool.","","Shifter will automatically wrap your module code in a `YUI.add()` call along","with any configuration info required for the module.","","@example",""," YUI.add('davglass', function (Y) {"," Y.davglass = function () {"," };"," }, '3.4.0', {"," requires: ['harley-davidson', 'mt-dew']"," });","","@method add","@param {String} name Module name.","@param {Function} fn Function containing module code. This function will be"," executed whenever the module is attached to a specific YUI instance.",""," @param {YUI} fn.Y The YUI instance to which this module is attached."," @param {String} fn.name Name of the module","","@param {String} version Module version number. This is currently used only for"," informational purposes, and is not used internally by YUI.","","@param {Object} [config] Module config."," @param {Array} [config.requires] Array of other module names that must be"," attached before this module can be attached."," @param {Array} [config.optional] Array of optional module names that should"," be attached before this module is attached if they've already been"," loaded. If the `loadOptional` YUI option is `true`, optional modules"," that have not yet been loaded will be loaded just as if they were hard"," requirements."," @param {Array} [config.use] Array of module names that are included within"," or otherwise provided by this module, and which should be attached"," automatically when this module is attached. This makes it possible to"," create \"virtual rollup\" modules that simply attach a collection of other"," modules or submodules.","","@return {YUI} This YUI instance.","**/"," add: function(name, fn, version, details) {"," details = details || {};"," var env = YUI.Env,"," mod = {"," name: name,"," fn: fn,"," version: version,"," details: details"," },"," //Instance hash so we don't apply it to the same instance twice"," applied = {},"," loader, inst,"," i, versions = env.versions;",""," env.mods[name] = mod;"," versions[version] = versions[version] || {};"," versions[version][name] = mod;",""," for (i in instances) {"," if (instances.hasOwnProperty(i)) {"," inst = instances[i];"," if (!applied[inst.id]) {"," applied[inst.id] = true;"," loader = inst.Env._loader;"," if (loader) {"," if (!loader.moduleInfo[name] || loader.moduleInfo[name].temp) {"," loader.addModule(details, name);"," }"," }"," }"," }"," }",""," return this;"," },",""," /**"," Executes the callback function associated with each required module,"," attaching the module to this YUI instance.",""," @method _attach"," @param {Array} r The array of modules to attach"," @param {Boolean} [moot=false] If `true`, don't throw a warning if the module"," is not attached."," @private"," **/"," _attach: function(r, moot) {"," var i, name, mod, details, req, use, after,"," mods = YUI.Env.mods,"," aliases = YUI.Env.aliases,"," Y = this, j,"," cache = YUI.Env._renderedMods,"," loader = Y.Env._loader,"," done = Y.Env._attached,"," len = r.length, loader, def, go,"," c = [];",""," //Check for conditional modules (in a second+ instance) and add their requirements"," //TODO I hate this entire method, it needs to be fixed ASAP (3.5.0) ^davglass"," for (i = 0; i < len; i++) {"," name = r[i];"," mod = mods[name];"," c.push(name);"," if (loader && loader.conditions[name]) {"," for (j in loader.conditions[name]) {"," if (loader.conditions[name].hasOwnProperty(j)) {"," def = loader.conditions[name][j];"," go = def && ((def.ua && Y.UA[def.ua]) || (def.test && def.test(Y)));"," if (go) {"," c.push(def.name);"," }"," }"," }"," }"," }"," r = c;"," len = r.length;",""," for (i = 0; i < len; i++) {"," if (!done[r[i]]) {"," name = r[i];"," mod = mods[name];",""," if (aliases && aliases[name] && !mod) {"," Y._attach(aliases[name]);"," continue;"," }"," if (!mod) {"," if (loader && loader.moduleInfo[name]) {"," mod = loader.moduleInfo[name];"," moot = true;"," }","",""," //if (!loader || !loader.moduleInfo[name]) {"," //if ((!loader || !loader.moduleInfo[name]) && !moot) {"," if (!moot && name) {"," if ((name.indexOf('skin-') === -1) && (name.indexOf('css') === -1)) {"," Y.Env._missed.push(name);"," Y.Env._missed = Y.Array.dedupe(Y.Env._missed);"," Y.message('NOT loaded: ' + name, 'warn', 'yui');"," }"," }"," } else {"," done[name] = true;"," //Don't like this, but in case a mod was asked for once, then we fetch it"," //We need to remove it from the missed list ^davglass"," for (j = 0; j < Y.Env._missed.length; j++) {"," if (Y.Env._missed[j] === name) {"," Y.message('Found: ' + name + ' (was reported as missing earlier)', 'warn', 'yui');"," Y.Env._missed.splice(j, 1);"," }"," }"," /*"," If it's a temp module, we need to redo it's requirements if it's already loaded"," since it may have been loaded by another instance and it's dependencies might"," have been redefined inside the fetched file."," */"," if (loader && cache && cache[name] && cache[name].temp) {"," loader.getRequires(cache[name]);"," req = [];"," for (j in loader.moduleInfo[name].expanded_map) {"," if (loader.moduleInfo[name].expanded_map.hasOwnProperty(j)) {"," req.push(j);"," }"," }"," Y._attach(req);"," }",""," details = mod.details;"," req = details.requires;"," use = details.use;"," after = details.after;"," //Force Intl load if there is a language (Loader logic) @todo fix this shit"," if (details.lang) {"," req = req || [];"," req.unshift('intl');"," }",""," if (req) {"," for (j = 0; j < req.length; j++) {"," if (!done[req[j]]) {"," if (!Y._attach(req)) {"," return false;"," }"," break;"," }"," }"," }",""," if (after) {"," for (j = 0; j < after.length; j++) {"," if (!done[after[j]]) {"," if (!Y._attach(after, true)) {"," return false;"," }"," break;"," }"," }"," }",""," if (mod.fn) {"," if (Y.config.throwFail) {"," mod.fn(Y, name);"," } else {"," try {"," mod.fn(Y, name);"," } catch (e) {"," Y.error('Attach error: ' + name, e, name);"," return false;"," }"," }"," }",""," if (use) {"," for (j = 0; j < use.length; j++) {"," if (!done[use[j]]) {"," if (!Y._attach(use)) {"," return false;"," }"," break;"," }"," }"," }","","",""," }"," }"," }",""," return true;"," },",""," /**"," Delays the `use` callback until another event has taken place such as"," `window.onload`, `domready`, `contentready`, or `available`.",""," @private"," @method _delayCallback"," @param {Function} cb The original `use` callback."," @param {String|Object} until Either an event name ('load', 'domready', etc.)"," or an object containing event/args keys for contentready/available."," @return {Function}"," **/"," _delayCallback: function(cb, until) {",""," var Y = this,"," mod = ['event-base'];",""," until = (Y.Lang.isObject(until) ? until : { event: until });",""," if (until.event === 'load') {"," mod.push('event-synthetic');"," }",""," return function() {"," var args = arguments;"," Y._use(mod, function() {"," Y.on(until.event, function() {"," args[1].delayUntil = until.event;"," cb.apply(Y, args);"," }, until.args);"," });"," };"," },",""," /**"," Attaches one or more modules to this YUI instance. When this is executed,"," the requirements of the desired modules are analyzed, and one of several"," things can happen:","",""," * All required modules have already been loaded, and just need to be"," attached to this YUI instance. In this case, the `use()` callback will"," be executed synchronously after the modules are attached.",""," * One or more modules have not yet been loaded, or the Get utility is not"," available, or the `bootstrap` config option is `false`. In this case,"," a warning is issued indicating that modules are missing, but all"," available modules will still be attached and the `use()` callback will"," be executed synchronously.",""," * One or more modules are missing and the Loader is not available but the"," Get utility is, and `bootstrap` is not `false`. In this case, the Get"," utility will be used to load the Loader, and we will then proceed to"," the following state:",""," * One or more modules are missing and the Loader is available. In this"," case, the Loader will be used to resolve the dependency tree for the"," missing modules and load them and their dependencies. When the Loader is"," finished loading modules, the `use()` callback will be executed"," asynchronously.",""," @example",""," // Loads and attaches dd and its dependencies."," YUI().use('dd', function (Y) {"," // ..."," });",""," // Loads and attaches dd and node as well as all of their dependencies."," YUI().use(['dd', 'node'], function (Y) {"," // ..."," });",""," // Attaches all modules that have already been loaded."," YUI().use('*', function (Y) {"," // ..."," });",""," // Attaches a gallery module."," YUI().use('gallery-yql', function (Y) {"," // ..."," });",""," // Attaches a YUI 2in3 module."," YUI().use('yui2-datatable', function (Y) {"," // ..."," });",""," @method use"," @param {String|Array} modules* One or more module names to attach."," @param {Function} [callback] Callback function to be executed once all"," specified modules and their dependencies have been attached."," @param {YUI} callback.Y The YUI instance created for this sandbox."," @param {Object} callback.status Object containing `success`, `msg` and"," `data` properties."," @chainable"," **/"," use: function() {"," var args = SLICE.call(arguments, 0),"," callback = args[args.length - 1],"," Y = this,"," i = 0,"," a = [],"," name,"," Env = Y.Env,"," provisioned = true;",""," // The last argument supplied to use can be a load complete callback"," if (Y.Lang.isFunction(callback)) {"," args.pop();"," if (Y.config.delayUntil) {"," callback = Y._delayCallback(callback, Y.config.delayUntil);"," }"," } else {"," callback = null;"," }"," if (Y.Lang.isArray(args[0])) {"," args = args[0];"," }",""," if (Y.config.cacheUse) {"," while ((name = args[i++])) {"," if (!Env._attached[name]) {"," provisioned = false;"," break;"," }"," }",""," if (provisioned) {"," if (args.length) {"," }"," Y._notify(callback, ALREADY_DONE, args);"," return Y;"," }"," }",""," if (Y._loading) {"," Y._useQueue = Y._useQueue || new Y.Queue();"," Y._useQueue.add([args, callback]);"," } else {"," Y._use(args, function(Y, response) {"," Y._notify(callback, response, args);"," });"," }",""," return Y;"," },",""," /**"," Handles Loader notifications about attachment/load errors.",""," @method _notify"," @param {Function} callback Callback to pass to `Y.config.loadErrorFn`."," @param {Object} response Response returned from Loader."," @param {Array} args Arguments passed from Loader."," @private"," **/"," _notify: function(callback, response, args) {"," if (!response.success && this.config.loadErrorFn) {"," this.config.loadErrorFn.call(this, this, callback, response, args);"," } else if (callback) {"," if (this.Env._missed && this.Env._missed.length) {"," response.msg = 'Missing modules: ' + this.Env._missed.join();"," response.success = false;"," }"," if (this.config.throwFail) {"," callback(this, response);"," } else {"," try {"," callback(this, response);"," } catch (e) {"," this.error('use callback error', e, args);"," }"," }"," }"," },",""," /**"," Called from the `use` method queue to ensure that only one set of loading"," logic is performed at a time.",""," @method _use"," @param {String} args* One or more modules to attach."," @param {Function} [callback] Function to call once all required modules have"," been attached."," @private"," **/"," _use: function(args, callback) {",""," if (!this.Array) {"," this._attach(['yui-base']);"," }",""," var len, loader, handleBoot, handleRLS,"," Y = this,"," G_ENV = YUI.Env,"," mods = G_ENV.mods,"," Env = Y.Env,"," used = Env._used,"," aliases = G_ENV.aliases,"," queue = G_ENV._loaderQueue,"," firstArg = args[0],"," YArray = Y.Array,"," config = Y.config,"," boot = config.bootstrap,"," missing = [],"," i,"," r = [],"," ret = true,"," fetchCSS = config.fetchCSS,"," process = function(names, skip) {",""," var i = 0, a = [], name, len, m, req, use;",""," if (!names.length) {"," return;"," }",""," if (aliases) {"," len = names.length;"," for (i = 0; i < len; i++) {"," if (aliases[names[i]] && !mods[names[i]]) {"," a = [].concat(a, aliases[names[i]]);"," } else {"," a.push(names[i]);"," }"," }"," names = a;"," }",""," len = names.length;",""," for (i = 0; i < len; i++) {"," name = names[i];"," if (!skip) {"," r.push(name);"," }",""," // only attach a module once"," if (used[name]) {"," continue;"," }",""," m = mods[name];"," req = null;"," use = null;",""," if (m) {"," used[name] = true;"," req = m.details.requires;"," use = m.details.use;"," } else {"," // CSS files don't register themselves, see if it has"," // been loaded"," if (!G_ENV._loaded[VERSION][name]) {"," missing.push(name);"," } else {"," used[name] = true; // probably css"," }"," }",""," // make sure requirements are attached"," if (req && req.length) {"," process(req);"," }",""," // make sure we grab the submodule dependencies too"," if (use && use.length) {"," process(use, 1);"," }"," }",""," },",""," handleLoader = function(fromLoader) {"," var response = fromLoader || {"," success: true,"," msg: 'not dynamic'"," },"," redo, origMissing,"," ret = true,"," data = response.data;",""," Y._loading = false;",""," if (data) {"," origMissing = missing;"," missing = [];"," r = [];"," process(data);"," redo = missing.length;"," if (redo) {"," if ([].concat(missing).sort().join() =="," origMissing.sort().join()) {"," redo = false;"," }"," }"," }",""," if (redo && data) {"," Y._loading = true;"," Y._use(missing, function() {"," if (Y._attach(data)) {"," Y._notify(callback, response, data);"," }"," });"," } else {"," if (data) {"," ret = Y._attach(data);"," }"," if (ret) {"," Y._notify(callback, response, args);"," }"," }",""," if (Y._useQueue && Y._useQueue.size() && !Y._loading) {"," Y._use.apply(Y, Y._useQueue.next());"," }",""," };","",""," // YUI().use('*'); // bind everything available"," if (firstArg === '*') {"," args = [];"," for (i in mods) {"," if (mods.hasOwnProperty(i)) {"," args.push(i);"," }"," }"," ret = Y._attach(args);"," if (ret) {"," handleLoader();"," }"," return Y;"," }",""," if ((mods.loader || mods['loader-base']) && !Y.Loader) {"," Y._attach(['loader' + ((!mods.loader) ? '-base' : '')]);"," }","",""," // use loader to expand dependencies and sort the"," // requirements if it is available."," if (boot && Y.Loader && args.length) {"," loader = getLoader(Y);"," loader.require(args);"," loader.ignoreRegistered = true;"," loader._boot = true;"," loader.calculate(null, (fetchCSS) ? null : 'js');"," args = loader.sorted;"," loader._boot = false;"," }",""," process(args);",""," len = missing.length;","",""," if (len) {"," missing = YArray.dedupe(missing);"," len = missing.length;"," }","",""," // dynamic load"," if (boot && len && Y.Loader) {"," Y._loading = true;"," loader = getLoader(Y);"," loader.onEnd = handleLoader;"," loader.context = Y;"," loader.data = args;"," loader.ignoreRegistered = false;"," loader.require(missing);"," loader.insert(null, (fetchCSS) ? null : 'js');",""," } else if (boot && len && Y.Get && !Env.bootstrapped) {",""," Y._loading = true;",""," handleBoot = function() {"," Y._loading = false;"," queue.running = false;"," Env.bootstrapped = true;"," G_ENV._bootstrapping = false;"," if (Y._attach(['loader'])) {"," Y._use(args, callback);"," }"," };",""," if (G_ENV._bootstrapping) {"," queue.add(handleBoot);"," } else {"," G_ENV._bootstrapping = true;"," Y.Get.script(config.base + config.loaderPath, {"," onEnd: handleBoot"," });"," }",""," } else {"," ret = Y._attach(args);"," if (ret) {"," handleLoader();"," }"," }",""," return Y;"," },","",""," /**"," Utility method for safely creating namespaces if they don't already exist."," May be called statically on the YUI global object or as a method on a YUI"," instance.",""," When called statically, a namespace will be created on the YUI global"," object:",""," // Create `YUI.your.namespace.here` as nested objects, preserving any"," // objects that already exist instead of overwriting them."," YUI.namespace('your.namespace.here');",""," When called as a method on a YUI instance, a namespace will be created on"," that instance:",""," // Creates `Y.property.package`."," Y.namespace('property.package');",""," Dots in the input string cause `namespace` to create nested objects for each"," token. If any part of the requested namespace already exists, the current"," object will be left in place and will not be overwritten. This allows"," multiple calls to `namespace` to preserve existing namespaced properties.",""," If the first token in the namespace string is \"YAHOO\", that token is"," discarded. This is legacy behavior for backwards compatibility with YUI 2.",""," Be careful with namespace tokens. Reserved words may work in some browsers"," and not others. For instance, the following will fail in some browsers"," because the supported version of JavaScript reserves the word \"long\":",""," Y.namespace('really.long.nested.namespace');",""," Note: If you pass multiple arguments to create multiple namespaces, only the"," last one created is returned from this function.",""," @method namespace"," @param {String} namespace* One or more namespaces to create."," @return {Object} Reference to the last namespace object created."," **/"," namespace: function() {"," var a = arguments, o, i = 0, j, d, arg;",""," for (; i < a.length; i++) {"," o = this; //Reset base object per argument or it will get reused from the last"," arg = a[i];"," if (arg.indexOf(PERIOD) > -1) { //Skip this if no \".\" is present"," d = arg.split(PERIOD);"," for (j = (d[0] == 'YAHOO') ? 1 : 0; j < d.length; j++) {"," o[d[j]] = o[d[j]] || {};"," o = o[d[j]];"," }"," } else {"," o[arg] = o[arg] || {};"," o = o[arg]; //Reset base object to the new object so it's returned"," }"," }"," return o;"," },",""," // this is replaced if the log module is included"," log: NOOP,"," message: NOOP,"," // this is replaced if the dump module is included"," dump: function (o) { return ''+o; },",""," /**"," Reports an error.",""," The reporting mechanism is controlled by the `throwFail` configuration"," attribute. If `throwFail` is falsy, the message is logged. If `throwFail` is"," truthy, a JS exception is thrown.",""," If an `errorFn` is specified in the config it must return `true` to indicate"," that the exception was handled and keep it from being thrown.",""," @method error"," @param {String} msg Error message."," @param {Error|String} [e] JavaScript error object or an error string."," @param {String} [src] Source of the error (such as the name of the module in"," which the error occurred)."," @chainable"," **/"," error: function(msg, e, src) {"," //TODO Add check for window.onerror here",""," var Y = this, ret;",""," if (Y.config.errorFn) {"," ret = Y.config.errorFn.apply(Y, arguments);"," }",""," if (!ret) {"," throw (e || new Error(msg));"," } else {"," Y.message(msg, 'error', ''+src); // don't scrub this one"," }",""," return Y;"," },",""," /**"," Generates an id string that is unique among all YUI instances in this"," execution context.",""," @method guid"," @param {String} [pre] Prefix."," @return {String} Unique id."," **/"," guid: function(pre) {"," var id = this.Env._guidp + '_' + (++this.Env._uidx);"," return (pre) ? (pre + id) : id;"," },",""," /**"," Returns a unique id associated with the given object and (if *readOnly* is"," falsy) stamps the object with that id so it can be identified in the future.",""," Stamping an object involves adding a `_yuid` property to it that contains"," the object's id. One exception to this is that in Internet Explorer, DOM"," nodes have a `uniqueID` property that contains a browser-generated unique"," id, which will be used instead of a YUI-generated id when available.",""," @method stamp"," @param {Object} o Object to stamp."," @param {Boolean} readOnly If truthy and the given object has not already"," been stamped, the object will not be modified and `null` will be"," returned."," @return {String} Object's unique id, or `null` if *readOnly* was truthy and"," the given object was not already stamped."," **/"," stamp: function(o, readOnly) {"," var uid;"," if (!o) {"," return o;"," }",""," // IE generates its own unique ID for dom nodes"," // The uniqueID property of a document node returns a new ID"," if (o.uniqueID && o.nodeType && o.nodeType !== 9) {"," uid = o.uniqueID;"," } else {"," uid = (typeof o === 'string') ? o : o._yuid;"," }",""," if (!uid) {"," uid = this.guid();"," if (!readOnly) {"," try {"," o._yuid = uid;"," } catch (e) {"," uid = null;"," }"," }"," }"," return uid;"," },",""," /**"," Destroys this YUI instance.",""," @method destroy"," @since 3.3.0"," **/"," destroy: function() {"," var Y = this;"," if (Y.Event) {"," Y.Event._unload();"," }"," delete instances[Y.id];"," delete Y.Env;"," delete Y.config;"," }",""," /**"," Safe `instanceof` wrapper that works around a memory leak in IE when the"," object being tested is `window` or `document`.",""," Unless you are testing objects that may be `window` or `document`, you"," should use the native `instanceof` operator instead of this method.",""," @method instanceOf"," @param {Object} o Object to check."," @param {Object} type Class to check against."," @since 3.3.0"," **/","};",""," YUI.prototype = proto;",""," // inheritance utilities are not available yet"," for (prop in proto) {"," if (proto.hasOwnProperty(prop)) {"," YUI[prop] = proto[prop];"," }"," }",""," /**"," Applies a configuration to all YUI instances in this execution context.",""," The main use case for this method is in \"mashups\" where several third-party"," scripts need to write to a global YUI config, but cannot share a single"," centrally-managed config object. This way they can all call"," `YUI.applyConfig({})` instead of overwriting the single global config.",""," @example",""," YUI.applyConfig({"," modules: {"," davglass: {"," fullpath: './davglass.js'"," }"," }"," });",""," YUI.applyConfig({"," modules: {"," foo: {"," fullpath: './foo.js'"," }"," }"," });",""," YUI().use('davglass', function (Y) {"," // Module davglass will be available here."," });",""," @method applyConfig"," @param {Object} o Configuration object to apply."," @static"," @since 3.5.0"," **/"," YUI.applyConfig = function(o) {"," if (!o) {"," return;"," }"," //If there is a GlobalConfig, apply it first to set the defaults"," if (YUI.GlobalConfig) {"," this.prototype.applyConfig.call(this, YUI.GlobalConfig);"," }"," //Apply this config to it"," this.prototype.applyConfig.call(this, o);"," //Reset GlobalConfig to the combined config"," YUI.GlobalConfig = this.config;"," };",""," // set up the environment"," YUI._init();",""," if (hasWin) {"," // add a window load event at load time so we can capture"," // the case where it fires before dynamic loading is"," // complete."," add(window, 'load', handleLoad);"," } else {"," handleLoad();"," }",""," YUI.Env.add = add;"," YUI.Env.remove = remove;",""," /*global exports*/"," // Support the CommonJS method for exporting our single global"," if (typeof exports == 'object') {"," exports.YUI = YUI;"," }","","}());","","","/**","Config object that contains all of the configuration options for","this `YUI` instance.","","This object is supplied by the implementer when instantiating YUI. Some","properties have default values if they are not supplied by the implementer.","","This object should not be updated directly because some values are cached. Use","`applyConfig()` to update the config object on a YUI instance that has already","been configured.","","@class config","@static","**/","","/**","If `true` (the default), YUI will \"bootstrap\" the YUI Loader and module metadata","if they're needed to load additional dependencies and aren't already available.","","Setting this to `false` will prevent YUI from automatically loading the Loader","and module metadata, so you will need to manually ensure that they're available","or handle dependency resolution yourself.","","@property {Boolean} bootstrap","@default true","**/","","/**","","@property {Object} aliases","**/","","/**","A hash of module group definitions.","","For each group you can specify a list of modules and the base path and","combo spec to use when dynamically loading the modules.","","@example",""," groups: {"," yui2: {"," // specify whether or not this group has a combo service"," combine: true,",""," // The comboSeperator to use with this group's combo handler"," comboSep: ';',",""," // The maxURLLength for this server"," maxURLLength: 500,",""," // the base path for non-combo paths"," base: 'http://yui.yahooapis.com/2.8.0r4/build/',",""," // the path to the combo service"," comboBase: 'http://yui.yahooapis.com/combo?',",""," // a fragment to prepend to the path attribute when"," // when building combo urls"," root: '2.8.0r4/build/',",""," // the module definitions"," modules: {"," yui2_yde: {"," path: \"yahoo-dom-event/yahoo-dom-event.js\""," },"," yui2_anim: {"," path: \"animation/animation.js\","," requires: ['yui2_yde']"," }"," }"," }"," }","","@property {Object} groups","**/","","/**","Path to the Loader JS file, relative to the `base` path.","","This is used to dynamically bootstrap the Loader when it's needed and isn't yet","available.","","@property {String} loaderPath","@default \"loader/loader-min.js\"","**/","","/**","If `true`, YUI will attempt to load CSS dependencies and skins. Set this to","`false` to prevent YUI from loading any CSS, or set it to the string `\"force\"`","to force CSS dependencies to be loaded even if their associated JS modules are","already loaded.","","@property {Boolean|String} fetchCSS","@default true","**/","","/**","Default gallery version used to build gallery module urls.","","@property {String} gallery","@since 3.1.0","**/","","/**","Default YUI 2 version used to build YUI 2 module urls.","","This is used for intrinsic YUI 2 support via the 2in3 project. Also see the","`2in3` config for pulling different revisions of the wrapped YUI 2 modules.","","@property {String} yui2","@default \"2.9.0\"","@since 3.1.0","**/","","/**","Revision number of YUI 2in3 modules that should be used when loading YUI 2in3.","","@property {String} 2in3","@default \"4\"","@since 3.1.0","**/","","/**","Alternate console log function that should be used in environments without a","supported native console. This function is executed with the YUI instance as its","`this` object.","","@property {Function} logFn","@since 3.1.0","**/","","/**","Callback to execute when `Y.error()` is called. It receives the error message","and a JavaScript error object if one was provided.","","This function is executed with the YUI instance as its `this` object.","","Returning `true` from this function will prevent an exception from being thrown.","","@property {Function} errorFn","@param {String} errorFn.msg Error message","@param {Object} [errorFn.err] Error object (if one was provided).","@since 3.2.0","**/","","/**","A callback to execute when Loader fails to load one or more resources.","","This could be because of a script load failure. It could also be because a","module fails to register itself when the `requireRegistration` config is `true`.","","If this function is defined, the `use()` callback will only be called when the","loader succeeds. Otherwise, `use()` will always executes unless there was a","JavaScript error when attaching a module.","","@property {Function} loadErrorFn","@since 3.3.0","**/","","/**","If `true`, Loader will expect all loaded scripts to be first-class YUI modules","that register themselves with the YUI global, and will trigger a failure if a","loaded script does not register a YUI module.","","@property {Boolean} requireRegistration","@default false","@since 3.3.0","**/","","/**","Cache serviced use() requests.","","@property {Boolean} cacheUse","@default true","@since 3.3.0","@deprecated No longer used.","**/","","/**","Whether or not YUI should use native ES5 functionality when available for","features like `Y.Array.each()`, `Y.Object()`, etc.","","When `false`, YUI will always use its own fallback implementations instead of","relying on ES5 functionality, even when ES5 functionality is available.","","@property {Boolean} useNativeES5","@default true","@since 3.5.0","**/","","/**","<<<<<<< HEAD","Event to wait for before executing the `use()` callback.","","The following events are supported:",""," - available"," - contentready"," - domready"," - load","","The event may be specified as a string or as an object hash that provides","additional event configuration, as illustrated in the example below.","","======="," * Leverage native JSON stringify if the browser has a native"," * implementation. In general, this is a good idea. See the Known Issues"," * section in the JSON user guide for caveats. The default value is true"," * for browsers with native JSON support."," *"," * @property useNativeJSONStringify"," * @type Boolean"," * @default true"," * @since 3.8.0"," */",""," /**"," * Leverage native JSON parse if the browser has a native implementation."," * In general, this is a good idea. See the Known Issues section in the"," * JSON user guide for caveats. The default value is true for browsers with"," * native JSON support."," *"," * @property useNativeJSONParse"," * @type Boolean"," * @default true"," * @since 3.8.0"," */","","/**","Delay the `use` callback until a specific event has passed (`load`, `domready`, `contentready` or `available`)","@property delayUntil","@type String|Object","@since 3.6.0",">>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4","@example","","You can use `load` or `domready` strings by default:",""," YUI({"," delayUntil: 'domready'"," }, function (Y) {"," // This will not execute until 'domeready' occurs."," });","","Or you can delay until a node is available (with `available` or `contentready`):",""," YUI({"," delayUntil: {"," event: 'available',"," args : '#foo'"," }"," }, function (Y) {"," // This will not execute until a node matching the selector \"#foo\" is"," // available in the DOM."," });","","@property {Object|String} delayUntil","@since 3.6.0","**/","YUI.add('yui-base', function (Y, NAME) {","","/*"," * YUI stub"," * @module yui"," * @submodule yui-base"," */","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * Provides core language utilites and extensions used throughout YUI."," *"," * @class Lang"," * @static"," */","","var L = Y.Lang || (Y.Lang = {}),","","STRING_PROTO = String.prototype,","TOSTRING = Object.prototype.toString,","","TYPES = {"," 'undefined' : 'undefined',"," 'number' : 'number',"," 'boolean' : 'boolean',"," 'string' : 'string',"," '[object Function]': 'function',"," '[object RegExp]' : 'regexp',"," '[object Array]' : 'array',"," '[object Date]' : 'date',"," '[object Error]' : 'error'","},","","SUBREGEX = /\\{\\s*([^|}]+?)\\s*(?:\\|([^}]*))?\\s*\\}/g,","TRIMREGEX = /^\\s+|\\s+$/g,","NATIVE_FN_REGEX = /\\{\\s*\\[(?:native code|function)\\]\\s*\\}/i;","","// -- Protected Methods --------------------------------------------------------","","/**","Returns `true` if the given function appears to be implemented in native code,","`false` otherwise. Will always return `false` -- even in ES5-capable browsers --","if the `useNativeES5` YUI config option is set to `false`.","","This isn't guaranteed to be 100% accurate and won't work for anything other than","functions, but it can be useful for determining whether a function like","`Array.prototype.forEach` is native or a JS shim provided by another library.","","There's a great article by @kangax discussing certain flaws with this technique:","","","While his points are valid, it's still possible to benefit from this function","as long as it's used carefully and sparingly, and in such a way that false","negatives have minimal consequences. It's used internally to avoid using","potentially broken non-native ES5 shims that have been added to the page by","other libraries.","","@method _isNative","@param {Function} fn Function to test.","@return {Boolean} `true` if _fn_ appears to be native, `false` otherwise.","@static","@protected","@since 3.5.0","**/","L._isNative = function (fn) {"," return !!(Y.config.useNativeES5 && fn && NATIVE_FN_REGEX.test(fn));","};","","// -- Public Methods -----------------------------------------------------------","","/**"," * Determines whether or not the provided item is an array."," *"," * Returns `false` for array-like collections such as the function `arguments`"," * collection or `HTMLElement` collections. Use `Y.Array.test()` if you want to"," * test for an array-like collection."," *"," * @method isArray"," * @param o The object to test."," * @return {boolean} true if o is an array."," * @static"," */","L.isArray = L._isNative(Array.isArray) ? Array.isArray : function (o) {"," return L.type(o) === 'array';","};","","/**"," * Determines whether or not the provided item is a boolean."," * @method isBoolean"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a boolean."," */","L.isBoolean = function(o) {"," return typeof o === 'boolean';","};","","/**"," * Determines whether or not the supplied item is a date instance."," * @method isDate"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a date."," */","L.isDate = function(o) {"," return L.type(o) === 'date' && o.toString() !== 'Invalid Date' && !isNaN(o);","};","","/**"," *

"," * Determines whether or not the provided item is a function."," * Note: Internet Explorer thinks certain functions are objects:"," *

"," *"," *
"," * var obj = document.createElement(\"object\");"," * Y.Lang.isFunction(obj.getAttribute) // reports false in IE"," *  "," * var input = document.createElement(\"input\"); // append to body"," * Y.Lang.isFunction(input.focus) // reports false in IE"," * 
"," *"," *

"," * You will have to implement additional tests if these functions"," * matter to you."," *

"," *"," * @method isFunction"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a function."," */","L.isFunction = function(o) {"," return L.type(o) === 'function';","};","","/**"," * Determines whether or not the provided item is null."," * @method isNull"," * @static"," * @param o The object to test."," * @return {boolean} true if o is null."," */","L.isNull = function(o) {"," return o === null;","};","","/**"," * Determines whether or not the provided item is a legal number."," * @method isNumber"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a number."," */","L.isNumber = function(o) {"," return typeof o === 'number' && isFinite(o);","};","","/**"," * Determines whether or not the provided item is of type object"," * or function. Note that arrays are also objects, so"," * Y.Lang.isObject([]) === true."," * @method isObject"," * @static"," * @param o The object to test."," * @param failfn {boolean} fail if the input is a function."," * @return {boolean} true if o is an object."," * @see isPlainObject"," */","L.isObject = function(o, failfn) {"," var t = typeof o;"," return (o && (t === 'object' ||"," (!failfn && (t === 'function' || L.isFunction(o))))) || false;","};","","/**"," * Determines whether or not the provided item is a string."," * @method isString"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a string."," */","L.isString = function(o) {"," return typeof o === 'string';","};","","/**"," * Determines whether or not the provided item is undefined."," * @method isUndefined"," * @static"," * @param o The object to test."," * @return {boolean} true if o is undefined."," */","L.isUndefined = function(o) {"," return typeof o === 'undefined';","};","","/**"," * A convenience method for detecting a legitimate non-null value."," * Returns false for null/undefined/NaN, true for other values,"," * including 0/false/''"," * @method isValue"," * @static"," * @param o The item to test."," * @return {boolean} true if it is not null/undefined/NaN || false."," */","L.isValue = function(o) {"," var t = L.type(o);",""," switch (t) {"," case 'number':"," return isFinite(o);",""," case 'null': // fallthru"," case 'undefined':"," return false;",""," default:"," return !!t;"," }","};","","/**"," * Returns the current time in milliseconds."," *"," * @method now"," * @return {Number} Current time in milliseconds."," * @static"," * @since 3.3.0"," */","L.now = Date.now || function () {"," return new Date().getTime();","};","","/**"," * Lightweight version of Y.substitute. Uses the same template"," * structure as Y.substitute, but doesn't support recursion,"," * auto-object coersion, or formats."," * @method sub"," * @param {string} s String to be modified."," * @param {object} o Object containing replacement values."," * @return {string} the substitute result."," * @static"," * @since 3.2.0"," */","L.sub = function(s, o) {"," return s.replace ? s.replace(SUBREGEX, function (match, key) {"," return L.isUndefined(o[key]) ? match : o[key];"," }) : s;","};","","/**"," * Returns a string without any leading or trailing whitespace. If"," * the input is not a string, the input will be returned untouched."," * @method trim"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trim = STRING_PROTO.trim ? function(s) {"," return s && s.trim ? s.trim() : s;","} : function (s) {"," try {"," return s.replace(TRIMREGEX, '');"," } catch (e) {"," return s;"," }","};","","/**"," * Returns a string without any leading whitespace."," * @method trimLeft"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trimLeft = STRING_PROTO.trimLeft ? function (s) {"," return s.trimLeft();","} : function (s) {"," return s.replace(/^\\s+/, '');","};","","/**"," * Returns a string without any trailing whitespace."," * @method trimRight"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trimRight = STRING_PROTO.trimRight ? function (s) {"," return s.trimRight();","} : function (s) {"," return s.replace(/\\s+$/, '');","};","","/**","Returns one of the following strings, representing the type of the item passed","in:",""," * \"array\""," * \"boolean\""," * \"date\""," * \"error\""," * \"function\""," * \"null\""," * \"number\""," * \"object\""," * \"regexp\""," * \"string\""," * \"undefined\"","","Known issues:",""," * `typeof HTMLElementCollection` returns function in Safari, but"," `Y.Lang.type()` reports \"object\", which could be a good thing --"," but it actually caused the logic in Y.Lang.isObject to fail.","","@method type","@param o the item to test.","@return {string} the detected type.","@static","**/","L.type = function(o) {"," return TYPES[typeof o] || TYPES[TOSTRING.call(o)] || (o ? 'object' : 'null');","};","/**","@module yui","@submodule yui-base","*/","","var Lang = Y.Lang,"," Native = Array.prototype,",""," hasOwn = Object.prototype.hasOwnProperty;","","/**","Provides utility methods for working with arrays. Additional array helpers can","be found in the `collection` and `array-extras` modules.","","`Y.Array(thing)` returns a native array created from _thing_. Depending on","_thing_'s type, one of the following will happen:",""," * Arrays are returned unmodified unless a non-zero _startIndex_ is"," specified."," * Array-like collections (see `Array.test()`) are converted to arrays."," * For everything else, a new array is created with _thing_ as the sole"," item.","","Note: elements that are also collections, such as `
` and ``, to be array-like.","","@method test","@param {Object} obj Object to test.","@return {Number} A number indicating the results of the test:",""," * 0: Neither an array nor an array-like collection."," * 1: Real array."," * 2: Array-like collection.","","@static","**/","YArray.test = function (obj) {"," var result = 0;",""," if (Lang.isArray(obj)) {"," result = 1;"," } else if (Lang.isObject(obj)) {"," try {"," // indexed, but no tagName (element) or scrollTo/document (window. From DOM.isWindow test which we can't use here),"," // or functions without apply/call (Safari"," // HTMLElementCollection bug)."," if ('length' in obj && !obj.tagName && !(obj.scrollTo && obj.document) && !obj.apply) {"," result = 2;"," }"," } catch (ex) {}"," }",""," return result;","};","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * A simple FIFO queue. Items are added to the Queue with add(1..n items) and"," * removed using next()."," *"," * @class Queue"," * @constructor"," * @param {MIXED} item* 0..n items to seed the queue."," */","function Queue() {"," this._init();"," this.add.apply(this, arguments);","}","","Queue.prototype = {"," /**"," * Initialize the queue"," *"," * @method _init"," * @protected"," */"," _init: function() {"," /**"," * The collection of enqueued items"," *"," * @property _q"," * @type Array"," * @protected"," */"," this._q = [];"," },",""," /**"," * Get the next item in the queue. FIFO support"," *"," * @method next"," * @return {MIXED} the next item in the queue."," */"," next: function() {"," return this._q.shift();"," },",""," /**"," * Get the last in the queue. LIFO support."," *"," * @method last"," * @return {MIXED} the last item in the queue."," */"," last: function() {"," return this._q.pop();"," },",""," /**"," * Add 0..n items to the end of the queue."," *"," * @method add"," * @param {MIXED} item* 0..n items."," * @return {object} this queue."," */"," add: function() {"," this._q.push.apply(this._q, arguments);",""," return this;"," },",""," /**"," * Returns the current number of queued items."," *"," * @method size"," * @return {Number} The size."," */"," size: function() {"," return this._q.length;"," }","};","","Y.Queue = Queue;","","YUI.Env._loaderQueue = YUI.Env._loaderQueue || new Queue();","","/**","The YUI module contains the components required for building the YUI seed file.","This includes the script loading mechanism, a simple queue, and the core","utilities for the library.","","@module yui","@submodule yui-base","**/","","var CACHED_DELIMITER = '__',",""," hasOwn = Object.prototype.hasOwnProperty,"," isObject = Y.Lang.isObject;","","/**","Returns a wrapper for a function which caches the return value of that function,","keyed off of the combined string representation of the argument values provided","when the wrapper is called.","","Calling this function again with the same arguments will return the cached value","rather than executing the wrapped function.","","Note that since the cache is keyed off of the string representation of arguments","passed to the wrapper function, arguments that aren't strings and don't provide","a meaningful `toString()` method may result in unexpected caching behavior. For","example, the objects `{}` and `{foo: 'bar'}` would both be converted to the","string `[object Object]` when used as a cache key.","","@method cached","@param {Function} source The function to memoize.","@param {Object} [cache={}] Object in which to store cached values. You may seed"," this object with pre-existing cached values if desired.","@param {any} [refetch] If supplied, this value is compared with the cached value"," using a `==` comparison. If the values are equal, the wrapped function is"," executed again even though a cached value exists.","@return {Function} Wrapped function.","@for YUI","**/","Y.cached = function (source, cache, refetch) {"," cache || (cache = {});",""," return function (arg) {"," var key = arguments.length > 1 ?"," Array.prototype.join.call(arguments, CACHED_DELIMITER) :"," String(arg);",""," if (!(key in cache) || (refetch && cache[key] == refetch)) {"," cache[key] = source.apply(source, arguments);"," }",""," return cache[key];"," };","};","","/**","Returns the `location` object from the window/frame in which this YUI instance","operates, or `undefined` when executing in a non-browser environment","(e.g. Node.js).","","It is _not_ recommended to hold references to the `window.location` object","outside of the scope of a function in which its properties are being accessed or","its methods are being called. This is because of a nasty bug/issue that exists","in both Safari and MobileSafari browsers:","[WebKit Bug 34679](https://bugs.webkit.org/show_bug.cgi?id=34679).","","@method getLocation","@return {location} The `location` object from the window/frame in which this YUI"," instance operates.","@since 3.5.0","**/","Y.getLocation = function () {"," // It is safer to look this up every time because yui-base is attached to a"," // YUI instance before a user's config is applied; i.e. `Y.config.win` does"," // not point the correct window object when this file is loaded."," var win = Y.config.win;",""," // It is not safe to hold a reference to the `location` object outside the"," // scope in which it is being used. The WebKit engine used in Safari and"," // MobileSafari will \"disconnect\" the `location` object from the `window`"," // when a page is restored from back/forward history cache."," return win && win.location;","};","","/**","Returns a new object containing all of the properties of all the supplied","objects. The properties from later objects will overwrite those in earlier","objects.","","Passing in a single object will create a shallow copy of it. For a deep copy,","use `clone()`.","","@method merge","@param {Object} objects* One or more objects to merge.","@return {Object} A new merged object.","**/","Y.merge = function () {"," var i = 0,"," len = arguments.length,"," result = {},"," key,"," obj;",""," for (; i < len; ++i) {"," obj = arguments[i];",""," for (key in obj) {"," if (hasOwn.call(obj, key)) {"," result[key] = obj[key];"," }"," }"," }",""," return result;","};","","/**","Mixes _supplier_'s properties into _receiver_.","","Properties on _receiver_ or _receiver_'s prototype will not be overwritten or","shadowed unless the _overwrite_ parameter is `true`, and will not be merged","unless the _merge_ parameter is `true`.","","In the default mode (0), only properties the supplier owns are copied (prototype","properties are not copied). The following copying modes are available:",""," * `0`: _Default_. Object to object."," * `1`: Prototype to prototype."," * `2`: Prototype to prototype and object to object."," * `3`: Prototype to object."," * `4`: Object to prototype.","","@method mix","@param {Function|Object} receiver The object or function to receive the mixed"," properties.","@param {Function|Object} supplier The object or function supplying the"," properties to be mixed.","@param {Boolean} [overwrite=false] If `true`, properties that already exist"," on the receiver will be overwritten with properties from the supplier.","@param {String[]} [whitelist] An array of property names to copy. If"," specified, only the whitelisted properties will be copied, and all others"," will be ignored.","@param {Number} [mode=0] Mix mode to use. See above for available modes.","@param {Boolean} [merge=false] If `true`, objects and arrays that already"," exist on the receiver will have the corresponding object/array from the"," supplier merged into them, rather than being skipped or overwritten. When"," both _overwrite_ and _merge_ are `true`, _merge_ takes precedence.","@return {Function|Object|YUI} The receiver, or the YUI instance if the"," specified receiver is falsy.","**/","Y.mix = function(receiver, supplier, overwrite, whitelist, mode, merge) {"," var alwaysOverwrite, exists, from, i, key, len, to;",""," // If no supplier is given, we return the receiver. If no receiver is given,"," // we return Y. Returning Y doesn't make much sense to me, but it's"," // grandfathered in for backcompat reasons."," if (!receiver || !supplier) {"," return receiver || Y;"," }",""," if (mode) {"," // In mode 2 (prototype to prototype and object to object), we recurse"," // once to do the proto to proto mix. The object to object mix will be"," // handled later on."," if (mode === 2) {"," Y.mix(receiver.prototype, supplier.prototype, overwrite,"," whitelist, 0, merge);"," }",""," // Depending on which mode is specified, we may be copying from or to"," // the prototypes of the supplier and receiver."," from = mode === 1 || mode === 3 ? supplier.prototype : supplier;"," to = mode === 1 || mode === 4 ? receiver.prototype : receiver;",""," // If either the supplier or receiver doesn't actually have a"," // prototype property, then we could end up with an undefined `from`"," // or `to`. If that happens, we abort and return the receiver."," if (!from || !to) {"," return receiver;"," }"," } else {"," from = supplier;"," to = receiver;"," }",""," // If `overwrite` is truthy and `merge` is falsy, then we can skip a"," // property existence check on each iteration and save some time."," alwaysOverwrite = overwrite && !merge;",""," if (whitelist) {"," for (i = 0, len = whitelist.length; i < len; ++i) {"," key = whitelist[i];",""," // We call `Object.prototype.hasOwnProperty` instead of calling"," // `hasOwnProperty` on the object itself, since the object's"," // `hasOwnProperty` method may have been overridden or removed."," // Also, some native objects don't implement a `hasOwnProperty`"," // method."," if (!hasOwn.call(from, key)) {"," continue;"," }",""," // The `key in to` check here is (sadly) intentional for backwards"," // compatibility reasons. It prevents undesired shadowing of"," // prototype members on `to`."," exists = alwaysOverwrite ? false : key in to;",""," if (merge && exists && isObject(to[key], true)"," && isObject(from[key], true)) {"," // If we're in merge mode, and the key is present on both"," // objects, and the value on both objects is either an object or"," // an array (but not a function), then we recurse to merge the"," // `from` value into the `to` value instead of overwriting it."," //"," // Note: It's intentional that the whitelist isn't passed to the"," // recursive call here. This is legacy behavior that lots of"," // code still depends on."," Y.mix(to[key], from[key], overwrite, null, 0, merge);"," } else if (overwrite || !exists) {"," // We're not in merge mode, so we'll only copy the `from` value"," // to the `to` value if we're in overwrite mode or if the"," // current key doesn't exist on the `to` object."," to[key] = from[key];"," }"," }"," } else {"," for (key in from) {"," // The code duplication here is for runtime performance reasons."," // Combining whitelist and non-whitelist operations into a single"," // loop or breaking the shared logic out into a function both result"," // in worse performance, and Y.mix is critical enough that the byte"," // tradeoff is worth it."," if (!hasOwn.call(from, key)) {"," continue;"," }",""," // The `key in to` check here is (sadly) intentional for backwards"," // compatibility reasons. It prevents undesired shadowing of"," // prototype members on `to`."," exists = alwaysOverwrite ? false : key in to;",""," if (merge && exists && isObject(to[key], true)"," && isObject(from[key], true)) {"," Y.mix(to[key], from[key], overwrite, null, 0, merge);"," } else if (overwrite || !exists) {"," to[key] = from[key];"," }"," }",""," // If this is an IE browser with the JScript enumeration bug, force"," // enumeration of the buggy properties by making a recursive call with"," // the buggy properties as the whitelist."," if (Y.Object._hasEnumBug) {"," Y.mix(to, from, overwrite, Y.Object._forceEnum, mode, merge);"," }"," }",""," return receiver;","};","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * Adds utilities to the YUI instance for working with objects."," *"," * @class Object"," */","","var Lang = Y.Lang,"," hasOwn = Object.prototype.hasOwnProperty,",""," UNDEFINED, // <-- Note the comma. We're still declaring vars.","","/**"," * Returns a new object that uses _obj_ as its prototype. This method wraps the"," * native ES5 `Object.create()` method if available, but doesn't currently"," * pass through `Object.create()`'s second argument (properties) in order to"," * ensure compatibility with older browsers."," *"," * @method ()"," * @param {Object} obj Prototype object."," * @return {Object} New object using _obj_ as its prototype."," * @static"," */","O = Y.Object = Lang._isNative(Object.create) ? function (obj) {"," // We currently wrap the native Object.create instead of simply aliasing it"," // to ensure consistency with our fallback shim, which currently doesn't"," // support Object.create()'s second argument (properties). Once we have a"," // safe fallback for the properties arg, we can stop wrapping"," // Object.create()."," return Object.create(obj);","} : (function () {"," // Reusable constructor function for the Object.create() shim."," function F() {}",""," // The actual shim."," return function (obj) {"," F.prototype = obj;"," return new F();"," };","}()),","","/**"," * Property names that IE doesn't enumerate in for..in loops, even when they"," * should be enumerable. When `_hasEnumBug` is `true`, it's necessary to"," * manually enumerate these properties."," *"," * @property _forceEnum"," * @type String[]"," * @protected"," * @static"," */","forceEnum = O._forceEnum = ["," 'hasOwnProperty',"," 'isPrototypeOf',"," 'propertyIsEnumerable',"," 'toString',"," 'toLocaleString',"," 'valueOf'","],","","/**"," * `true` if this browser has the JScript enumeration bug that prevents"," * enumeration of the properties named in the `_forceEnum` array, `false`"," * otherwise."," *"," * See:"," * - "," * - "," *"," * @property _hasEnumBug"," * @type Boolean"," * @protected"," * @static"," */","hasEnumBug = O._hasEnumBug = !{valueOf: 0}.propertyIsEnumerable('valueOf'),","","/**"," * `true` if this browser incorrectly considers the `prototype` property of"," * functions to be enumerable. Currently known to affect Opera 11.50."," *"," * @property _hasProtoEnumBug"," * @type Boolean"," * @protected"," * @static"," */","hasProtoEnumBug = O._hasProtoEnumBug = (function () {}).propertyIsEnumerable('prototype'),","","/**"," * Returns `true` if _key_ exists on _obj_, `false` if _key_ doesn't exist or"," * exists only on _obj_'s prototype. This is essentially a safer version of"," * `obj.hasOwnProperty()`."," *"," * @method owns"," * @param {Object} obj Object to test."," * @param {String} key Property name to look for."," * @return {Boolean} `true` if _key_ exists on _obj_, `false` otherwise."," * @static"," */","owns = O.owns = function (obj, key) {"," return !!obj && hasOwn.call(obj, key);","}; // <-- End of var declarations.","","/**"," * Alias for `owns()`."," *"," * @method hasKey"," * @param {Object} obj Object to test."," * @param {String} key Property name to look for."," * @return {Boolean} `true` if _key_ exists on _obj_, `false` otherwise."," * @static"," */","O.hasKey = owns;","","/**"," * Returns an array containing the object's enumerable keys. Does not include"," * prototype keys or non-enumerable keys."," *"," * Note that keys are returned in enumeration order (that is, in the same order"," * that they would be enumerated by a `for-in` loop), which may not be the same"," * as the order in which they were defined."," *"," * This method is an alias for the native ES5 `Object.keys()` method if"," * available."," *"," * @example"," *"," * Y.Object.keys({a: 'foo', b: 'bar', c: 'baz'});"," * // => ['a', 'b', 'c']"," *"," * @method keys"," * @param {Object} obj An object."," * @return {String[]} Array of keys."," * @static"," */","O.keys = Lang._isNative(Object.keys) ? Object.keys : function (obj) {"," if (!Lang.isObject(obj)) {"," throw new TypeError('Object.keys called on a non-object');"," }",""," var keys = [],"," i, key, len;",""," if (hasProtoEnumBug && typeof obj === 'function') {"," for (key in obj) {"," if (owns(obj, key) && key !== 'prototype') {"," keys.push(key);"," }"," }"," } else {"," for (key in obj) {"," if (owns(obj, key)) {"," keys.push(key);"," }"," }"," }",""," if (hasEnumBug) {"," for (i = 0, len = forceEnum.length; i < len; ++i) {"," key = forceEnum[i];",""," if (owns(obj, key)) {"," keys.push(key);"," }"," }"," }",""," return keys;","};","","/**"," * Returns an array containing the values of the object's enumerable keys."," *"," * Note that values are returned in enumeration order (that is, in the same"," * order that they would be enumerated by a `for-in` loop), which may not be the"," * same as the order in which they were defined."," *"," * @example"," *"," * Y.Object.values({a: 'foo', b: 'bar', c: 'baz'});"," * // => ['foo', 'bar', 'baz']"," *"," * @method values"," * @param {Object} obj An object."," * @return {Array} Array of values."," * @static"," */","O.values = function (obj) {"," var keys = O.keys(obj),"," i = 0,"," len = keys.length,"," values = [];",""," for (; i < len; ++i) {"," values.push(obj[keys[i]]);"," }",""," return values;","};","","/**"," * Returns the number of enumerable keys owned by an object."," *"," * @method size"," * @param {Object} obj An object."," * @return {Number} The object's size."," * @static"," */","O.size = function (obj) {"," try {"," return O.keys(obj).length;"," } catch (ex) {"," return 0; // Legacy behavior for non-objects."," }","};","","/**"," * Returns `true` if the object owns an enumerable property with the specified"," * value."," *"," * @method hasValue"," * @param {Object} obj An object."," * @param {any} value The value to search for."," * @return {Boolean} `true` if _obj_ contains _value_, `false` otherwise."," * @static"," */","O.hasValue = function (obj, value) {"," return Y.Array.indexOf(O.values(obj), value) > -1;","};","","/**"," * Executes a function on each enumerable property in _obj_. The function"," * receives the value, the key, and the object itself as parameters (in that"," * order)."," *"," * By default, only properties owned by _obj_ are enumerated. To include"," * prototype properties, set the _proto_ parameter to `true`."," *"," * @method each"," * @param {Object} obj Object to enumerate."," * @param {Function} fn Function to execute on each enumerable property."," * @param {mixed} fn.value Value of the current property."," * @param {String} fn.key Key of the current property."," * @param {Object} fn.obj Object being enumerated."," * @param {Object} [thisObj] `this` object to use when calling _fn_."," * @param {Boolean} [proto=false] Include prototype properties."," * @return {YUI} the YUI instance."," * @chainable"," * @static"," */","O.each = function (obj, fn, thisObj, proto) {"," var key;",""," for (key in obj) {"," if (proto || owns(obj, key)) {"," fn.call(thisObj || Y, obj[key], key, obj);"," }"," }",""," return Y;","};","","/**"," * Executes a function on each enumerable property in _obj_, but halts if the"," * function returns a truthy value. The function receives the value, the key,"," * and the object itself as paramters (in that order)."," *"," * By default, only properties owned by _obj_ are enumerated. To include"," * prototype properties, set the _proto_ parameter to `true`."," *"," * @method some"," * @param {Object} obj Object to enumerate."," * @param {Function} fn Function to execute on each enumerable property."," * @param {mixed} fn.value Value of the current property."," * @param {String} fn.key Key of the current property."," * @param {Object} fn.obj Object being enumerated."," * @param {Object} [thisObj] `this` object to use when calling _fn_."," * @param {Boolean} [proto=false] Include prototype properties."," * @return {Boolean} `true` if any execution of _fn_ returns a truthy value,"," * `false` otherwise."," * @static"," */","O.some = function (obj, fn, thisObj, proto) {"," var key;",""," for (key in obj) {"," if (proto || owns(obj, key)) {"," if (fn.call(thisObj || Y, obj[key], key, obj)) {"," return true;"," }"," }"," }",""," return false;","};","","/**"," * Retrieves the sub value at the provided path,"," * from the value object provided."," *"," * @method getValue"," * @static"," * @param o The object from which to extract the property value."," * @param path {Array} A path array, specifying the object traversal path"," * from which to obtain the sub value."," * @return {Any} The value stored in the path, undefined if not found,"," * undefined if the source is not an object. Returns the source object"," * if an empty path is provided."," */","O.getValue = function(o, path) {"," if (!Lang.isObject(o)) {"," return UNDEFINED;"," }",""," var i,"," p = Y.Array(path),"," l = p.length;",""," for (i = 0; o !== UNDEFINED && i < l; i++) {"," o = o[p[i]];"," }",""," return o;","};","","/**"," * Sets the sub-attribute value at the provided path on the"," * value object. Returns the modified value object, or"," * undefined if the path is invalid."," *"," * @method setValue"," * @static"," * @param o The object on which to set the sub value."," * @param path {Array} A path array, specifying the object traversal path"," * at which to set the sub value."," * @param val {Any} The new value for the sub-attribute."," * @return {Object} The modified object, with the new sub value set, or"," * undefined, if the path was invalid."," */","O.setValue = function(o, path, val) {"," var i,"," p = Y.Array(path),"," leafIdx = p.length - 1,"," ref = o;",""," if (leafIdx >= 0) {"," for (i = 0; ref !== UNDEFINED && i < leafIdx; i++) {"," ref = ref[p[i]];"," }",""," if (ref !== UNDEFINED) {"," ref[p[i]] = val;"," } else {"," return UNDEFINED;"," }"," }",""," return o;","};","","/**"," * Returns `true` if the object has no enumerable properties of its own."," *"," * @method isEmpty"," * @param {Object} obj An object."," * @return {Boolean} `true` if the object is empty."," * @static"," * @since 3.2.0"," */","O.isEmpty = function (obj) {"," return !O.keys(Object(obj)).length;","};","/**"," * The YUI module contains the components required for building the YUI seed"," * file. This includes the script loading mechanism, a simple queue, and the"," * core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * YUI user agent detection."," * Do not fork for a browser if it can be avoided. Use feature detection when"," * you can. Use the user agent as a last resort. For all fields listed"," * as @type float, UA stores a version number for the browser engine,"," * 0 otherwise. This value may or may not map to the version number of"," * the browser using the engine. The value is presented as a float so"," * that it can easily be used for boolean evaluation as well as for"," * looking for a particular range of versions. Because of this,"," * some of the granularity of the version info may be lost. The fields that"," * are @type string default to null. The API docs list the values that"," * these fields can have."," * @class UA"," * @static"," */","","/**","* Static method on `YUI.Env` for parsing a UA string. Called at instantiation","* to populate `Y.UA`.","*","* @static","* @method parseUA","* @param {String} [subUA=navigator.userAgent] UA string to parse","* @return {Object} The Y.UA object","*/","YUI.Env.parseUA = function(subUA) {",""," var numberify = function(s) {"," var c = 0;"," return parseFloat(s.replace(/\\./g, function() {"," return (c++ === 1) ? '' : '.';"," }));"," },",""," win = Y.config.win,",""," nav = win && win.navigator,",""," o = {",""," /**"," * Internet Explorer version number or 0. Example: 6"," * @property ie"," * @type float"," * @static"," */"," ie: 0,",""," /**"," * Opera version number or 0. Example: 9.2"," * @property opera"," * @type float"," * @static"," */"," opera: 0,",""," /**"," * Gecko engine revision number. Will evaluate to 1 if Gecko"," * is detected but the revision could not be found. Other browsers"," * will be 0. Example: 1.8"," *
","         * Firefox 1.0.0.4: 1.7.8   <-- Reports 1.7","         * Firefox 1.5.0.9: 1.8.0.9 <-- 1.8","         * Firefox 2.0.0.3: 1.8.1.3 <-- 1.81","         * Firefox 3.0   <-- 1.9","         * Firefox 3.5   <-- 1.91","         * 
"," * @property gecko"," * @type float"," * @static"," */"," gecko: 0,",""," /**"," * AppleWebKit version. KHTML browsers that are not WebKit browsers"," * will evaluate to 1, other browsers 0. Example: 418.9"," *
","         * Safari 1.3.2 (312.6): 312.8.1 <-- Reports 312.8 -- currently the","         *                                   latest available for Mac OSX 10.3.","         * Safari 2.0.2:         416     <-- hasOwnProperty introduced","         * Safari 2.0.4:         418     <-- preventDefault fixed","         * Safari 2.0.4 (419.3): 418.9.1 <-- One version of Safari may run","         *                                   different versions of webkit","         * Safari 2.0.4 (419.3): 419     <-- Tiger installations that have been","         *                                   updated, but not updated","         *                                   to the latest patch.","         * Webkit 212 nightly:   522+    <-- Safari 3.0 precursor (with native","         * SVG and many major issues fixed).","         * Safari 3.0.4 (523.12) 523.12  <-- First Tiger release - automatic","         * update from 2.x via the 10.4.11 OS patch.","         * Webkit nightly 1/2008:525+    <-- Supports DOMContentLoaded event.","         *                                   yahoo.com user agent hack removed.","         * 
"," * http://en.wikipedia.org/wiki/Safari_version_history"," * @property webkit"," * @type float"," * @static"," */"," webkit: 0,",""," /**"," * Safari will be detected as webkit, but this property will also"," * be populated with the Safari version number"," * @property safari"," * @type float"," * @static"," */"," safari: 0,",""," /**"," * Chrome will be detected as webkit, but this property will also"," * be populated with the Chrome version number"," * @property chrome"," * @type float"," * @static"," */"," chrome: 0,",""," /**"," * The mobile property will be set to a string containing any relevant"," * user agent information when a modern mobile browser is detected."," * Currently limited to Safari on the iPhone/iPod Touch, Nokia N-series"," * devices with the WebKit-based browser, and Opera Mini."," * @property mobile"," * @type string"," * @default null"," * @static"," */"," mobile: null,",""," /**"," * Adobe AIR version number or 0. Only populated if webkit is detected."," * Example: 1.0"," * @property air"," * @type float"," */"," air: 0,"," /**"," * PhantomJS version number or 0. Only populated if webkit is detected."," * Example: 1.0"," * @property phantomjs"," * @type float"," */"," phantomjs: 0,"," /**"," * Detects Apple iPad's OS version"," * @property ipad"," * @type float"," * @static"," */"," ipad: 0,"," /**"," * Detects Apple iPhone's OS version"," * @property iphone"," * @type float"," * @static"," */"," iphone: 0,"," /**"," * Detects Apples iPod's OS version"," * @property ipod"," * @type float"," * @static"," */"," ipod: 0,"," /**"," * General truthy check for iPad, iPhone or iPod"," * @property ios"," * @type Boolean"," * @default null"," * @static"," */"," ios: null,"," /**"," * Detects Googles Android OS version"," * @property android"," * @type float"," * @static"," */"," android: 0,"," /**"," * Detects Kindle Silk"," * @property silk"," * @type float"," * @static"," */"," silk: 0,"," /**"," * Detects Kindle Silk Acceleration"," * @property accel"," * @type Boolean"," * @static"," */"," accel: false,"," /**"," * Detects Palms WebOS version"," * @property webos"," * @type float"," * @static"," */"," webos: 0,",""," /**"," * Google Caja version number or 0."," * @property caja"," * @type float"," */"," caja: nav && nav.cajaVersion,",""," /**"," * Set to true if the page appears to be in SSL"," * @property secure"," * @type boolean"," * @static"," */"," secure: false,",""," /**"," * The operating system. Currently only detecting windows or macintosh"," * @property os"," * @type string"," * @default null"," * @static"," */"," os: null,",""," /**"," * The Nodejs Version"," * @property nodejs"," * @type float"," * @default 0"," * @static"," */"," nodejs: 0,"," /**"," * Window8/IE10 Application host environment"," * @property winjs"," * @type Boolean"," * @static"," */"," winjs: !!((typeof Windows !== \"undefined\") && Windows.System),"," /**"," * Are touch/msPointer events available on this device"," * @property touchEnabled"," * @type Boolean"," * @static"," */"," touchEnabled: false"," },",""," ua = subUA || nav && nav.userAgent,",""," loc = win && win.location,",""," href = loc && loc.href,",""," m;",""," /**"," * The User Agent string that was parsed"," * @property userAgent"," * @type String"," * @static"," */"," o.userAgent = ua;","",""," o.secure = href && (href.toLowerCase().indexOf('https') === 0);",""," if (ua) {",""," if ((/windows|win32/i).test(ua)) {"," o.os = 'windows';"," } else if ((/macintosh|mac_powerpc/i).test(ua)) {"," o.os = 'macintosh';"," } else if ((/android/i).test(ua)) {"," o.os = 'android';"," } else if ((/symbos/i).test(ua)) {"," o.os = 'symbos';"," } else if ((/linux/i).test(ua)) {"," o.os = 'linux';"," } else if ((/rhino/i).test(ua)) {"," o.os = 'rhino';"," }",""," // Modern KHTML browsers should qualify as Safari X-Grade"," if ((/KHTML/).test(ua)) {"," o.webkit = 1;"," }"," if ((/IEMobile|XBLWP7/).test(ua)) {"," o.mobile = 'windows';"," }"," if ((/Fennec/).test(ua)) {"," o.mobile = 'gecko';"," }"," // Modern WebKit browsers are at least X-Grade"," m = ua.match(/AppleWebKit\\/([^\\s]*)/);"," if (m && m[1]) {"," o.webkit = numberify(m[1]);"," o.safari = o.webkit;",""," if (/PhantomJS/.test(ua)) {"," m = ua.match(/PhantomJS\\/([^\\s]*)/);"," if (m && m[1]) {"," o.phantomjs = numberify(m[1]);"," }"," }",""," // Mobile browser check"," if (/ Mobile\\//.test(ua) || (/iPad|iPod|iPhone/).test(ua)) {"," o.mobile = 'Apple'; // iPhone or iPod Touch",""," m = ua.match(/OS ([^\\s]*)/);"," if (m && m[1]) {"," m = numberify(m[1].replace('_', '.'));"," }"," o.ios = m;"," o.os = 'ios';"," o.ipad = o.ipod = o.iphone = 0;",""," m = ua.match(/iPad|iPod|iPhone/);"," if (m && m[0]) {"," o[m[0].toLowerCase()] = o.ios;"," }"," } else {"," m = ua.match(/NokiaN[^\\/]*|webOS\\/\\d\\.\\d/);"," if (m) {"," // Nokia N-series, webOS, ex: NokiaN95"," o.mobile = m[0];"," }"," if (/webOS/.test(ua)) {"," o.mobile = 'WebOS';"," m = ua.match(/webOS\\/([^\\s]*);/);"," if (m && m[1]) {"," o.webos = numberify(m[1]);"," }"," }"," if (/ Android/.test(ua)) {"," if (/Mobile/.test(ua)) {"," o.mobile = 'Android';"," }"," m = ua.match(/Android ([^\\s]*);/);"," if (m && m[1]) {"," o.android = numberify(m[1]);"," }",""," }"," if (/Silk/.test(ua)) {"," m = ua.match(/Silk\\/([^\\s]*)\\)/);"," if (m && m[1]) {"," o.silk = numberify(m[1]);"," }"," if (!o.android) {"," o.android = 2.34; //Hack for desktop mode in Kindle"," o.os = 'Android';"," }"," if (/Accelerated=true/.test(ua)) {"," o.accel = true;"," }"," }"," }",""," m = ua.match(/(Chrome|CrMo|CriOS)\\/([^\\s]*)/);"," if (m && m[1] && m[2]) {"," o.chrome = numberify(m[2]); // Chrome"," o.safari = 0; //Reset safari back to 0"," if (m[1] === 'CrMo') {"," o.mobile = 'chrome';"," }"," } else {"," m = ua.match(/AdobeAIR\\/([^\\s]*)/);"," if (m) {"," o.air = m[0]; // Adobe AIR 1.0 or better"," }"," }"," }",""," if (!o.webkit) { // not webkit","// @todo check Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1316; fi; U; ssr)"," if (/Opera/.test(ua)) {"," m = ua.match(/Opera[\\s\\/]([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]);"," }"," m = ua.match(/Version\\/([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]); // opera 10+"," }",""," if (/Opera Mobi/.test(ua)) {"," o.mobile = 'opera';"," m = ua.replace('Opera Mobi', '').match(/Opera ([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]);"," }"," }"," m = ua.match(/Opera Mini[^;]*/);",""," if (m) {"," o.mobile = m[0]; // ex: Opera Mini/2.0.4509/1316"," }"," } else { // not opera or webkit"," m = ua.match(/MSIE\\s([^;]*)/);"," if (m && m[1]) {"," o.ie = numberify(m[1]);"," } else { // not opera, webkit, or ie"," m = ua.match(/Gecko\\/([^\\s]*)/);"," if (m) {"," o.gecko = 1; // Gecko detected, look for revision"," m = ua.match(/rv:([^\\s\\)]*)/);"," if (m && m[1]) {"," o.gecko = numberify(m[1]);"," }"," }"," }"," }"," }"," }",""," //Check for known properties to tell if touch events are enabled on this device or if"," //the number of MSPointer touchpoints on this device is greater than 0."," if (win && nav && !(o.chrome && o.chrome < 6)) {"," o.touchEnabled = ((\"ontouchstart\" in win) || ((\"msMaxTouchPoints\" in nav) && (nav.msMaxTouchPoints > 0)));"," }",""," //It was a parsed UA, do not assign the global value."," if (!subUA) {",""," if (typeof process === 'object') {",""," if (process.versions && process.versions.node) {"," //NodeJS"," o.os = process.platform;"," o.nodejs = numberify(process.versions.node);"," }"," }",""," YUI.Env.UA = o;",""," }",""," return o;","};","","","Y.UA = YUI.Env.UA || YUI.Env.parseUA();","","/**","Performs a simple comparison between two version numbers, accounting for","standard versioning logic such as the fact that \"535.8\" is a lower version than","\"535.24\", even though a simple numerical comparison would indicate that it's","greater. Also accounts for cases such as \"1.1\" vs. \"1.1.0\", which are","considered equivalent.","","Returns -1 if version _a_ is lower than version _b_, 0 if they're equivalent,","1 if _a_ is higher than _b_.","","Versions may be numbers or strings containing numbers and dots. For example,","both `535` and `\"535.8.10\"` are acceptable. A version string containing","non-numeric characters, like `\"535.8.beta\"`, may produce unexpected results.","","@method compareVersions","@param {Number|String} a First version number to compare.","@param {Number|String} b Second version number to compare.","@return -1 if _a_ is lower than _b_, 0 if they're equivalent, 1 if _a_ is"," higher than _b_.","**/","Y.UA.compareVersions = function (a, b) {"," var aPart, aParts, bPart, bParts, i, len;",""," if (a === b) {"," return 0;"," }",""," aParts = (a + '').split('.');"," bParts = (b + '').split('.');",""," for (i = 0, len = Math.max(aParts.length, bParts.length); i < len; ++i) {"," aPart = parseInt(aParts[i], 10);"," bPart = parseInt(bParts[i], 10);",""," isNaN(aPart) && (aPart = 0);"," isNaN(bPart) && (bPart = 0);",""," if (aPart < bPart) {"," return -1;"," }",""," if (aPart > bPart) {"," return 1;"," }"," }",""," return 0;","};","YUI.Env.aliases = {"," \"anim\": [\"anim-base\",\"anim-color\",\"anim-curve\",\"anim-easing\",\"anim-node-plugin\",\"anim-scroll\",\"anim-xy\"],"," \"anim-shape-transform\": [\"anim-shape\"],"," \"app\": [\"app-base\",\"app-content\",\"app-transitions\",\"lazy-model-list\",\"model\",\"model-list\",\"model-sync-rest\",\"router\",\"view\",\"view-node-map\"],"," \"attribute\": [\"attribute-base\",\"attribute-complex\"],"," \"attribute-events\": [\"attribute-observable\"],"," \"autocomplete\": [\"autocomplete-base\",\"autocomplete-sources\",\"autocomplete-list\",\"autocomplete-plugin\"],"," \"base\": [\"base-base\",\"base-pluginhost\",\"base-build\"],"," \"cache\": [\"cache-base\",\"cache-offline\",\"cache-plugin\"],"," \"collection\": [\"array-extras\",\"arraylist\",\"arraylist-add\",\"arraylist-filter\",\"array-invoke\"],"," \"color\": [\"color-base\",\"color-hsl\",\"color-harmony\"],"," \"controller\": [\"router\"],"," \"dataschema\": [\"dataschema-base\",\"dataschema-json\",\"dataschema-xml\",\"dataschema-array\",\"dataschema-text\"],"," \"datasource\": [\"datasource-local\",\"datasource-io\",\"datasource-get\",\"datasource-function\",\"datasource-cache\",\"datasource-jsonschema\",\"datasource-xmlschema\",\"datasource-arrayschema\",\"datasource-textschema\",\"datasource-polling\"],"," \"datatable\": [\"datatable-core\",\"datatable-table\",\"datatable-head\",\"datatable-body\",\"datatable-base\",\"datatable-column-widths\",\"datatable-message\",\"datatable-mutable\",\"datatable-sort\",\"datatable-datasource\"],"," \"datatable-deprecated\": [\"datatable-base-deprecated\",\"datatable-datasource-deprecated\",\"datatable-sort-deprecated\",\"datatable-scroll-deprecated\"],"," \"datatype\": [\"datatype-date\",\"datatype-number\",\"datatype-xml\"],"," \"datatype-date\": [\"datatype-date-parse\",\"datatype-date-format\",\"datatype-date-math\"],"," \"datatype-number\": [\"datatype-number-parse\",\"datatype-number-format\"],"," \"datatype-xml\": [\"datatype-xml-parse\",\"datatype-xml-format\"],"," \"dd\": [\"dd-ddm-base\",\"dd-ddm\",\"dd-ddm-drop\",\"dd-drag\",\"dd-proxy\",\"dd-constrain\",\"dd-drop\",\"dd-scroll\",\"dd-delegate\"],"," \"dom\": [\"dom-base\",\"dom-screen\",\"dom-style\",\"selector-native\",\"selector\"],"," \"editor\": [\"frame\",\"editor-selection\",\"exec-command\",\"editor-base\",\"editor-para\",\"editor-br\",\"editor-bidi\",\"editor-tab\",\"createlink-base\"],"," \"event\": [\"event-base\",\"event-delegate\",\"event-synthetic\",\"event-mousewheel\",\"event-mouseenter\",\"event-key\",\"event-focus\",\"event-resize\",\"event-hover\",\"event-outside\",\"event-touch\",\"event-move\",\"event-flick\",\"event-valuechange\",\"event-tap\"],"," \"event-custom\": [\"event-custom-base\",\"event-custom-complex\"],"," \"event-gestures\": [\"event-flick\",\"event-move\"],"," \"handlebars\": [\"handlebars-compiler\"],"," \"highlight\": [\"highlight-base\",\"highlight-accentfold\"],"," \"history\": [\"history-base\",\"history-hash\",\"history-hash-ie\",\"history-html5\"],"," \"io\": [\"io-base\",\"io-xdr\",\"io-form\",\"io-upload-iframe\",\"io-queue\"],"," \"json\": [\"json-parse\",\"json-stringify\"],"," \"loader\": [\"loader-base\",\"loader-rollup\",\"loader-yui3\"],"," \"node\": [\"node-base\",\"node-event-delegate\",\"node-pluginhost\",\"node-screen\",\"node-style\"],"," \"pluginhost\": [\"pluginhost-base\",\"pluginhost-config\"],"," \"querystring\": [\"querystring-parse\",\"querystring-stringify\"],"," \"recordset\": [\"recordset-base\",\"recordset-sort\",\"recordset-filter\",\"recordset-indexer\"],"," \"resize\": [\"resize-base\",\"resize-proxy\",\"resize-constrain\"],"," \"slider\": [\"slider-base\",\"slider-value-range\",\"clickable-rail\",\"range-slider\"],"," \"template\": [\"template-base\",\"template-micro\"],"," \"text\": [\"text-accentfold\",\"text-wordbreak\"],"," \"widget\": [\"widget-base\",\"widget-htmlparser\",\"widget-skin\",\"widget-uievents\"]","};","","","}, '@VERSION@', {\"use\": [\"get\", \"features\", \"intl-base\", \"yui-log\", \"yui-later\"]});"]; +_yuitest_coverage["build/yui-base/yui-base.js"].code=["/**","The YUI module contains the components required for building the YUI seed file.","This includes the script loading mechanism, a simple queue, and the core","utilities for the library.","","@module yui","@main yui","@submodule yui-base","**/","","if (typeof YUI != 'undefined') {"," YUI._YUI = YUI;","}","","/**","The YUI global namespace object. This is the constructor for all YUI instances.","","This is a self-instantiable factory function, meaning you don't need to precede","it with the `new` operator. You can invoke it directly like this:",""," YUI().use('*', function (Y) {"," // Y is a new YUI instance."," });","","But it also works like this:",""," var Y = YUI();","","The `YUI` constructor accepts an optional config object, like this:",""," YUI({"," debug: true,"," combine: false"," }).use('node', function (Y) {"," // Y.Node is ready to use."," });","","See the API docs for the Config class for the complete","list of supported configuration properties accepted by the YUI constuctor.","","If a global `YUI` object is already defined, the existing YUI object will not be","overwritten, to ensure that defined namespaces are preserved.","","Each YUI instance has full custom event support, but only if the event system is","available.","","@class YUI","@uses EventTarget","@constructor","@global","@param {Object} [config]* Zero or more optional configuration objects. Config"," values are stored in the `Y.config` property. See the"," Config docs for the list of supported properties.","**/",""," /*global YUI*/"," /*global YUI_config*/"," var YUI = function() {"," var i = 0,"," Y = this,"," args = arguments,"," l = args.length,"," instanceOf = function(o, type) {"," return (o && o.hasOwnProperty && (o instanceof type));"," },"," gconf = (typeof YUI_config !== 'undefined') && YUI_config;",""," if (!(instanceOf(Y, YUI))) {"," Y = new YUI();"," } else {"," // set up the core environment"," Y._init();",""," /**"," Master configuration that might span multiple contexts in a non-"," browser environment. It is applied first to all instances in all"," contexts.",""," @example",""," YUI.GlobalConfig = {"," filter: 'debug'"," };",""," YUI().use('node', function (Y) {"," // debug files used here"," });",""," YUI({"," filter: 'min'"," }).use('node', function (Y) {"," // min files used here"," });",""," @property {Object} GlobalConfig"," @global"," @static"," **/"," if (YUI.GlobalConfig) {"," Y.applyConfig(YUI.GlobalConfig);"," }",""," /**"," Page-level config applied to all YUI instances created on the"," current page. This is applied after `YUI.GlobalConfig` and before"," any instance-level configuration.",""," @example",""," // Single global var to include before YUI seed file"," YUI_config = {"," filter: 'debug'"," };",""," YUI().use('node', function (Y) {"," // debug files used here"," });",""," YUI({"," filter: 'min'"," }).use('node', function (Y) {"," // min files used here"," });",""," @property {Object} YUI_config"," @global"," **/"," if (gconf) {"," Y.applyConfig(gconf);"," }",""," // bind the specified additional modules for this instance"," if (!l) {"," Y._setup();"," }"," }",""," if (l) {"," // Each instance can accept one or more configuration objects."," // These are applied after YUI.GlobalConfig and YUI_Config,"," // overriding values set in those config files if there is a"," // matching property."," for (; i < l; i++) {"," Y.applyConfig(args[i]);"," }",""," Y._setup();"," }",""," Y.instanceOf = instanceOf;",""," return Y;"," };","","(function() {",""," var proto, prop,"," VERSION = '@VERSION@',"," PERIOD = '.',"," BASE = 'http://yui.yahooapis.com/',"," /*"," These CSS class names can't be generated by"," getClassName since it is not available at the"," time they are being used."," */"," DOC_LABEL = 'yui3-js-enabled',"," CSS_STAMP_EL = 'yui3-css-stamp',"," NOOP = function() {},"," SLICE = Array.prototype.slice,"," APPLY_TO_AUTH = { 'io.xdrReady': 1, // the functions applyTo"," 'io.xdrResponse': 1, // can call. this should"," 'SWF.eventHandler': 1 }, // be done at build time"," hasWin = (typeof window != 'undefined'),"," win = (hasWin) ? window : null,"," doc = (hasWin) ? win.document : null,"," docEl = doc && doc.documentElement,"," docClass = docEl && docEl.className,"," instances = {},"," time = new Date().getTime(),"," add = function(el, type, fn, capture) {"," if (el && el.addEventListener) {"," el.addEventListener(type, fn, capture);"," } else if (el && el.attachEvent) {"," el.attachEvent('on' + type, fn);"," }"," },"," remove = function(el, type, fn, capture) {"," if (el && el.removeEventListener) {"," // this can throw an uncaught exception in FF"," try {"," el.removeEventListener(type, fn, capture);"," } catch (ex) {}"," } else if (el && el.detachEvent) {"," el.detachEvent('on' + type, fn);"," }"," },"," handleLoad = function() {"," YUI.Env.windowLoaded = true;"," YUI.Env.DOMReady = true;"," if (hasWin) {"," remove(window, 'load', handleLoad);"," }"," },"," getLoader = function(Y, o) {"," var loader = Y.Env._loader,"," lCore = [ 'loader-base' ],"," G_ENV = YUI.Env,"," mods = G_ENV.mods;",""," if (loader) {"," //loader._config(Y.config);"," loader.ignoreRegistered = false;"," loader.onEnd = null;"," loader.data = null;"," loader.required = [];"," loader.loadType = null;"," } else {"," loader = new Y.Loader(Y.config);"," Y.Env._loader = loader;"," }"," if (mods && mods.loader) {"," lCore = [].concat(lCore, YUI.Env.loaderExtras);"," }"," YUI.Env.core = Y.Array.dedupe([].concat(YUI.Env.core, lCore));",""," return loader;"," },",""," clobber = function(r, s) {"," for (var i in s) {"," if (s.hasOwnProperty(i)) {"," r[i] = s[i];"," }"," }"," },",""," ALREADY_DONE = { success: true };","","// Stamp the documentElement (HTML) with a class of \"yui-loaded\" to","// enable styles that need to key off of JS being enabled.","if (docEl && docClass.indexOf(DOC_LABEL) == -1) {"," if (docClass) {"," docClass += ' ';"," }"," docClass += DOC_LABEL;"," docEl.className = docClass;","}","","if (VERSION.indexOf('@') > -1) {"," VERSION = '3.5.0'; // dev time hack for cdn test","}","","proto = {"," /**"," Applies a new configuration object to the config of this YUI instance. This"," will merge new group/module definitions, and will also update the loader"," cache if necessary. Updating `Y.config` directly will not update the cache.",""," @method applyConfig"," @param {Object} o the configuration object."," @since 3.2.0"," **/"," applyConfig: function(o) {",""," o = o || NOOP;",""," var attr,"," name,"," // detail,"," config = this.config,"," mods = config.modules,"," groups = config.groups,"," aliases = config.aliases,"," loader = this.Env._loader;",""," for (name in o) {"," if (o.hasOwnProperty(name)) {"," attr = o[name];"," if (mods && name == 'modules') {"," clobber(mods, attr);"," } else if (aliases && name == 'aliases') {"," clobber(aliases, attr);"," } else if (groups && name == 'groups') {"," clobber(groups, attr);"," } else if (name == 'win') {"," config[name] = (attr && attr.contentWindow) || attr;"," config.doc = config[name] ? config[name].document : null;"," } else if (name == '_yuid') {"," // preserve the guid"," } else {"," config[name] = attr;"," }"," }"," }",""," if (loader) {"," loader._config(o);"," }",""," },",""," /**"," Old way to apply a config to this instance (calls `applyConfig` under the"," hood).",""," @private"," @method _config"," @param {Object} o The config to apply"," **/"," _config: function(o) {"," this.applyConfig(o);"," },",""," /**"," Initializes this YUI instance.",""," @private"," @method _init"," **/"," _init: function() {"," var filter, el,"," Y = this,"," G_ENV = YUI.Env,"," Env = Y.Env,"," prop;",""," /**"," The version number of this YUI instance.",""," This value is typically updated by a script when a YUI release is built,"," so it may not reflect the correct version number when YUI is run from"," the development source tree.",""," @property {String} version"," **/"," Y.version = VERSION;",""," if (!Env) {"," Y.Env = {"," core: ['get', 'features', 'intl-base', 'yui-log', 'yui-later'],"," loaderExtras: ['loader-rollup', 'loader-yui3'],"," mods: {}, // flat module map"," versions: {}, // version module map"," base: BASE,"," cdn: BASE + VERSION + '/build/',"," // bootstrapped: false,"," _idx: 0,"," _used: {},"," _attached: {},"," _missed: [],"," _yidx: 0,"," _uidx: 0,"," _guidp: 'y',"," _loaded: {},"," // serviced: {},"," // Regex in English:"," // I'll start at the \\b(simpleyui)."," // 1. Look in the test string for \"simpleyui\" or \"yui\" or"," // \"yui-base\" or \"yui-davglass\" or \"yui-foobar\" that comes after a word break. That is, it"," // can't match \"foyui\" or \"i_heart_simpleyui\". This can be anywhere in the string."," // 2. After #1 must come a forward slash followed by the string matched in #1, so"," // \"yui-base/yui-base\" or \"simpleyui/simpleyui\" or \"yui-pants/yui-pants\"."," // 3. The second occurence of the #1 token can optionally be followed by \"-debug\" or \"-min\","," // so \"yui/yui-min\", \"yui/yui-debug\", \"yui-base/yui-base-debug\". NOT \"yui/yui-tshirt\"."," // 4. This is followed by \".js\", so \"yui/yui.js\", \"simpleyui/simpleyui-min.js\""," // 0. Going back to the beginning, now. If all that stuff in 1-4 comes after a \"?\" in the string,"," // then capture the junk between the LAST \"&\" and the string in 1-4. So"," // \"blah?foo/yui/yui.js\" will capture \"foo/\" and \"blah?some/thing.js&3.3.0/build/yui-davglass/yui-davglass.js\""," // will capture \"3.3.0/build/\""," //"," // Regex Exploded:"," // (?:\\? Find a ?"," // (?:[^&]*&) followed by 0..n characters followed by an &"," // * in fact, find as many sets of characters followed by a & as you can"," // ([^&]*) capture the stuff after the last & in \\1"," // )? but it's ok if all this ?junk&more_junk stuff isn't even there"," // \\b(simpleyui| after a word break find either the string \"simpleyui\" or"," // yui(?:-\\w+)? the string \"yui\" optionally followed by a -, then more characters"," // ) and store the simpleyui or yui-* string in \\2"," // \\/\\2 then comes a / followed by the simpleyui or yui-* string in \\2"," // (?:-(min|debug))? optionally followed by \"-min\" or \"-debug\""," // .js and ending in \".js\""," _BASE_RE: /(?:\\?(?:[^&]*&)*([^&]*))?\\b(simpleyui|yui(?:-\\w+)?)\\/\\2(?:-(min|debug))?\\.js/,"," parseBasePath: function(src, pattern) {"," var match = src.match(pattern),"," path, filter;",""," if (match) {"," path = RegExp.leftContext || src.slice(0, src.indexOf(match[0]));",""," // this is to set up the path to the loader. The file"," // filter for loader should match the yui include."," filter = match[3];",""," // extract correct path for mixed combo urls"," // http://yuilibrary.com/projects/yui3/ticket/2528423"," if (match[1]) {"," path += '?' + match[1];"," }"," path = {"," filter: filter,"," path: path"," };"," }"," return path;"," },"," getBase: G_ENV && G_ENV.getBase ||"," function(pattern) {"," var nodes = (doc && doc.getElementsByTagName('script')) || [],"," path = Env.cdn, parsed,"," i, len, src;",""," for (i = 0, len = nodes.length; i < len; ++i) {"," src = nodes[i].src;"," if (src) {"," parsed = Y.Env.parseBasePath(src, pattern);"," if (parsed) {"," filter = parsed.filter;"," path = parsed.path;"," break;"," }"," }"," }",""," // use CDN default"," return path;"," }",""," };",""," Env = Y.Env;",""," Env._loaded[VERSION] = {};",""," if (G_ENV && Y !== YUI) {"," Env._yidx = ++G_ENV._yidx;"," Env._guidp = ('yui_' + VERSION + '_' +"," Env._yidx + '_' + time).replace(/[^a-z0-9_]+/g, '_');"," } else if (YUI._YUI) {",""," G_ENV = YUI._YUI.Env;"," Env._yidx += G_ENV._yidx;"," Env._uidx += G_ENV._uidx;",""," for (prop in G_ENV) {"," if (!(prop in Env)) {"," Env[prop] = G_ENV[prop];"," }"," }",""," delete YUI._YUI;"," }",""," Y.id = Y.stamp(Y);"," instances[Y.id] = Y;",""," }",""," Y.constructor = YUI;",""," // configuration defaults"," Y.config = Y.config || {"," bootstrap: true,"," cacheUse: true,"," debug: true,"," doc: doc,"," fetchCSS: true,"," throwFail: true,"," useBrowserConsole: true,"," useNativeES5: true,"," win: win,"," global: Function('return this')()"," };",""," //Register the CSS stamp element"," if (doc && !doc.getElementById(CSS_STAMP_EL)) {"," el = doc.createElement('div');"," el.innerHTML = '';"," YUI.Env.cssStampEl = el.firstChild;"," if (doc.body) {"," doc.body.appendChild(YUI.Env.cssStampEl);"," } else {"," docEl.insertBefore(YUI.Env.cssStampEl, docEl.firstChild);"," }"," } else if (doc && doc.getElementById(CSS_STAMP_EL) && !YUI.Env.cssStampEl) {"," YUI.Env.cssStampEl = doc.getElementById(CSS_STAMP_EL);"," }",""," Y.config.lang = Y.config.lang || 'en-US';",""," Y.config.base = YUI.config.base || Y.Env.getBase(Y.Env._BASE_RE);",""," if (!filter || (!('mindebug').indexOf(filter))) {"," filter = 'min';"," }"," filter = (filter) ? '-' + filter : filter;"," Y.config.loaderPath = YUI.config.loaderPath || 'loader/loader' + filter + '.js';",""," },",""," /**"," Finishes the instance setup. Attaches whatever YUI modules were defined"," at the time that this instance was created.",""," @method _setup"," @private"," **/"," _setup: function(o) {"," var i, Y = this,"," core = [],"," mods = YUI.Env.mods,"," extras = Y.config.core || [].concat(YUI.Env.core); //Clone it..",""," for (i = 0; i < extras.length; i++) {"," if (mods[extras[i]]) {"," core.push(extras[i]);"," }"," }",""," Y._attach(['yui-base']);"," Y._attach(core);",""," if (Y.Loader) {"," getLoader(Y);"," }",""," },",""," /**"," Executes the named method on the specified YUI instance if that method is"," whitelisted.",""," @method applyTo"," @param {String} id YUI instance id."," @param {String} method Name of the method to execute. For example:"," 'Object.keys'."," @param {Array} args Arguments to apply to the method."," @return {Mixed} Return value from the applied method, or `null` if the"," specified instance was not found or the method was not whitelisted."," **/"," applyTo: function(id, method, args) {"," if (!(method in APPLY_TO_AUTH)) {"," this.log(method + ': applyTo not allowed', 'warn', 'yui');"," return null;"," }",""," var instance = instances[id], nest, m, i;"," if (instance) {"," nest = method.split('.');"," m = instance;"," for (i = 0; i < nest.length; i = i + 1) {"," m = m[nest[i]];"," if (!m) {"," this.log('applyTo not found: ' + method, 'warn', 'yui');"," }"," }"," return m && m.apply(instance, args);"," }",""," return null;"," },","","/**","Registers a YUI module and makes it available for use in a `YUI().use()` call or","as a dependency for other modules.","","The easiest way to create a first-class YUI module is to use","Shifter, the YUI component build","tool.","","Shifter will automatically wrap your module code in a `YUI.add()` call along","with any configuration info required for the module.","","@example",""," YUI.add('davglass', function (Y) {"," Y.davglass = function () {"," };"," }, '3.4.0', {"," requires: ['harley-davidson', 'mt-dew']"," });","","@method add","@param {String} name Module name.","@param {Function} fn Function containing module code. This function will be"," executed whenever the module is attached to a specific YUI instance.",""," @param {YUI} fn.Y The YUI instance to which this module is attached."," @param {String} fn.name Name of the module","","@param {String} version Module version number. This is currently used only for"," informational purposes, and is not used internally by YUI.","","@param {Object} [config] Module config."," @param {Array} [config.requires] Array of other module names that must be"," attached before this module can be attached."," @param {Array} [config.optional] Array of optional module names that should"," be attached before this module is attached if they've already been"," loaded. If the `loadOptional` YUI option is `true`, optional modules"," that have not yet been loaded will be loaded just as if they were hard"," requirements."," @param {Array} [config.use] Array of module names that are included within"," or otherwise provided by this module, and which should be attached"," automatically when this module is attached. This makes it possible to"," create \"virtual rollup\" modules that simply attach a collection of other"," modules or submodules.","","@return {YUI} This YUI instance.","**/"," add: function(name, fn, version, details) {"," details = details || {};"," var env = YUI.Env,"," mod = {"," name: name,"," fn: fn,"," version: version,"," details: details"," },"," //Instance hash so we don't apply it to the same instance twice"," applied = {},"," loader, inst,"," i, versions = env.versions;",""," env.mods[name] = mod;"," versions[version] = versions[version] || {};"," versions[version][name] = mod;",""," for (i in instances) {"," if (instances.hasOwnProperty(i)) {"," inst = instances[i];"," if (!applied[inst.id]) {"," applied[inst.id] = true;"," loader = inst.Env._loader;"," if (loader) {"," if (!loader.moduleInfo[name] || loader.moduleInfo[name].temp) {"," loader.addModule(details, name);"," }"," }"," }"," }"," }",""," return this;"," },",""," /**"," Executes the callback function associated with each required module,"," attaching the module to this YUI instance.",""," @method _attach"," @param {Array} r The array of modules to attach"," @param {Boolean} [moot=false] If `true`, don't throw a warning if the module"," is not attached."," @private"," **/"," _attach: function(r, moot) {"," var i, name, mod, details, req, use, after,"," mods = YUI.Env.mods,"," aliases = YUI.Env.aliases,"," Y = this, j,"," cache = YUI.Env._renderedMods,"," loader = Y.Env._loader,"," done = Y.Env._attached,"," len = r.length, loader, def, go,"," c = [];",""," //Check for conditional modules (in a second+ instance) and add their requirements"," //TODO I hate this entire method, it needs to be fixed ASAP (3.5.0) ^davglass"," for (i = 0; i < len; i++) {"," name = r[i];"," mod = mods[name];"," c.push(name);"," if (loader && loader.conditions[name]) {"," for (j in loader.conditions[name]) {"," if (loader.conditions[name].hasOwnProperty(j)) {"," def = loader.conditions[name][j];"," go = def && ((def.ua && Y.UA[def.ua]) || (def.test && def.test(Y)));"," if (go) {"," c.push(def.name);"," }"," }"," }"," }"," }"," r = c;"," len = r.length;",""," for (i = 0; i < len; i++) {"," if (!done[r[i]]) {"," name = r[i];"," mod = mods[name];",""," if (aliases && aliases[name] && !mod) {"," Y._attach(aliases[name]);"," continue;"," }"," if (!mod) {"," if (loader && loader.moduleInfo[name]) {"," mod = loader.moduleInfo[name];"," moot = true;"," }","",""," //if (!loader || !loader.moduleInfo[name]) {"," //if ((!loader || !loader.moduleInfo[name]) && !moot) {"," if (!moot && name) {"," if ((name.indexOf('skin-') === -1) && (name.indexOf('css') === -1)) {"," Y.Env._missed.push(name);"," Y.Env._missed = Y.Array.dedupe(Y.Env._missed);"," Y.message('NOT loaded: ' + name, 'warn', 'yui');"," }"," }"," } else {"," done[name] = true;"," //Don't like this, but in case a mod was asked for once, then we fetch it"," //We need to remove it from the missed list ^davglass"," for (j = 0; j < Y.Env._missed.length; j++) {"," if (Y.Env._missed[j] === name) {"," Y.message('Found: ' + name + ' (was reported as missing earlier)', 'warn', 'yui');"," Y.Env._missed.splice(j, 1);"," }"," }"," /*"," If it's a temp module, we need to redo it's requirements if it's already loaded"," since it may have been loaded by another instance and it's dependencies might"," have been redefined inside the fetched file."," */"," if (loader && cache && cache[name] && cache[name].temp) {"," loader.getRequires(cache[name]);"," req = [];"," for (j in loader.moduleInfo[name].expanded_map) {"," if (loader.moduleInfo[name].expanded_map.hasOwnProperty(j)) {"," req.push(j);"," }"," }"," Y._attach(req);"," }",""," details = mod.details;"," req = details.requires;"," use = details.use;"," after = details.after;"," //Force Intl load if there is a language (Loader logic) @todo fix this shit"," if (details.lang) {"," req = req || [];"," req.unshift('intl');"," }",""," if (req) {"," for (j = 0; j < req.length; j++) {"," if (!done[req[j]]) {"," if (!Y._attach(req)) {"," return false;"," }"," break;"," }"," }"," }",""," if (after) {"," for (j = 0; j < after.length; j++) {"," if (!done[after[j]]) {"," if (!Y._attach(after, true)) {"," return false;"," }"," break;"," }"," }"," }",""," if (mod.fn) {"," if (Y.config.throwFail) {"," mod.fn(Y, name);"," } else {"," try {"," mod.fn(Y, name);"," } catch (e) {"," Y.error('Attach error: ' + name, e, name);"," return false;"," }"," }"," }",""," if (use) {"," for (j = 0; j < use.length; j++) {"," if (!done[use[j]]) {"," if (!Y._attach(use)) {"," return false;"," }"," break;"," }"," }"," }","","",""," }"," }"," }",""," return true;"," },",""," /**"," Delays the `use` callback until another event has taken place such as"," `window.onload`, `domready`, `contentready`, or `available`.",""," @private"," @method _delayCallback"," @param {Function} cb The original `use` callback."," @param {String|Object} until Either an event name ('load', 'domready', etc.)"," or an object containing event/args keys for contentready/available."," @return {Function}"," **/"," _delayCallback: function(cb, until) {",""," var Y = this,"," mod = ['event-base'];",""," until = (Y.Lang.isObject(until) ? until : { event: until });",""," if (until.event === 'load') {"," mod.push('event-synthetic');"," }",""," return function() {"," var args = arguments;"," Y._use(mod, function() {"," Y.on(until.event, function() {"," args[1].delayUntil = until.event;"," cb.apply(Y, args);"," }, until.args);"," });"," };"," },",""," /**"," Attaches one or more modules to this YUI instance. When this is executed,"," the requirements of the desired modules are analyzed, and one of several"," things can happen:","",""," * All required modules have already been loaded, and just need to be"," attached to this YUI instance. In this case, the `use()` callback will"," be executed synchronously after the modules are attached.",""," * One or more modules have not yet been loaded, or the Get utility is not"," available, or the `bootstrap` config option is `false`. In this case,"," a warning is issued indicating that modules are missing, but all"," available modules will still be attached and the `use()` callback will"," be executed synchronously.",""," * One or more modules are missing and the Loader is not available but the"," Get utility is, and `bootstrap` is not `false`. In this case, the Get"," utility will be used to load the Loader, and we will then proceed to"," the following state:",""," * One or more modules are missing and the Loader is available. In this"," case, the Loader will be used to resolve the dependency tree for the"," missing modules and load them and their dependencies. When the Loader is"," finished loading modules, the `use()` callback will be executed"," asynchronously.",""," @example",""," // Loads and attaches dd and its dependencies."," YUI().use('dd', function (Y) {"," // ..."," });",""," // Loads and attaches dd and node as well as all of their dependencies."," YUI().use(['dd', 'node'], function (Y) {"," // ..."," });",""," // Attaches all modules that have already been loaded."," YUI().use('*', function (Y) {"," // ..."," });",""," // Attaches a gallery module."," YUI().use('gallery-yql', function (Y) {"," // ..."," });",""," // Attaches a YUI 2in3 module."," YUI().use('yui2-datatable', function (Y) {"," // ..."," });",""," @method use"," @param {String|Array} modules* One or more module names to attach."," @param {Function} [callback] Callback function to be executed once all"," specified modules and their dependencies have been attached."," @param {YUI} callback.Y The YUI instance created for this sandbox."," @param {Object} callback.status Object containing `success`, `msg` and"," `data` properties."," @chainable"," **/"," use: function() {"," var args = SLICE.call(arguments, 0),"," callback = args[args.length - 1],"," Y = this,"," i = 0,"," a = [],"," name,"," Env = Y.Env,"," provisioned = true;",""," // The last argument supplied to use can be a load complete callback"," if (Y.Lang.isFunction(callback)) {"," args.pop();"," if (Y.config.delayUntil) {"," callback = Y._delayCallback(callback, Y.config.delayUntil);"," }"," } else {"," callback = null;"," }"," if (Y.Lang.isArray(args[0])) {"," args = args[0];"," }",""," if (Y.config.cacheUse) {"," while ((name = args[i++])) {"," if (!Env._attached[name]) {"," provisioned = false;"," break;"," }"," }",""," if (provisioned) {"," if (args.length) {"," }"," Y._notify(callback, ALREADY_DONE, args);"," return Y;"," }"," }",""," if (Y._loading) {"," Y._useQueue = Y._useQueue || new Y.Queue();"," Y._useQueue.add([args, callback]);"," } else {"," Y._use(args, function(Y, response) {"," Y._notify(callback, response, args);"," });"," }",""," return Y;"," },",""," /**"," Handles Loader notifications about attachment/load errors.",""," @method _notify"," @param {Function} callback Callback to pass to `Y.config.loadErrorFn`."," @param {Object} response Response returned from Loader."," @param {Array} args Arguments passed from Loader."," @private"," **/"," _notify: function(callback, response, args) {"," if (!response.success && this.config.loadErrorFn) {"," this.config.loadErrorFn.call(this, this, callback, response, args);"," } else if (callback) {"," if (this.Env._missed && this.Env._missed.length) {"," response.msg = 'Missing modules: ' + this.Env._missed.join();"," response.success = false;"," }"," if (this.config.throwFail) {"," callback(this, response);"," } else {"," try {"," callback(this, response);"," } catch (e) {"," this.error('use callback error', e, args);"," }"," }"," }"," },",""," /**"," Called from the `use` method queue to ensure that only one set of loading"," logic is performed at a time.",""," @method _use"," @param {String} args* One or more modules to attach."," @param {Function} [callback] Function to call once all required modules have"," been attached."," @private"," **/"," _use: function(args, callback) {",""," if (!this.Array) {"," this._attach(['yui-base']);"," }",""," var len, loader, handleBoot, handleRLS,"," Y = this,"," G_ENV = YUI.Env,"," mods = G_ENV.mods,"," Env = Y.Env,"," used = Env._used,"," aliases = G_ENV.aliases,"," queue = G_ENV._loaderQueue,"," firstArg = args[0],"," YArray = Y.Array,"," config = Y.config,"," boot = config.bootstrap,"," missing = [],"," i,"," r = [],"," ret = true,"," fetchCSS = config.fetchCSS,"," process = function(names, skip) {",""," var i = 0, a = [], name, len, m, req, use;",""," if (!names.length) {"," return;"," }",""," if (aliases) {"," len = names.length;"," for (i = 0; i < len; i++) {"," if (aliases[names[i]] && !mods[names[i]]) {"," a = [].concat(a, aliases[names[i]]);"," } else {"," a.push(names[i]);"," }"," }"," names = a;"," }",""," len = names.length;",""," for (i = 0; i < len; i++) {"," name = names[i];"," if (!skip) {"," r.push(name);"," }",""," // only attach a module once"," if (used[name]) {"," continue;"," }",""," m = mods[name];"," req = null;"," use = null;",""," if (m) {"," used[name] = true;"," req = m.details.requires;"," use = m.details.use;"," } else {"," // CSS files don't register themselves, see if it has"," // been loaded"," if (!G_ENV._loaded[VERSION][name]) {"," missing.push(name);"," } else {"," used[name] = true; // probably css"," }"," }",""," // make sure requirements are attached"," if (req && req.length) {"," process(req);"," }",""," // make sure we grab the submodule dependencies too"," if (use && use.length) {"," process(use, 1);"," }"," }",""," },",""," handleLoader = function(fromLoader) {"," var response = fromLoader || {"," success: true,"," msg: 'not dynamic'"," },"," redo, origMissing,"," ret = true,"," data = response.data;",""," Y._loading = false;",""," if (data) {"," origMissing = missing;"," missing = [];"," r = [];"," process(data);"," redo = missing.length;"," if (redo) {"," if ([].concat(missing).sort().join() =="," origMissing.sort().join()) {"," redo = false;"," }"," }"," }",""," if (redo && data) {"," Y._loading = true;"," Y._use(missing, function() {"," if (Y._attach(data)) {"," Y._notify(callback, response, data);"," }"," });"," } else {"," if (data) {"," ret = Y._attach(data);"," }"," if (ret) {"," Y._notify(callback, response, args);"," }"," }",""," if (Y._useQueue && Y._useQueue.size() && !Y._loading) {"," Y._use.apply(Y, Y._useQueue.next());"," }",""," };","",""," // YUI().use('*'); // bind everything available"," if (firstArg === '*') {"," args = [];"," for (i in mods) {"," if (mods.hasOwnProperty(i)) {"," args.push(i);"," }"," }"," ret = Y._attach(args);"," if (ret) {"," handleLoader();"," }"," return Y;"," }",""," if ((mods.loader || mods['loader-base']) && !Y.Loader) {"," Y._attach(['loader' + ((!mods.loader) ? '-base' : '')]);"," }","",""," // use loader to expand dependencies and sort the"," // requirements if it is available."," if (boot && Y.Loader && args.length) {"," loader = getLoader(Y);"," loader.require(args);"," loader.ignoreRegistered = true;"," loader._boot = true;"," loader.calculate(null, (fetchCSS) ? null : 'js');"," args = loader.sorted;"," loader._boot = false;"," }",""," process(args);",""," len = missing.length;","",""," if (len) {"," missing = YArray.dedupe(missing);"," len = missing.length;"," }","",""," // dynamic load"," if (boot && len && Y.Loader) {"," Y._loading = true;"," loader = getLoader(Y);"," loader.onEnd = handleLoader;"," loader.context = Y;"," loader.data = args;"," loader.ignoreRegistered = false;"," loader.require(missing);"," loader.insert(null, (fetchCSS) ? null : 'js');",""," } else if (boot && len && Y.Get && !Env.bootstrapped) {",""," Y._loading = true;",""," handleBoot = function() {"," Y._loading = false;"," queue.running = false;"," Env.bootstrapped = true;"," G_ENV._bootstrapping = false;"," if (Y._attach(['loader'])) {"," Y._use(args, callback);"," }"," };",""," if (G_ENV._bootstrapping) {"," queue.add(handleBoot);"," } else {"," G_ENV._bootstrapping = true;"," Y.Get.script(config.base + config.loaderPath, {"," onEnd: handleBoot"," });"," }",""," } else {"," ret = Y._attach(args);"," if (ret) {"," handleLoader();"," }"," }",""," return Y;"," },","",""," /**"," Utility method for safely creating namespaces if they don't already exist."," May be called statically on the YUI global object or as a method on a YUI"," instance.",""," When called statically, a namespace will be created on the YUI global"," object:",""," // Create `YUI.your.namespace.here` as nested objects, preserving any"," // objects that already exist instead of overwriting them."," YUI.namespace('your.namespace.here');",""," When called as a method on a YUI instance, a namespace will be created on"," that instance:",""," // Creates `Y.property.package`."," Y.namespace('property.package');",""," Dots in the input string cause `namespace` to create nested objects for each"," token. If any part of the requested namespace already exists, the current"," object will be left in place and will not be overwritten. This allows"," multiple calls to `namespace` to preserve existing namespaced properties.",""," If the first token in the namespace string is \"YAHOO\", that token is"," discarded. This is legacy behavior for backwards compatibility with YUI 2.",""," Be careful with namespace tokens. Reserved words may work in some browsers"," and not others. For instance, the following will fail in some browsers"," because the supported version of JavaScript reserves the word \"long\":",""," Y.namespace('really.long.nested.namespace');",""," Note: If you pass multiple arguments to create multiple namespaces, only the"," last one created is returned from this function.",""," @method namespace"," @param {String} namespace* One or more namespaces to create."," @return {Object} Reference to the last namespace object created."," **/"," namespace: function() {"," var a = arguments, o, i = 0, j, d, arg;",""," for (; i < a.length; i++) {"," o = this; //Reset base object per argument or it will get reused from the last"," arg = a[i];"," if (arg.indexOf(PERIOD) > -1) { //Skip this if no \".\" is present"," d = arg.split(PERIOD);"," for (j = (d[0] == 'YAHOO') ? 1 : 0; j < d.length; j++) {"," o[d[j]] = o[d[j]] || {};"," o = o[d[j]];"," }"," } else {"," o[arg] = o[arg] || {};"," o = o[arg]; //Reset base object to the new object so it's returned"," }"," }"," return o;"," },",""," // this is replaced if the log module is included"," log: NOOP,"," message: NOOP,"," // this is replaced if the dump module is included"," dump: function (o) { return ''+o; },",""," /**"," Reports an error.",""," The reporting mechanism is controlled by the `throwFail` configuration"," attribute. If `throwFail` is falsy, the message is logged. If `throwFail` is"," truthy, a JS exception is thrown.",""," If an `errorFn` is specified in the config it must return `true` to indicate"," that the exception was handled and keep it from being thrown.",""," @method error"," @param {String} msg Error message."," @param {Error|String} [e] JavaScript error object or an error string."," @param {String} [src] Source of the error (such as the name of the module in"," which the error occurred)."," @chainable"," **/"," error: function(msg, e, src) {"," //TODO Add check for window.onerror here",""," var Y = this, ret;",""," if (Y.config.errorFn) {"," ret = Y.config.errorFn.apply(Y, arguments);"," }",""," if (!ret) {"," throw (e || new Error(msg));"," } else {"," Y.message(msg, 'error', ''+src); // don't scrub this one"," }",""," return Y;"," },",""," /**"," Generates an id string that is unique among all YUI instances in this"," execution context.",""," @method guid"," @param {String} [pre] Prefix."," @return {String} Unique id."," **/"," guid: function(pre) {"," var id = this.Env._guidp + '_' + (++this.Env._uidx);"," return (pre) ? (pre + id) : id;"," },",""," /**"," Returns a unique id associated with the given object and (if *readOnly* is"," falsy) stamps the object with that id so it can be identified in the future.",""," Stamping an object involves adding a `_yuid` property to it that contains"," the object's id. One exception to this is that in Internet Explorer, DOM"," nodes have a `uniqueID` property that contains a browser-generated unique"," id, which will be used instead of a YUI-generated id when available.",""," @method stamp"," @param {Object} o Object to stamp."," @param {Boolean} readOnly If truthy and the given object has not already"," been stamped, the object will not be modified and `null` will be"," returned."," @return {String} Object's unique id, or `null` if *readOnly* was truthy and"," the given object was not already stamped."," **/"," stamp: function(o, readOnly) {"," var uid;"," if (!o) {"," return o;"," }",""," // IE generates its own unique ID for dom nodes"," // The uniqueID property of a document node returns a new ID"," if (o.uniqueID && o.nodeType && o.nodeType !== 9) {"," uid = o.uniqueID;"," } else {"," uid = (typeof o === 'string') ? o : o._yuid;"," }",""," if (!uid) {"," uid = this.guid();"," if (!readOnly) {"," try {"," o._yuid = uid;"," } catch (e) {"," uid = null;"," }"," }"," }"," return uid;"," },",""," /**"," Destroys this YUI instance.",""," @method destroy"," @since 3.3.0"," **/"," destroy: function() {"," var Y = this;"," if (Y.Event) {"," Y.Event._unload();"," }"," delete instances[Y.id];"," delete Y.Env;"," delete Y.config;"," }",""," /**"," Safe `instanceof` wrapper that works around a memory leak in IE when the"," object being tested is `window` or `document`.",""," Unless you are testing objects that may be `window` or `document`, you"," should use the native `instanceof` operator instead of this method.",""," @method instanceOf"," @param {Object} o Object to check."," @param {Object} type Class to check against."," @since 3.3.0"," **/","};",""," YUI.prototype = proto;",""," // inheritance utilities are not available yet"," for (prop in proto) {"," if (proto.hasOwnProperty(prop)) {"," YUI[prop] = proto[prop];"," }"," }",""," /**"," Applies a configuration to all YUI instances in this execution context.",""," The main use case for this method is in \"mashups\" where several third-party"," scripts need to write to a global YUI config, but cannot share a single"," centrally-managed config object. This way they can all call"," `YUI.applyConfig({})` instead of overwriting the single global config.",""," @example",""," YUI.applyConfig({"," modules: {"," davglass: {"," fullpath: './davglass.js'"," }"," }"," });",""," YUI.applyConfig({"," modules: {"," foo: {"," fullpath: './foo.js'"," }"," }"," });",""," YUI().use('davglass', function (Y) {"," // Module davglass will be available here."," });",""," @method applyConfig"," @param {Object} o Configuration object to apply."," @static"," @since 3.5.0"," **/"," YUI.applyConfig = function(o) {"," if (!o) {"," return;"," }"," //If there is a GlobalConfig, apply it first to set the defaults"," if (YUI.GlobalConfig) {"," this.prototype.applyConfig.call(this, YUI.GlobalConfig);"," }"," //Apply this config to it"," this.prototype.applyConfig.call(this, o);"," //Reset GlobalConfig to the combined config"," YUI.GlobalConfig = this.config;"," };",""," // set up the environment"," YUI._init();",""," if (hasWin) {"," // add a window load event at load time so we can capture"," // the case where it fires before dynamic loading is"," // complete."," add(window, 'load', handleLoad);"," } else {"," handleLoad();"," }",""," YUI.Env.add = add;"," YUI.Env.remove = remove;",""," /*global exports*/"," // Support the CommonJS method for exporting our single global"," if (typeof exports == 'object') {"," exports.YUI = YUI;"," }","","}());","","","/**","Config object that contains all of the configuration options for","this `YUI` instance.","","This object is supplied by the implementer when instantiating YUI. Some","properties have default values if they are not supplied by the implementer.","","This object should not be updated directly because some values are cached. Use","`applyConfig()` to update the config object on a YUI instance that has already","been configured.","","@class config","@static","**/","","/**","If `true` (the default), YUI will \"bootstrap\" the YUI Loader and module metadata","if they're needed to load additional dependencies and aren't already available.","","Setting this to `false` will prevent YUI from automatically loading the Loader","and module metadata, so you will need to manually ensure that they're available","or handle dependency resolution yourself.","","@property {Boolean} bootstrap","@default true","**/","","/**","","@property {Object} aliases","**/","","/**","A hash of module group definitions.","","For each group you can specify a list of modules and the base path and","combo spec to use when dynamically loading the modules.","","@example",""," groups: {"," yui2: {"," // specify whether or not this group has a combo service"," combine: true,",""," // The comboSeperator to use with this group's combo handler"," comboSep: ';',",""," // The maxURLLength for this server"," maxURLLength: 500,",""," // the base path for non-combo paths"," base: 'http://yui.yahooapis.com/2.8.0r4/build/',",""," // the path to the combo service"," comboBase: 'http://yui.yahooapis.com/combo?',",""," // a fragment to prepend to the path attribute when"," // when building combo urls"," root: '2.8.0r4/build/',",""," // the module definitions"," modules: {"," yui2_yde: {"," path: \"yahoo-dom-event/yahoo-dom-event.js\""," },"," yui2_anim: {"," path: \"animation/animation.js\","," requires: ['yui2_yde']"," }"," }"," }"," }","","@property {Object} groups","**/","","/**","Path to the Loader JS file, relative to the `base` path.","","This is used to dynamically bootstrap the Loader when it's needed and isn't yet","available.","","@property {String} loaderPath","@default \"loader/loader-min.js\"","**/","","/**","If `true`, YUI will attempt to load CSS dependencies and skins. Set this to","`false` to prevent YUI from loading any CSS, or set it to the string `\"force\"`","to force CSS dependencies to be loaded even if their associated JS modules are","already loaded.","","@property {Boolean|String} fetchCSS","@default true","**/","","/**","Default gallery version used to build gallery module urls.","","@property {String} gallery","@since 3.1.0","**/","","/**","Default YUI 2 version used to build YUI 2 module urls.","","This is used for intrinsic YUI 2 support via the 2in3 project. Also see the","`2in3` config for pulling different revisions of the wrapped YUI 2 modules.","","@property {String} yui2","@default \"2.9.0\"","@since 3.1.0","**/","","/**","Revision number of YUI 2in3 modules that should be used when loading YUI 2in3.","","@property {String} 2in3","@default \"4\"","@since 3.1.0","**/","","/**","Alternate console log function that should be used in environments without a","supported native console. This function is executed with the YUI instance as its","`this` object.","","@property {Function} logFn","@since 3.1.0","**/","","/**","Callback to execute when `Y.error()` is called. It receives the error message","and a JavaScript error object if one was provided.","","This function is executed with the YUI instance as its `this` object.","","Returning `true` from this function will prevent an exception from being thrown.","","@property {Function} errorFn","@param {String} errorFn.msg Error message","@param {Object} [errorFn.err] Error object (if one was provided).","@since 3.2.0","**/","","/**","A callback to execute when Loader fails to load one or more resources.","","This could be because of a script load failure. It could also be because a","module fails to register itself when the `requireRegistration` config is `true`.","","If this function is defined, the `use()` callback will only be called when the","loader succeeds. Otherwise, `use()` will always executes unless there was a","JavaScript error when attaching a module.","","@property {Function} loadErrorFn","@since 3.3.0","**/","","/**","If `true`, Loader will expect all loaded scripts to be first-class YUI modules","that register themselves with the YUI global, and will trigger a failure if a","loaded script does not register a YUI module.","","@property {Boolean} requireRegistration","@default false","@since 3.3.0","**/","","/**","Cache serviced use() requests.","","@property {Boolean} cacheUse","@default true","@since 3.3.0","@deprecated No longer used.","**/","","/**","Whether or not YUI should use native ES5 functionality when available for","features like `Y.Array.each()`, `Y.Object()`, etc.","","When `false`, YUI will always use its own fallback implementations instead of","relying on ES5 functionality, even when ES5 functionality is available.","","@property {Boolean} useNativeES5","@default true","@since 3.5.0","**/","","/**"," * Leverage native JSON stringify if the browser has a native"," * implementation. In general, this is a good idea. See the Known Issues"," * section in the JSON user guide for caveats. The default value is true"," * for browsers with native JSON support."," *"," * @property useNativeJSONStringify"," * @type Boolean"," * @default true"," * @since 3.8.0"," */",""," /**"," * Leverage native JSON parse if the browser has a native implementation."," * In general, this is a good idea. See the Known Issues section in the"," * JSON user guide for caveats. The default value is true for browsers with"," * native JSON support."," *"," * @property useNativeJSONParse"," * @type Boolean"," * @default true"," * @since 3.8.0"," */","","/**","Delay the `use` callback until a specific event has passed (`load`, `domready`, `contentready` or `available`)","@property delayUntil","@type String|Object","@since 3.6.0","@example","","You can use `load` or `domready` strings by default:",""," YUI({"," delayUntil: 'domready'"," }, function (Y) {"," // This will not execute until 'domeready' occurs."," });","","Or you can delay until a node is available (with `available` or `contentready`):",""," YUI({"," delayUntil: {"," event: 'available',"," args : '#foo'"," }"," }, function (Y) {"," // This will not execute until a node matching the selector \"#foo\" is"," // available in the DOM."," });","","@property {Object|String} delayUntil","@since 3.6.0","**/","YUI.add('yui-base', function (Y, NAME) {","","/*"," * YUI stub"," * @module yui"," * @submodule yui-base"," */","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * Provides core language utilites and extensions used throughout YUI."," *"," * @class Lang"," * @static"," */","","var L = Y.Lang || (Y.Lang = {}),","","STRING_PROTO = String.prototype,","TOSTRING = Object.prototype.toString,","","TYPES = {"," 'undefined' : 'undefined',"," 'number' : 'number',"," 'boolean' : 'boolean',"," 'string' : 'string',"," '[object Function]': 'function',"," '[object RegExp]' : 'regexp',"," '[object Array]' : 'array',"," '[object Date]' : 'date',"," '[object Error]' : 'error'","},","","SUBREGEX = /\\{\\s*([^|}]+?)\\s*(?:\\|([^}]*))?\\s*\\}/g,","TRIMREGEX = /^\\s+|\\s+$/g,","NATIVE_FN_REGEX = /\\{\\s*\\[(?:native code|function)\\]\\s*\\}/i;","","// -- Protected Methods --------------------------------------------------------","","/**","Returns `true` if the given function appears to be implemented in native code,","`false` otherwise. Will always return `false` -- even in ES5-capable browsers --","if the `useNativeES5` YUI config option is set to `false`.","","This isn't guaranteed to be 100% accurate and won't work for anything other than","functions, but it can be useful for determining whether a function like","`Array.prototype.forEach` is native or a JS shim provided by another library.","","There's a great article by @kangax discussing certain flaws with this technique:","","","While his points are valid, it's still possible to benefit from this function","as long as it's used carefully and sparingly, and in such a way that false","negatives have minimal consequences. It's used internally to avoid using","potentially broken non-native ES5 shims that have been added to the page by","other libraries.","","@method _isNative","@param {Function} fn Function to test.","@return {Boolean} `true` if _fn_ appears to be native, `false` otherwise.","@static","@protected","@since 3.5.0","**/","L._isNative = function (fn) {"," return !!(Y.config.useNativeES5 && fn && NATIVE_FN_REGEX.test(fn));","};","","// -- Public Methods -----------------------------------------------------------","","/**"," * Determines whether or not the provided item is an array."," *"," * Returns `false` for array-like collections such as the function `arguments`"," * collection or `HTMLElement` collections. Use `Y.Array.test()` if you want to"," * test for an array-like collection."," *"," * @method isArray"," * @param o The object to test."," * @return {boolean} true if o is an array."," * @static"," */","L.isArray = L._isNative(Array.isArray) ? Array.isArray : function (o) {"," return L.type(o) === 'array';","};","","/**"," * Determines whether or not the provided item is a boolean."," * @method isBoolean"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a boolean."," */","L.isBoolean = function(o) {"," return typeof o === 'boolean';","};","","/**"," * Determines whether or not the supplied item is a date instance."," * @method isDate"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a date."," */","L.isDate = function(o) {"," return L.type(o) === 'date' && o.toString() !== 'Invalid Date' && !isNaN(o);","};","","/**"," *

"," * Determines whether or not the provided item is a function."," * Note: Internet Explorer thinks certain functions are objects:"," *

"," *"," *
"," * var obj = document.createElement(\"object\");"," * Y.Lang.isFunction(obj.getAttribute) // reports false in IE"," *  "," * var input = document.createElement(\"input\"); // append to body"," * Y.Lang.isFunction(input.focus) // reports false in IE"," * 
"," *"," *

"," * You will have to implement additional tests if these functions"," * matter to you."," *

"," *"," * @method isFunction"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a function."," */","L.isFunction = function(o) {"," return L.type(o) === 'function';","};","","/**"," * Determines whether or not the provided item is null."," * @method isNull"," * @static"," * @param o The object to test."," * @return {boolean} true if o is null."," */","L.isNull = function(o) {"," return o === null;","};","","/**"," * Determines whether or not the provided item is a legal number."," * @method isNumber"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a number."," */","L.isNumber = function(o) {"," return typeof o === 'number' && isFinite(o);","};","","/**"," * Determines whether or not the provided item is of type object"," * or function. Note that arrays are also objects, so"," * Y.Lang.isObject([]) === true."," * @method isObject"," * @static"," * @param o The object to test."," * @param failfn {boolean} fail if the input is a function."," * @return {boolean} true if o is an object."," * @see isPlainObject"," */","L.isObject = function(o, failfn) {"," var t = typeof o;"," return (o && (t === 'object' ||"," (!failfn && (t === 'function' || L.isFunction(o))))) || false;","};","","/**"," * Determines whether or not the provided item is a string."," * @method isString"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a string."," */","L.isString = function(o) {"," return typeof o === 'string';","};","","/**"," * Determines whether or not the provided item is undefined."," * @method isUndefined"," * @static"," * @param o The object to test."," * @return {boolean} true if o is undefined."," */","L.isUndefined = function(o) {"," return typeof o === 'undefined';","};","","/**"," * A convenience method for detecting a legitimate non-null value."," * Returns false for null/undefined/NaN, true for other values,"," * including 0/false/''"," * @method isValue"," * @static"," * @param o The item to test."," * @return {boolean} true if it is not null/undefined/NaN || false."," */","L.isValue = function(o) {"," var t = L.type(o);",""," switch (t) {"," case 'number':"," return isFinite(o);",""," case 'null': // fallthru"," case 'undefined':"," return false;",""," default:"," return !!t;"," }","};","","/**"," * Returns the current time in milliseconds."," *"," * @method now"," * @return {Number} Current time in milliseconds."," * @static"," * @since 3.3.0"," */","L.now = Date.now || function () {"," return new Date().getTime();","};","","/**"," * Lightweight version of Y.substitute. Uses the same template"," * structure as Y.substitute, but doesn't support recursion,"," * auto-object coersion, or formats."," * @method sub"," * @param {string} s String to be modified."," * @param {object} o Object containing replacement values."," * @return {string} the substitute result."," * @static"," * @since 3.2.0"," */","L.sub = function(s, o) {"," return s.replace ? s.replace(SUBREGEX, function (match, key) {"," return L.isUndefined(o[key]) ? match : o[key];"," }) : s;","};","","/**"," * Returns a string without any leading or trailing whitespace. If"," * the input is not a string, the input will be returned untouched."," * @method trim"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trim = STRING_PROTO.trim ? function(s) {"," return s && s.trim ? s.trim() : s;","} : function (s) {"," try {"," return s.replace(TRIMREGEX, '');"," } catch (e) {"," return s;"," }","};","","/**"," * Returns a string without any leading whitespace."," * @method trimLeft"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trimLeft = STRING_PROTO.trimLeft ? function (s) {"," return s.trimLeft();","} : function (s) {"," return s.replace(/^\\s+/, '');","};","","/**"," * Returns a string without any trailing whitespace."," * @method trimRight"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trimRight = STRING_PROTO.trimRight ? function (s) {"," return s.trimRight();","} : function (s) {"," return s.replace(/\\s+$/, '');","};","","/**","Returns one of the following strings, representing the type of the item passed","in:",""," * \"array\""," * \"boolean\""," * \"date\""," * \"error\""," * \"function\""," * \"null\""," * \"number\""," * \"object\""," * \"regexp\""," * \"string\""," * \"undefined\"","","Known issues:",""," * `typeof HTMLElementCollection` returns function in Safari, but"," `Y.Lang.type()` reports \"object\", which could be a good thing --"," but it actually caused the logic in Y.Lang.isObject to fail.","","@method type","@param o the item to test.","@return {string} the detected type.","@static","**/","L.type = function(o) {"," return TYPES[typeof o] || TYPES[TOSTRING.call(o)] || (o ? 'object' : 'null');","};","/**","@module yui","@submodule yui-base","*/","","var Lang = Y.Lang,"," Native = Array.prototype,",""," hasOwn = Object.prototype.hasOwnProperty;","","/**","Provides utility methods for working with arrays. Additional array helpers can","be found in the `collection` and `array-extras` modules.","","`Y.Array(thing)` returns a native array created from _thing_. Depending on","_thing_'s type, one of the following will happen:",""," * Arrays are returned unmodified unless a non-zero _startIndex_ is"," specified."," * Array-like collections (see `Array.test()`) are converted to arrays."," * For everything else, a new array is created with _thing_ as the sole"," item.","","Note: elements that are also collections, such as `` and ``, to be array-like.","","@method test","@param {Object} obj Object to test.","@return {Number} A number indicating the results of the test:",""," * 0: Neither an array nor an array-like collection."," * 1: Real array."," * 2: Array-like collection.","","@static","**/","YArray.test = function (obj) {"," var result = 0;",""," if (Lang.isArray(obj)) {"," result = 1;"," } else if (Lang.isObject(obj)) {"," try {"," // indexed, but no tagName (element) or scrollTo/document (window. From DOM.isWindow test which we can't use here),"," // or functions without apply/call (Safari"," // HTMLElementCollection bug)."," if ('length' in obj && !obj.tagName && !(obj.scrollTo && obj.document) && !obj.apply) {"," result = 2;"," }"," } catch (ex) {}"," }",""," return result;","};","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * A simple FIFO queue. Items are added to the Queue with add(1..n items) and"," * removed using next()."," *"," * @class Queue"," * @constructor"," * @param {MIXED} item* 0..n items to seed the queue."," */","function Queue() {"," this._init();"," this.add.apply(this, arguments);","}","","Queue.prototype = {"," /**"," * Initialize the queue"," *"," * @method _init"," * @protected"," */"," _init: function() {"," /**"," * The collection of enqueued items"," *"," * @property _q"," * @type Array"," * @protected"," */"," this._q = [];"," },",""," /**"," * Get the next item in the queue. FIFO support"," *"," * @method next"," * @return {MIXED} the next item in the queue."," */"," next: function() {"," return this._q.shift();"," },",""," /**"," * Get the last in the queue. LIFO support."," *"," * @method last"," * @return {MIXED} the last item in the queue."," */"," last: function() {"," return this._q.pop();"," },",""," /**"," * Add 0..n items to the end of the queue."," *"," * @method add"," * @param {MIXED} item* 0..n items."," * @return {object} this queue."," */"," add: function() {"," this._q.push.apply(this._q, arguments);",""," return this;"," },",""," /**"," * Returns the current number of queued items."," *"," * @method size"," * @return {Number} The size."," */"," size: function() {"," return this._q.length;"," }","};","","Y.Queue = Queue;","","YUI.Env._loaderQueue = YUI.Env._loaderQueue || new Queue();","","/**","The YUI module contains the components required for building the YUI seed file.","This includes the script loading mechanism, a simple queue, and the core","utilities for the library.","","@module yui","@submodule yui-base","**/","","var CACHED_DELIMITER = '__',",""," hasOwn = Object.prototype.hasOwnProperty,"," isObject = Y.Lang.isObject;","","/**","Returns a wrapper for a function which caches the return value of that function,","keyed off of the combined string representation of the argument values provided","when the wrapper is called.","","Calling this function again with the same arguments will return the cached value","rather than executing the wrapped function.","","Note that since the cache is keyed off of the string representation of arguments","passed to the wrapper function, arguments that aren't strings and don't provide","a meaningful `toString()` method may result in unexpected caching behavior. For","example, the objects `{}` and `{foo: 'bar'}` would both be converted to the","string `[object Object]` when used as a cache key.","","@method cached","@param {Function} source The function to memoize.","@param {Object} [cache={}] Object in which to store cached values. You may seed"," this object with pre-existing cached values if desired.","@param {any} [refetch] If supplied, this value is compared with the cached value"," using a `==` comparison. If the values are equal, the wrapped function is"," executed again even though a cached value exists.","@return {Function} Wrapped function.","@for YUI","**/","Y.cached = function (source, cache, refetch) {"," cache || (cache = {});",""," return function (arg) {"," var key = arguments.length > 1 ?"," Array.prototype.join.call(arguments, CACHED_DELIMITER) :"," String(arg);",""," if (!(key in cache) || (refetch && cache[key] == refetch)) {"," cache[key] = source.apply(source, arguments);"," }",""," return cache[key];"," };","};","","/**","Returns the `location` object from the window/frame in which this YUI instance","operates, or `undefined` when executing in a non-browser environment","(e.g. Node.js).","","It is _not_ recommended to hold references to the `window.location` object","outside of the scope of a function in which its properties are being accessed or","its methods are being called. This is because of a nasty bug/issue that exists","in both Safari and MobileSafari browsers:","[WebKit Bug 34679](https://bugs.webkit.org/show_bug.cgi?id=34679).","","@method getLocation","@return {location} The `location` object from the window/frame in which this YUI"," instance operates.","@since 3.5.0","**/","Y.getLocation = function () {"," // It is safer to look this up every time because yui-base is attached to a"," // YUI instance before a user's config is applied; i.e. `Y.config.win` does"," // not point the correct window object when this file is loaded."," var win = Y.config.win;",""," // It is not safe to hold a reference to the `location` object outside the"," // scope in which it is being used. The WebKit engine used in Safari and"," // MobileSafari will \"disconnect\" the `location` object from the `window`"," // when a page is restored from back/forward history cache."," return win && win.location;","};","","/**","Returns a new object containing all of the properties of all the supplied","objects. The properties from later objects will overwrite those in earlier","objects.","","Passing in a single object will create a shallow copy of it. For a deep copy,","use `clone()`.","","@method merge","@param {Object} objects* One or more objects to merge.","@return {Object} A new merged object.","**/","Y.merge = function () {"," var i = 0,"," len = arguments.length,"," result = {},"," key,"," obj;",""," for (; i < len; ++i) {"," obj = arguments[i];",""," for (key in obj) {"," if (hasOwn.call(obj, key)) {"," result[key] = obj[key];"," }"," }"," }",""," return result;","};","","/**","Mixes _supplier_'s properties into _receiver_.","","Properties on _receiver_ or _receiver_'s prototype will not be overwritten or","shadowed unless the _overwrite_ parameter is `true`, and will not be merged","unless the _merge_ parameter is `true`.","","In the default mode (0), only properties the supplier owns are copied (prototype","properties are not copied). The following copying modes are available:",""," * `0`: _Default_. Object to object."," * `1`: Prototype to prototype."," * `2`: Prototype to prototype and object to object."," * `3`: Prototype to object."," * `4`: Object to prototype.","","@method mix","@param {Function|Object} receiver The object or function to receive the mixed"," properties.","@param {Function|Object} supplier The object or function supplying the"," properties to be mixed.","@param {Boolean} [overwrite=false] If `true`, properties that already exist"," on the receiver will be overwritten with properties from the supplier.","@param {String[]} [whitelist] An array of property names to copy. If"," specified, only the whitelisted properties will be copied, and all others"," will be ignored.","@param {Number} [mode=0] Mix mode to use. See above for available modes.","@param {Boolean} [merge=false] If `true`, objects and arrays that already"," exist on the receiver will have the corresponding object/array from the"," supplier merged into them, rather than being skipped or overwritten. When"," both _overwrite_ and _merge_ are `true`, _merge_ takes precedence.","@return {Function|Object|YUI} The receiver, or the YUI instance if the"," specified receiver is falsy.","**/","Y.mix = function(receiver, supplier, overwrite, whitelist, mode, merge) {"," var alwaysOverwrite, exists, from, i, key, len, to;",""," // If no supplier is given, we return the receiver. If no receiver is given,"," // we return Y. Returning Y doesn't make much sense to me, but it's"," // grandfathered in for backcompat reasons."," if (!receiver || !supplier) {"," return receiver || Y;"," }",""," if (mode) {"," // In mode 2 (prototype to prototype and object to object), we recurse"," // once to do the proto to proto mix. The object to object mix will be"," // handled later on."," if (mode === 2) {"," Y.mix(receiver.prototype, supplier.prototype, overwrite,"," whitelist, 0, merge);"," }",""," // Depending on which mode is specified, we may be copying from or to"," // the prototypes of the supplier and receiver."," from = mode === 1 || mode === 3 ? supplier.prototype : supplier;"," to = mode === 1 || mode === 4 ? receiver.prototype : receiver;",""," // If either the supplier or receiver doesn't actually have a"," // prototype property, then we could end up with an undefined `from`"," // or `to`. If that happens, we abort and return the receiver."," if (!from || !to) {"," return receiver;"," }"," } else {"," from = supplier;"," to = receiver;"," }",""," // If `overwrite` is truthy and `merge` is falsy, then we can skip a"," // property existence check on each iteration and save some time."," alwaysOverwrite = overwrite && !merge;",""," if (whitelist) {"," for (i = 0, len = whitelist.length; i < len; ++i) {"," key = whitelist[i];",""," // We call `Object.prototype.hasOwnProperty` instead of calling"," // `hasOwnProperty` on the object itself, since the object's"," // `hasOwnProperty` method may have been overridden or removed."," // Also, some native objects don't implement a `hasOwnProperty`"," // method."," if (!hasOwn.call(from, key)) {"," continue;"," }",""," // The `key in to` check here is (sadly) intentional for backwards"," // compatibility reasons. It prevents undesired shadowing of"," // prototype members on `to`."," exists = alwaysOverwrite ? false : key in to;",""," if (merge && exists && isObject(to[key], true)"," && isObject(from[key], true)) {"," // If we're in merge mode, and the key is present on both"," // objects, and the value on both objects is either an object or"," // an array (but not a function), then we recurse to merge the"," // `from` value into the `to` value instead of overwriting it."," //"," // Note: It's intentional that the whitelist isn't passed to the"," // recursive call here. This is legacy behavior that lots of"," // code still depends on."," Y.mix(to[key], from[key], overwrite, null, 0, merge);"," } else if (overwrite || !exists) {"," // We're not in merge mode, so we'll only copy the `from` value"," // to the `to` value if we're in overwrite mode or if the"," // current key doesn't exist on the `to` object."," to[key] = from[key];"," }"," }"," } else {"," for (key in from) {"," // The code duplication here is for runtime performance reasons."," // Combining whitelist and non-whitelist operations into a single"," // loop or breaking the shared logic out into a function both result"," // in worse performance, and Y.mix is critical enough that the byte"," // tradeoff is worth it."," if (!hasOwn.call(from, key)) {"," continue;"," }",""," // The `key in to` check here is (sadly) intentional for backwards"," // compatibility reasons. It prevents undesired shadowing of"," // prototype members on `to`."," exists = alwaysOverwrite ? false : key in to;",""," if (merge && exists && isObject(to[key], true)"," && isObject(from[key], true)) {"," Y.mix(to[key], from[key], overwrite, null, 0, merge);"," } else if (overwrite || !exists) {"," to[key] = from[key];"," }"," }",""," // If this is an IE browser with the JScript enumeration bug, force"," // enumeration of the buggy properties by making a recursive call with"," // the buggy properties as the whitelist."," if (Y.Object._hasEnumBug) {"," Y.mix(to, from, overwrite, Y.Object._forceEnum, mode, merge);"," }"," }",""," return receiver;","};","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * Adds utilities to the YUI instance for working with objects."," *"," * @class Object"," */","","var Lang = Y.Lang,"," hasOwn = Object.prototype.hasOwnProperty,",""," UNDEFINED, // <-- Note the comma. We're still declaring vars.","","/**"," * Returns a new object that uses _obj_ as its prototype. This method wraps the"," * native ES5 `Object.create()` method if available, but doesn't currently"," * pass through `Object.create()`'s second argument (properties) in order to"," * ensure compatibility with older browsers."," *"," * @method ()"," * @param {Object} obj Prototype object."," * @return {Object} New object using _obj_ as its prototype."," * @static"," */","O = Y.Object = Lang._isNative(Object.create) ? function (obj) {"," // We currently wrap the native Object.create instead of simply aliasing it"," // to ensure consistency with our fallback shim, which currently doesn't"," // support Object.create()'s second argument (properties). Once we have a"," // safe fallback for the properties arg, we can stop wrapping"," // Object.create()."," return Object.create(obj);","} : (function () {"," // Reusable constructor function for the Object.create() shim."," function F() {}",""," // The actual shim."," return function (obj) {"," F.prototype = obj;"," return new F();"," };","}()),","","/**"," * Property names that IE doesn't enumerate in for..in loops, even when they"," * should be enumerable. When `_hasEnumBug` is `true`, it's necessary to"," * manually enumerate these properties."," *"," * @property _forceEnum"," * @type String[]"," * @protected"," * @static"," */","forceEnum = O._forceEnum = ["," 'hasOwnProperty',"," 'isPrototypeOf',"," 'propertyIsEnumerable',"," 'toString',"," 'toLocaleString',"," 'valueOf'","],","","/**"," * `true` if this browser has the JScript enumeration bug that prevents"," * enumeration of the properties named in the `_forceEnum` array, `false`"," * otherwise."," *"," * See:"," * - "," * - "," *"," * @property _hasEnumBug"," * @type Boolean"," * @protected"," * @static"," */","hasEnumBug = O._hasEnumBug = !{valueOf: 0}.propertyIsEnumerable('valueOf'),","","/**"," * `true` if this browser incorrectly considers the `prototype` property of"," * functions to be enumerable. Currently known to affect Opera 11.50."," *"," * @property _hasProtoEnumBug"," * @type Boolean"," * @protected"," * @static"," */","hasProtoEnumBug = O._hasProtoEnumBug = (function () {}).propertyIsEnumerable('prototype'),","","/**"," * Returns `true` if _key_ exists on _obj_, `false` if _key_ doesn't exist or"," * exists only on _obj_'s prototype. This is essentially a safer version of"," * `obj.hasOwnProperty()`."," *"," * @method owns"," * @param {Object} obj Object to test."," * @param {String} key Property name to look for."," * @return {Boolean} `true` if _key_ exists on _obj_, `false` otherwise."," * @static"," */","owns = O.owns = function (obj, key) {"," return !!obj && hasOwn.call(obj, key);","}; // <-- End of var declarations.","","/**"," * Alias for `owns()`."," *"," * @method hasKey"," * @param {Object} obj Object to test."," * @param {String} key Property name to look for."," * @return {Boolean} `true` if _key_ exists on _obj_, `false` otherwise."," * @static"," */","O.hasKey = owns;","","/**"," * Returns an array containing the object's enumerable keys. Does not include"," * prototype keys or non-enumerable keys."," *"," * Note that keys are returned in enumeration order (that is, in the same order"," * that they would be enumerated by a `for-in` loop), which may not be the same"," * as the order in which they were defined."," *"," * This method is an alias for the native ES5 `Object.keys()` method if"," * available."," *"," * @example"," *"," * Y.Object.keys({a: 'foo', b: 'bar', c: 'baz'});"," * // => ['a', 'b', 'c']"," *"," * @method keys"," * @param {Object} obj An object."," * @return {String[]} Array of keys."," * @static"," */","O.keys = Lang._isNative(Object.keys) ? Object.keys : function (obj) {"," if (!Lang.isObject(obj)) {"," throw new TypeError('Object.keys called on a non-object');"," }",""," var keys = [],"," i, key, len;",""," if (hasProtoEnumBug && typeof obj === 'function') {"," for (key in obj) {"," if (owns(obj, key) && key !== 'prototype') {"," keys.push(key);"," }"," }"," } else {"," for (key in obj) {"," if (owns(obj, key)) {"," keys.push(key);"," }"," }"," }",""," if (hasEnumBug) {"," for (i = 0, len = forceEnum.length; i < len; ++i) {"," key = forceEnum[i];",""," if (owns(obj, key)) {"," keys.push(key);"," }"," }"," }",""," return keys;","};","","/**"," * Returns an array containing the values of the object's enumerable keys."," *"," * Note that values are returned in enumeration order (that is, in the same"," * order that they would be enumerated by a `for-in` loop), which may not be the"," * same as the order in which they were defined."," *"," * @example"," *"," * Y.Object.values({a: 'foo', b: 'bar', c: 'baz'});"," * // => ['foo', 'bar', 'baz']"," *"," * @method values"," * @param {Object} obj An object."," * @return {Array} Array of values."," * @static"," */","O.values = function (obj) {"," var keys = O.keys(obj),"," i = 0,"," len = keys.length,"," values = [];",""," for (; i < len; ++i) {"," values.push(obj[keys[i]]);"," }",""," return values;","};","","/**"," * Returns the number of enumerable keys owned by an object."," *"," * @method size"," * @param {Object} obj An object."," * @return {Number} The object's size."," * @static"," */","O.size = function (obj) {"," try {"," return O.keys(obj).length;"," } catch (ex) {"," return 0; // Legacy behavior for non-objects."," }","};","","/**"," * Returns `true` if the object owns an enumerable property with the specified"," * value."," *"," * @method hasValue"," * @param {Object} obj An object."," * @param {any} value The value to search for."," * @return {Boolean} `true` if _obj_ contains _value_, `false` otherwise."," * @static"," */","O.hasValue = function (obj, value) {"," return Y.Array.indexOf(O.values(obj), value) > -1;","};","","/**"," * Executes a function on each enumerable property in _obj_. The function"," * receives the value, the key, and the object itself as parameters (in that"," * order)."," *"," * By default, only properties owned by _obj_ are enumerated. To include"," * prototype properties, set the _proto_ parameter to `true`."," *"," * @method each"," * @param {Object} obj Object to enumerate."," * @param {Function} fn Function to execute on each enumerable property."," * @param {mixed} fn.value Value of the current property."," * @param {String} fn.key Key of the current property."," * @param {Object} fn.obj Object being enumerated."," * @param {Object} [thisObj] `this` object to use when calling _fn_."," * @param {Boolean} [proto=false] Include prototype properties."," * @return {YUI} the YUI instance."," * @chainable"," * @static"," */","O.each = function (obj, fn, thisObj, proto) {"," var key;",""," for (key in obj) {"," if (proto || owns(obj, key)) {"," fn.call(thisObj || Y, obj[key], key, obj);"," }"," }",""," return Y;","};","","/**"," * Executes a function on each enumerable property in _obj_, but halts if the"," * function returns a truthy value. The function receives the value, the key,"," * and the object itself as paramters (in that order)."," *"," * By default, only properties owned by _obj_ are enumerated. To include"," * prototype properties, set the _proto_ parameter to `true`."," *"," * @method some"," * @param {Object} obj Object to enumerate."," * @param {Function} fn Function to execute on each enumerable property."," * @param {mixed} fn.value Value of the current property."," * @param {String} fn.key Key of the current property."," * @param {Object} fn.obj Object being enumerated."," * @param {Object} [thisObj] `this` object to use when calling _fn_."," * @param {Boolean} [proto=false] Include prototype properties."," * @return {Boolean} `true` if any execution of _fn_ returns a truthy value,"," * `false` otherwise."," * @static"," */","O.some = function (obj, fn, thisObj, proto) {"," var key;",""," for (key in obj) {"," if (proto || owns(obj, key)) {"," if (fn.call(thisObj || Y, obj[key], key, obj)) {"," return true;"," }"," }"," }",""," return false;","};","","/**"," * Retrieves the sub value at the provided path,"," * from the value object provided."," *"," * @method getValue"," * @static"," * @param o The object from which to extract the property value."," * @param path {Array} A path array, specifying the object traversal path"," * from which to obtain the sub value."," * @return {Any} The value stored in the path, undefined if not found,"," * undefined if the source is not an object. Returns the source object"," * if an empty path is provided."," */","O.getValue = function(o, path) {"," if (!Lang.isObject(o)) {"," return UNDEFINED;"," }",""," var i,"," p = Y.Array(path),"," l = p.length;",""," for (i = 0; o !== UNDEFINED && i < l; i++) {"," o = o[p[i]];"," }",""," return o;","};","","/**"," * Sets the sub-attribute value at the provided path on the"," * value object. Returns the modified value object, or"," * undefined if the path is invalid."," *"," * @method setValue"," * @static"," * @param o The object on which to set the sub value."," * @param path {Array} A path array, specifying the object traversal path"," * at which to set the sub value."," * @param val {Any} The new value for the sub-attribute."," * @return {Object} The modified object, with the new sub value set, or"," * undefined, if the path was invalid."," */","O.setValue = function(o, path, val) {"," var i,"," p = Y.Array(path),"," leafIdx = p.length - 1,"," ref = o;",""," if (leafIdx >= 0) {"," for (i = 0; ref !== UNDEFINED && i < leafIdx; i++) {"," ref = ref[p[i]];"," }",""," if (ref !== UNDEFINED) {"," ref[p[i]] = val;"," } else {"," return UNDEFINED;"," }"," }",""," return o;","};","","/**"," * Returns `true` if the object has no enumerable properties of its own."," *"," * @method isEmpty"," * @param {Object} obj An object."," * @return {Boolean} `true` if the object is empty."," * @static"," * @since 3.2.0"," */","O.isEmpty = function (obj) {"," return !O.keys(Object(obj)).length;","};","/**"," * The YUI module contains the components required for building the YUI seed"," * file. This includes the script loading mechanism, a simple queue, and the"," * core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * YUI user agent detection."," * Do not fork for a browser if it can be avoided. Use feature detection when"," * you can. Use the user agent as a last resort. For all fields listed"," * as @type float, UA stores a version number for the browser engine,"," * 0 otherwise. This value may or may not map to the version number of"," * the browser using the engine. The value is presented as a float so"," * that it can easily be used for boolean evaluation as well as for"," * looking for a particular range of versions. Because of this,"," * some of the granularity of the version info may be lost. The fields that"," * are @type string default to null. The API docs list the values that"," * these fields can have."," * @class UA"," * @static"," */","","/**","* Static method on `YUI.Env` for parsing a UA string. Called at instantiation","* to populate `Y.UA`.","*","* @static","* @method parseUA","* @param {String} [subUA=navigator.userAgent] UA string to parse","* @return {Object} The Y.UA object","*/","YUI.Env.parseUA = function(subUA) {",""," var numberify = function(s) {"," var c = 0;"," return parseFloat(s.replace(/\\./g, function() {"," return (c++ === 1) ? '' : '.';"," }));"," },",""," win = Y.config.win,",""," nav = win && win.navigator,",""," o = {",""," /**"," * Internet Explorer version number or 0. Example: 6"," * @property ie"," * @type float"," * @static"," */"," ie: 0,",""," /**"," * Opera version number or 0. Example: 9.2"," * @property opera"," * @type float"," * @static"," */"," opera: 0,",""," /**"," * Gecko engine revision number. Will evaluate to 1 if Gecko"," * is detected but the revision could not be found. Other browsers"," * will be 0. Example: 1.8"," *
","         * Firefox 1.0.0.4: 1.7.8   <-- Reports 1.7","         * Firefox 1.5.0.9: 1.8.0.9 <-- 1.8","         * Firefox 2.0.0.3: 1.8.1.3 <-- 1.81","         * Firefox 3.0   <-- 1.9","         * Firefox 3.5   <-- 1.91","         * 
"," * @property gecko"," * @type float"," * @static"," */"," gecko: 0,",""," /**"," * AppleWebKit version. KHTML browsers that are not WebKit browsers"," * will evaluate to 1, other browsers 0. Example: 418.9"," *
","         * Safari 1.3.2 (312.6): 312.8.1 <-- Reports 312.8 -- currently the","         *                                   latest available for Mac OSX 10.3.","         * Safari 2.0.2:         416     <-- hasOwnProperty introduced","         * Safari 2.0.4:         418     <-- preventDefault fixed","         * Safari 2.0.4 (419.3): 418.9.1 <-- One version of Safari may run","         *                                   different versions of webkit","         * Safari 2.0.4 (419.3): 419     <-- Tiger installations that have been","         *                                   updated, but not updated","         *                                   to the latest patch.","         * Webkit 212 nightly:   522+    <-- Safari 3.0 precursor (with native","         * SVG and many major issues fixed).","         * Safari 3.0.4 (523.12) 523.12  <-- First Tiger release - automatic","         * update from 2.x via the 10.4.11 OS patch.","         * Webkit nightly 1/2008:525+    <-- Supports DOMContentLoaded event.","         *                                   yahoo.com user agent hack removed.","         * 
"," * http://en.wikipedia.org/wiki/Safari_version_history"," * @property webkit"," * @type float"," * @static"," */"," webkit: 0,",""," /**"," * Safari will be detected as webkit, but this property will also"," * be populated with the Safari version number"," * @property safari"," * @type float"," * @static"," */"," safari: 0,",""," /**"," * Chrome will be detected as webkit, but this property will also"," * be populated with the Chrome version number"," * @property chrome"," * @type float"," * @static"," */"," chrome: 0,",""," /**"," * The mobile property will be set to a string containing any relevant"," * user agent information when a modern mobile browser is detected."," * Currently limited to Safari on the iPhone/iPod Touch, Nokia N-series"," * devices with the WebKit-based browser, and Opera Mini."," * @property mobile"," * @type string"," * @default null"," * @static"," */"," mobile: null,",""," /**"," * Adobe AIR version number or 0. Only populated if webkit is detected."," * Example: 1.0"," * @property air"," * @type float"," */"," air: 0,"," /**"," * PhantomJS version number or 0. Only populated if webkit is detected."," * Example: 1.0"," * @property phantomjs"," * @type float"," */"," phantomjs: 0,"," /**"," * Detects Apple iPad's OS version"," * @property ipad"," * @type float"," * @static"," */"," ipad: 0,"," /**"," * Detects Apple iPhone's OS version"," * @property iphone"," * @type float"," * @static"," */"," iphone: 0,"," /**"," * Detects Apples iPod's OS version"," * @property ipod"," * @type float"," * @static"," */"," ipod: 0,"," /**"," * General truthy check for iPad, iPhone or iPod"," * @property ios"," * @type Boolean"," * @default null"," * @static"," */"," ios: null,"," /**"," * Detects Googles Android OS version"," * @property android"," * @type float"," * @static"," */"," android: 0,"," /**"," * Detects Kindle Silk"," * @property silk"," * @type float"," * @static"," */"," silk: 0,"," /**"," * Detects Kindle Silk Acceleration"," * @property accel"," * @type Boolean"," * @static"," */"," accel: false,"," /**"," * Detects Palms WebOS version"," * @property webos"," * @type float"," * @static"," */"," webos: 0,",""," /**"," * Google Caja version number or 0."," * @property caja"," * @type float"," */"," caja: nav && nav.cajaVersion,",""," /**"," * Set to true if the page appears to be in SSL"," * @property secure"," * @type boolean"," * @static"," */"," secure: false,",""," /**"," * The operating system. Currently only detecting windows or macintosh"," * @property os"," * @type string"," * @default null"," * @static"," */"," os: null,",""," /**"," * The Nodejs Version"," * @property nodejs"," * @type float"," * @default 0"," * @static"," */"," nodejs: 0,"," /**"," * Window8/IE10 Application host environment"," * @property winjs"," * @type Boolean"," * @static"," */"," winjs: !!((typeof Windows !== \"undefined\") && Windows.System),"," /**"," * Are touch/msPointer events available on this device"," * @property touchEnabled"," * @type Boolean"," * @static"," */"," touchEnabled: false"," },",""," ua = subUA || nav && nav.userAgent,",""," loc = win && win.location,",""," href = loc && loc.href,",""," m;",""," /**"," * The User Agent string that was parsed"," * @property userAgent"," * @type String"," * @static"," */"," o.userAgent = ua;","",""," o.secure = href && (href.toLowerCase().indexOf('https') === 0);",""," if (ua) {",""," if ((/windows|win32/i).test(ua)) {"," o.os = 'windows';"," } else if ((/macintosh|mac_powerpc/i).test(ua)) {"," o.os = 'macintosh';"," } else if ((/android/i).test(ua)) {"," o.os = 'android';"," } else if ((/symbos/i).test(ua)) {"," o.os = 'symbos';"," } else if ((/linux/i).test(ua)) {"," o.os = 'linux';"," } else if ((/rhino/i).test(ua)) {"," o.os = 'rhino';"," }",""," // Modern KHTML browsers should qualify as Safari X-Grade"," if ((/KHTML/).test(ua)) {"," o.webkit = 1;"," }"," if ((/IEMobile|XBLWP7/).test(ua)) {"," o.mobile = 'windows';"," }"," if ((/Fennec/).test(ua)) {"," o.mobile = 'gecko';"," }"," // Modern WebKit browsers are at least X-Grade"," m = ua.match(/AppleWebKit\\/([^\\s]*)/);"," if (m && m[1]) {"," o.webkit = numberify(m[1]);"," o.safari = o.webkit;",""," if (/PhantomJS/.test(ua)) {"," m = ua.match(/PhantomJS\\/([^\\s]*)/);"," if (m && m[1]) {"," o.phantomjs = numberify(m[1]);"," }"," }",""," // Mobile browser check"," if (/ Mobile\\//.test(ua) || (/iPad|iPod|iPhone/).test(ua)) {"," o.mobile = 'Apple'; // iPhone or iPod Touch",""," m = ua.match(/OS ([^\\s]*)/);"," if (m && m[1]) {"," m = numberify(m[1].replace('_', '.'));"," }"," o.ios = m;"," o.os = 'ios';"," o.ipad = o.ipod = o.iphone = 0;",""," m = ua.match(/iPad|iPod|iPhone/);"," if (m && m[0]) {"," o[m[0].toLowerCase()] = o.ios;"," }"," } else {"," m = ua.match(/NokiaN[^\\/]*|webOS\\/\\d\\.\\d/);"," if (m) {"," // Nokia N-series, webOS, ex: NokiaN95"," o.mobile = m[0];"," }"," if (/webOS/.test(ua)) {"," o.mobile = 'WebOS';"," m = ua.match(/webOS\\/([^\\s]*);/);"," if (m && m[1]) {"," o.webos = numberify(m[1]);"," }"," }"," if (/ Android/.test(ua)) {"," if (/Mobile/.test(ua)) {"," o.mobile = 'Android';"," }"," m = ua.match(/Android ([^\\s]*);/);"," if (m && m[1]) {"," o.android = numberify(m[1]);"," }",""," }"," if (/Silk/.test(ua)) {"," m = ua.match(/Silk\\/([^\\s]*)\\)/);"," if (m && m[1]) {"," o.silk = numberify(m[1]);"," }"," if (!o.android) {"," o.android = 2.34; //Hack for desktop mode in Kindle"," o.os = 'Android';"," }"," if (/Accelerated=true/.test(ua)) {"," o.accel = true;"," }"," }"," }",""," m = ua.match(/(Chrome|CrMo|CriOS)\\/([^\\s]*)/);"," if (m && m[1] && m[2]) {"," o.chrome = numberify(m[2]); // Chrome"," o.safari = 0; //Reset safari back to 0"," if (m[1] === 'CrMo') {"," o.mobile = 'chrome';"," }"," } else {"," m = ua.match(/AdobeAIR\\/([^\\s]*)/);"," if (m) {"," o.air = m[0]; // Adobe AIR 1.0 or better"," }"," }"," }",""," if (!o.webkit) { // not webkit","// @todo check Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1316; fi; U; ssr)"," if (/Opera/.test(ua)) {"," m = ua.match(/Opera[\\s\\/]([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]);"," }"," m = ua.match(/Version\\/([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]); // opera 10+"," }",""," if (/Opera Mobi/.test(ua)) {"," o.mobile = 'opera';"," m = ua.replace('Opera Mobi', '').match(/Opera ([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]);"," }"," }"," m = ua.match(/Opera Mini[^;]*/);",""," if (m) {"," o.mobile = m[0]; // ex: Opera Mini/2.0.4509/1316"," }"," } else { // not opera or webkit"," m = ua.match(/MSIE\\s([^;]*)/);"," if (m && m[1]) {"," o.ie = numberify(m[1]);"," } else { // not opera, webkit, or ie"," m = ua.match(/Gecko\\/([^\\s]*)/);"," if (m) {"," o.gecko = 1; // Gecko detected, look for revision"," m = ua.match(/rv:([^\\s\\)]*)/);"," if (m && m[1]) {"," o.gecko = numberify(m[1]);"," }"," }"," }"," }"," }"," }",""," //Check for known properties to tell if touch events are enabled on this device or if"," //the number of MSPointer touchpoints on this device is greater than 0."," if (win && nav && !(o.chrome && o.chrome < 6)) {"," o.touchEnabled = ((\"ontouchstart\" in win) || ((\"msMaxTouchPoints\" in nav) && (nav.msMaxTouchPoints > 0)));"," }",""," //It was a parsed UA, do not assign the global value."," if (!subUA) {",""," if (typeof process === 'object') {",""," if (process.versions && process.versions.node) {"," //NodeJS"," o.os = process.platform;"," o.nodejs = numberify(process.versions.node);"," }"," }",""," YUI.Env.UA = o;",""," }",""," return o;","};","","","Y.UA = YUI.Env.UA || YUI.Env.parseUA();","","/**","Performs a simple comparison between two version numbers, accounting for","standard versioning logic such as the fact that \"535.8\" is a lower version than","\"535.24\", even though a simple numerical comparison would indicate that it's","greater. Also accounts for cases such as \"1.1\" vs. \"1.1.0\", which are","considered equivalent.","","Returns -1 if version _a_ is lower than version _b_, 0 if they're equivalent,","1 if _a_ is higher than _b_.","","Versions may be numbers or strings containing numbers and dots. For example,","both `535` and `\"535.8.10\"` are acceptable. A version string containing","non-numeric characters, like `\"535.8.beta\"`, may produce unexpected results.","","@method compareVersions","@param {Number|String} a First version number to compare.","@param {Number|String} b Second version number to compare.","@return -1 if _a_ is lower than _b_, 0 if they're equivalent, 1 if _a_ is"," higher than _b_.","**/","Y.UA.compareVersions = function (a, b) {"," var aPart, aParts, bPart, bParts, i, len;",""," if (a === b) {"," return 0;"," }",""," aParts = (a + '').split('.');"," bParts = (b + '').split('.');",""," for (i = 0, len = Math.max(aParts.length, bParts.length); i < len; ++i) {"," aPart = parseInt(aParts[i], 10);"," bPart = parseInt(bParts[i], 10);",""," isNaN(aPart) && (aPart = 0);"," isNaN(bPart) && (bPart = 0);",""," if (aPart < bPart) {"," return -1;"," }",""," if (aPart > bPart) {"," return 1;"," }"," }",""," return 0;","};","YUI.Env.aliases = {"," \"anim\": [\"anim-base\",\"anim-color\",\"anim-curve\",\"anim-easing\",\"anim-node-plugin\",\"anim-scroll\",\"anim-xy\"],"," \"anim-shape-transform\": [\"anim-shape\"],"," \"app\": [\"app-base\",\"app-content\",\"app-transitions\",\"lazy-model-list\",\"model\",\"model-list\",\"model-sync-rest\",\"router\",\"view\",\"view-node-map\"],"," \"attribute\": [\"attribute-base\",\"attribute-complex\"],"," \"attribute-events\": [\"attribute-observable\"],"," \"autocomplete\": [\"autocomplete-base\",\"autocomplete-sources\",\"autocomplete-list\",\"autocomplete-plugin\"],"," \"base\": [\"base-base\",\"base-pluginhost\",\"base-build\"],"," \"cache\": [\"cache-base\",\"cache-offline\",\"cache-plugin\"],"," \"collection\": [\"array-extras\",\"arraylist\",\"arraylist-add\",\"arraylist-filter\",\"array-invoke\"],"," \"color\": [\"color-base\",\"color-hsl\",\"color-harmony\"],"," \"controller\": [\"router\"],"," \"dataschema\": [\"dataschema-base\",\"dataschema-json\",\"dataschema-xml\",\"dataschema-array\",\"dataschema-text\"],"," \"datasource\": [\"datasource-local\",\"datasource-io\",\"datasource-get\",\"datasource-function\",\"datasource-cache\",\"datasource-jsonschema\",\"datasource-xmlschema\",\"datasource-arrayschema\",\"datasource-textschema\",\"datasource-polling\"],"," \"datatable\": [\"datatable-core\",\"datatable-table\",\"datatable-head\",\"datatable-body\",\"datatable-base\",\"datatable-column-widths\",\"datatable-message\",\"datatable-mutable\",\"datatable-sort\",\"datatable-datasource\"],"," \"datatable-deprecated\": [\"datatable-base-deprecated\",\"datatable-datasource-deprecated\",\"datatable-sort-deprecated\",\"datatable-scroll-deprecated\"],"," \"datatype\": [\"datatype-date\",\"datatype-number\",\"datatype-xml\"],"," \"datatype-date\": [\"datatype-date-parse\",\"datatype-date-format\",\"datatype-date-math\"],"," \"datatype-number\": [\"datatype-number-parse\",\"datatype-number-format\"],"," \"datatype-xml\": [\"datatype-xml-parse\",\"datatype-xml-format\"],"," \"dd\": [\"dd-ddm-base\",\"dd-ddm\",\"dd-ddm-drop\",\"dd-drag\",\"dd-proxy\",\"dd-constrain\",\"dd-drop\",\"dd-scroll\",\"dd-delegate\"],"," \"dom\": [\"dom-base\",\"dom-screen\",\"dom-style\",\"selector-native\",\"selector\"],"," \"editor\": [\"frame\",\"editor-selection\",\"exec-command\",\"editor-base\",\"editor-para\",\"editor-br\",\"editor-bidi\",\"editor-tab\",\"createlink-base\"],"," \"event\": [\"event-base\",\"event-delegate\",\"event-synthetic\",\"event-mousewheel\",\"event-mouseenter\",\"event-key\",\"event-focus\",\"event-resize\",\"event-hover\",\"event-outside\",\"event-touch\",\"event-move\",\"event-flick\",\"event-valuechange\",\"event-tap\"],"," \"event-custom\": [\"event-custom-base\",\"event-custom-complex\"],"," \"event-gestures\": [\"event-flick\",\"event-move\"],"," \"handlebars\": [\"handlebars-compiler\"],"," \"highlight\": [\"highlight-base\",\"highlight-accentfold\"],"," \"history\": [\"history-base\",\"history-hash\",\"history-hash-ie\",\"history-html5\"],"," \"io\": [\"io-base\",\"io-xdr\",\"io-form\",\"io-upload-iframe\",\"io-queue\"],"," \"json\": [\"json-parse\",\"json-stringify\"],"," \"loader\": [\"loader-base\",\"loader-rollup\",\"loader-yui3\"],"," \"node\": [\"node-base\",\"node-event-delegate\",\"node-pluginhost\",\"node-screen\",\"node-style\"],"," \"pluginhost\": [\"pluginhost-base\",\"pluginhost-config\"],"," \"querystring\": [\"querystring-parse\",\"querystring-stringify\"],"," \"recordset\": [\"recordset-base\",\"recordset-sort\",\"recordset-filter\",\"recordset-indexer\"],"," \"resize\": [\"resize-base\",\"resize-proxy\",\"resize-constrain\"],"," \"slider\": [\"slider-base\",\"slider-value-range\",\"clickable-rail\",\"range-slider\"],"," \"template\": [\"template-base\",\"template-micro\"],"," \"text\": [\"text-accentfold\",\"text-wordbreak\"],"," \"widget\": [\"widget-base\",\"widget-htmlparser\",\"widget-skin\",\"widget-uievents\"]","};","","","}, '@VERSION@', {\"use\": [\"get\", \"features\", \"intl-base\", \"yui-log\", \"yui-later\"]});"]; /** The YUI module contains the components required for building the YUI seed file. This includes the script loading mechanism, a simple queue, and the core @@ -37,8 +37,8 @@ utilities for the library. @submodule yui-base **/ -_yuitest_coverage["build/yui-base/yui-base.js"].lines = {"11":0,"12":0,"58":0,"59":0,"64":0,"68":0,"69":0,"72":0,"99":0,"100":0,"128":0,"129":0,"133":0,"134":0,"138":0,"143":0,"144":0,"147":0,"150":0,"152":0,"155":0,"157":0,"181":0,"182":0,"183":0,"184":0,"188":0,"190":0,"191":0,"193":0,"194":0,"198":0,"199":0,"200":0,"201":0,"205":0,"210":0,"212":0,"213":0,"214":0,"215":0,"216":0,"218":0,"219":0,"221":0,"222":0,"224":0,"226":0,"230":0,"231":0,"232":0,"241":0,"242":0,"243":0,"245":0,"246":0,"249":0,"250":0,"253":0,"265":0,"267":0,"276":0,"277":0,"278":0,"279":0,"280":0,"281":0,"282":0,"283":0,"284":0,"285":0,"286":0,"287":0,"288":0,"291":0,"296":0,"297":0,"311":0,"321":0,"336":0,"338":0,"339":0,"385":0,"388":0,"389":0,"393":0,"397":0,"398":0,"400":0,"405":0,"409":0,"413":0,"414":0,"415":0,"416":0,"417":0,"418":0,"419":0,"420":0,"426":0,"431":0,"433":0,"435":0,"436":0,"437":0,"439":0,"441":0,"442":0,"443":0,"445":0,"446":0,"447":0,"451":0,"454":0,"455":0,"459":0,"462":0,"476":0,"477":0,"478":0,"479":0,"480":0,"481":0,"483":0,"485":0,"486":0,"489":0,"491":0,"493":0,"494":0,"496":0,"497":0,"509":0,"514":0,"515":0,"516":0,"520":0,"521":0,"523":0,"524":0,"542":0,"543":0,"544":0,"547":0,"548":0,"549":0,"550":0,"551":0,"552":0,"553":0,"554":0,"557":0,"560":0,"611":0,"612":0,"624":0,"625":0,"626":0,"628":0,"629":0,"630":0,"631":0,"632":0,"633":0,"634":0,"635":0,"636":0,"643":0,"657":0,"669":0,"670":0,"671":0,"672":0,"673":0,"674":0,"675":0,"676":0,"677":0,"678":0,"679":0,"685":0,"686":0,"688":0,"689":0,"690":0,"691":0,"693":0,"694":0,"695":0,"697":0,"698":0,"699":0,"700":0,"706":0,"707":0,"708":0,"709":0,"710":0,"714":0,"717":0,"718":0,"719":0,"720":0,"728":0,"729":0,"730":0,"731":0,"732":0,"733":0,"736":0,"739":0,"740":0,"741":0,"742":0,"744":0,"745":0,"746":0,"749":0,"750":0,"751":0,"752":0,"753":0,"755":0,"760":0,"761":0,"762":0,"763":0,"764":0,"766":0,"771":0,"772":0,"773":0,"775":0,"776":0,"778":0,"779":0,"784":0,"785":0,"786":0,"787":0,"788":0,"790":0,"801":0,"817":0,"820":0,"822":0,"823":0,"826":0,"827":0,"828":0,"829":0,"830":0,"831":0,"901":0,"911":0,"912":0,"913":0,"914":0,"917":0,"919":0,"920":0,"923":0,"924":0,"925":0,"926":0,"927":0,"931":0,"932":0,"934":0,"935":0,"939":0,"940":0,"941":0,"943":0,"944":0,"948":0,"961":0,"962":0,"963":0,"964":0,"965":0,"966":0,"968":0,"969":0,"971":0,"972":0,"974":0,"992":0,"993":0,"996":0,"1015":0,"1017":0,"1018":0,"1021":0,"1022":0,"1023":0,"1024":0,"1025":0,"1027":0,"1030":0,"1033":0,"1035":0,"1036":0,"1037":0,"1038":0,"1042":0,"1043":0,"1046":0,"1047":0,"1048":0,"1050":0,"1051":0,"1052":0,"1053":0,"1057":0,"1058":0,"1060":0,"1065":0,"1066":0,"1070":0,"1071":0,"1078":0,"1086":0,"1088":0,"1089":0,"1090":0,"1091":0,"1092":0,"1093":0,"1094":0,"1095":0,"1097":0,"1102":0,"1103":0,"1104":0,"1105":0,"1106":0,"1110":0,"1111":0,"1113":0,"1114":0,"1118":0,"1119":0,"1126":0,"1127":0,"1128":0,"1129":0,"1130":0,"1133":0,"1134":0,"1135":0,"1137":0,"1140":0,"1141":0,"1147":0,"1148":0,"1149":0,"1150":0,"1151":0,"1152":0,"1153":0,"1154":0,"1157":0,"1159":0,"1162":0,"1163":0,"1164":0,"1169":0,"1170":0,"1171":0,"1172":0,"1173":0,"1174":0,"1175":0,"1176":0,"1177":0,"1179":0,"1181":0,"1183":0,"1184":0,"1185":0,"1186":0,"1187":0,"1188":0,"1189":0,"1193":0,"1194":0,"1196":0,"1197":0,"1203":0,"1204":0,"1205":0,"1209":0,"1253":0,"1255":0,"1256":0,"1257":0,"1258":0,"1259":0,"1260":0,"1261":0,"1262":0,"1265":0,"1266":0,"1269":0,"1276":0,"1298":0,"1300":0,"1301":0,"1304":0,"1305":0,"1307":0,"1310":0,"1322":0,"1323":0,"1344":0,"1345":0,"1346":0,"1351":0,"1352":0,"1354":0,"1357":0,"1358":0,"1359":0,"1360":0,"1361":0,"1363":0,"1367":0,"1377":0,"1378":0,"1379":0,"1381":0,"1382":0,"1383":0,"1400":0,"1403":0,"1404":0,"1405":0,"1444":0,"1445":0,"1446":0,"1449":0,"1450":0,"1453":0,"1455":0,"1459":0,"1461":0,"1465":0,"1467":0,"1470":0,"1471":0,"1475":0,"1476":0,"1742":0,"1764":0,"1812":0,"1813":0,"1830":0,"1831":0,"1841":0,"1842":0,"1852":0,"1853":0,"1880":0,"1881":0,"1891":0,"1892":0,"1902":0,"1903":0,"1917":0,"1918":0,"1919":0,"1930":0,"1931":0,"1941":0,"1942":0,"1954":0,"1955":0,"1957":0,"1959":0,"1963":0,"1966":0,"1978":0,"1979":0,"1993":0,"1994":0,"1995":0,"2007":0,"2008":0,"2010":0,"2011":0,"2013":0,"2024":0,"2025":0,"2027":0,"2037":0,"2038":0,"2040":0,"2070":0,"2071":0,"2078":0,"2111":0,"2112":0,"2114":0,"2116":0,"2118":0,"2119":0,"2121":0,"2123":0,"2124":0,"2127":0,"2131":0,"2134":0,"2150":0,"2151":0,"2155":0,"2156":0,"2158":0,"2159":0,"2160":0,"2164":0,"2182":0,"2183":0,"2184":0,"2186":0,"2187":0,"2188":0,"2192":0,"2219":0,"2220":0,"2224":0,"2225":0,"2226":0,"2230":0,"2247":0,"2248":0,"2251":0,"2253":0,"2254":0,"2256":0,"2257":0,"2259":0,"2260":0,"2264":0,"2265":0,"2266":0,"2270":0,"2292":0,"2293":0,"2312":0,"2313":0,"2315":0,"2316":0,"2317":0,"2321":0,"2342":0,"2343":0,"2345":0,"2346":0,"2347":0,"2348":0,"2352":0,"2353":0,"2358":0,"2376":0,"2377":0,"2378":0,"2381":0,"2396":0,"2406":0,"2416":0,"2427":0,"2429":0,"2439":0,"2443":0,"2445":0,"2456":0,"2485":0,"2486":0,"2488":0,"2489":0,"2493":0,"2494":0,"2497":0,"2517":0,"2521":0,"2527":0,"2542":0,"2543":0,"2549":0,"2550":0,"2552":0,"2553":0,"2554":0,"2559":0,"2596":0,"2597":0,"2602":0,"2603":0,"2606":0,"2610":0,"2611":0,"2617":0,"2618":0,"2623":0,"2624":0,"2627":0,"2628":0,"2633":0,"2635":0,"2636":0,"2637":0,"2644":0,"2645":0,"2651":0,"2653":0,"2663":0,"2664":0,"2668":0,"2672":0,"2678":0,"2679":0,"2685":0,"2687":0,"2689":0,"2690":0,"2691":0,"2698":0,"2699":0,"2703":0,"2719":0,"2741":0,"2744":0,"2747":0,"2748":0,"2749":0,"2811":0,"2823":0,"2846":0,"2847":0,"2848":0,"2851":0,"2854":0,"2855":0,"2856":0,"2857":0,"2861":0,"2862":0,"2863":0,"2868":0,"2869":0,"2870":0,"2872":0,"2873":0,"2878":0,"2898":0,"2899":0,"2904":0,"2905":0,"2908":0,"2919":0,"2920":0,"2921":0,"2923":0,"2937":0,"2938":0,"2961":0,"2962":0,"2964":0,"2965":0,"2966":0,"2970":0,"2993":0,"2994":0,"2996":0,"2997":0,"2998":0,"2999":0,"3004":0,"3020":0,"3021":0,"3022":0,"3025":0,"3029":0,"3030":0,"3033":0,"3050":0,"3051":0,"3056":0,"3057":0,"3058":0,"3061":0,"3062":0,"3064":0,"3068":0,"3080":0,"3081":0,"3116":0,"3118":0,"3119":0,"3120":0,"3121":0,"3355":0,"3358":0,"3360":0,"3362":0,"3363":0,"3364":0,"3365":0,"3366":0,"3367":0,"3368":0,"3369":0,"3370":0,"3371":0,"3372":0,"3373":0,"3377":0,"3378":0,"3380":0,"3381":0,"3383":0,"3384":0,"3387":0,"3388":0,"3389":0,"3390":0,"3392":0,"3393":0,"3394":0,"3395":0,"3400":0,"3401":0,"3403":0,"3404":0,"3405":0,"3407":0,"3408":0,"3409":0,"3411":0,"3412":0,"3413":0,"3416":0,"3417":0,"3419":0,"3421":0,"3422":0,"3423":0,"3424":0,"3425":0,"3428":0,"3429":0,"3430":0,"3432":0,"3433":0,"3434":0,"3438":0,"3439":0,"3440":0,"3441":0,"3443":0,"3444":0,"3445":0,"3447":0,"3448":0,"3453":0,"3454":0,"3455":0,"3456":0,"3457":0,"3458":0,"3461":0,"3462":0,"3463":0,"3468":0,"3470":0,"3471":0,"3472":0,"3473":0,"3475":0,"3476":0,"3477":0,"3480":0,"3481":0,"3482":0,"3483":0,"3484":0,"3487":0,"3489":0,"3490":0,"3493":0,"3494":0,"3495":0,"3497":0,"3498":0,"3499":0,"3500":0,"3501":0,"3502":0,"3512":0,"3513":0,"3517":0,"3519":0,"3521":0,"3523":0,"3524":0,"3528":0,"3532":0,"3536":0,"3558":0,"3559":0,"3561":0,"3562":0,"3565":0,"3566":0,"3568":0,"3569":0,"3570":0,"3572":0,"3573":0,"3575":0,"3576":0,"3579":0,"3580":0,"3584":0,"3586":0}; -_yuitest_coverage["build/yui-base/yui-base.js"].functions = {"instanceOf:63":0,"YUI:58":0,"add:180":0,"remove:187":0,"handleLoad:197":0,"getLoader:204":0,"clobber:229":0,"applyConfig:263":0,"_config:310":0,"parseBasePath:384":0,"(anonymous 2):408":0,"_init:320":0,"_setup:508":0,"applyTo:541":0,"add:610":0,"_attach:656":0,"(anonymous 5):829":0,"(anonymous 4):828":0,"(anonymous 3):826":0,"_delayCallback:815":0,"(anonymous 6):943":0,"use:900":0,"_notify:960":0,"process:1013":0,"(anonymous 7):1104":0,"handleLoader:1077":0,"handleBoot:1183":0,"_use:990":0,"namespace:1252":0,"dump:1276":0,"error:1295":0,"guid:1321":0,"stamp:1343":0,"destroy:1376":0,"applyConfig:1444":0,"(anonymous 1):155":0,"_isNative:1812":0,"isArray:1830":0,"isBoolean:1841":0,"isDate:1852":0,"isFunction:1880":0,"isNull:1891":0,"isNumber:1902":0,"isObject:1917":0,"isString:1930":0,"isUndefined:1941":0,"isValue:1954":0,"(anonymous 9):1978":0,"(anonymous 10):1994":0,"sub:1993":0,"(anonymous 11):2007":0,"}:2009":0,"(anonymous 12):2024":0,"}:2026":0,"(anonymous 13):2037":0,"}:2039":0,"type:2070":0,"YArray:2111":0,"dedupe:2150":0,"(anonymous 14):2182":0,"}:2185":0,"hash:2219":0,"(anonymous 15):2247":0,"}:2249":0,"numericSort:2292":0,"(anonymous 16):2312":0,"}:2314":0,"test:2342":0,"Queue:2376":0,"_init:2388":0,"next:2405":0,"last:2415":0,"add:2426":0,"size:2438":0,"(anonymous 17):2488":0,"cached:2485":0,"getLocation:2517":0,"merge:2542":0,"mix:2596":0,"(anonymous 18):2735":0,"F:2744":0,"(anonymous 20):2747":0,"(anonymous 19):2742":0,"owns:2810":0,"keys:2846":0,"values:2898":0,"size:2919":0,"hasValue:2937":0,"each:2961":0,"some:2993":0,"getValue:3020":0,"setValue:3050":0,"isEmpty:3080":0,"(anonymous 22):3120":0,"numberify:3118":0,"parseUA:3116":0,"compareVersions:3558":0,"(anonymous 8):1742":0}; +_yuitest_coverage["build/yui-base/yui-base.js"].lines = {"11":0,"12":0,"58":0,"59":0,"64":0,"68":0,"69":0,"72":0,"99":0,"100":0,"128":0,"129":0,"133":0,"134":0,"138":0,"143":0,"144":0,"147":0,"150":0,"152":0,"155":0,"157":0,"181":0,"182":0,"183":0,"184":0,"188":0,"190":0,"191":0,"193":0,"194":0,"198":0,"199":0,"200":0,"201":0,"205":0,"210":0,"212":0,"213":0,"214":0,"215":0,"216":0,"218":0,"219":0,"221":0,"222":0,"224":0,"226":0,"230":0,"231":0,"232":0,"241":0,"242":0,"243":0,"245":0,"246":0,"249":0,"250":0,"253":0,"265":0,"267":0,"276":0,"277":0,"278":0,"279":0,"280":0,"281":0,"282":0,"283":0,"284":0,"285":0,"286":0,"287":0,"288":0,"291":0,"296":0,"297":0,"311":0,"321":0,"336":0,"338":0,"339":0,"385":0,"388":0,"389":0,"393":0,"397":0,"398":0,"400":0,"405":0,"409":0,"413":0,"414":0,"415":0,"416":0,"417":0,"418":0,"419":0,"420":0,"426":0,"431":0,"433":0,"435":0,"436":0,"437":0,"439":0,"441":0,"442":0,"443":0,"445":0,"446":0,"447":0,"451":0,"454":0,"455":0,"459":0,"462":0,"476":0,"477":0,"478":0,"479":0,"480":0,"481":0,"483":0,"485":0,"486":0,"489":0,"491":0,"493":0,"494":0,"496":0,"497":0,"509":0,"514":0,"515":0,"516":0,"520":0,"521":0,"523":0,"524":0,"542":0,"543":0,"544":0,"547":0,"548":0,"549":0,"550":0,"551":0,"552":0,"553":0,"554":0,"557":0,"560":0,"611":0,"612":0,"624":0,"625":0,"626":0,"628":0,"629":0,"630":0,"631":0,"632":0,"633":0,"634":0,"635":0,"636":0,"643":0,"657":0,"669":0,"670":0,"671":0,"672":0,"673":0,"674":0,"675":0,"676":0,"677":0,"678":0,"679":0,"685":0,"686":0,"688":0,"689":0,"690":0,"691":0,"693":0,"694":0,"695":0,"697":0,"698":0,"699":0,"700":0,"706":0,"707":0,"708":0,"709":0,"710":0,"714":0,"717":0,"718":0,"719":0,"720":0,"728":0,"729":0,"730":0,"731":0,"732":0,"733":0,"736":0,"739":0,"740":0,"741":0,"742":0,"744":0,"745":0,"746":0,"749":0,"750":0,"751":0,"752":0,"753":0,"755":0,"760":0,"761":0,"762":0,"763":0,"764":0,"766":0,"771":0,"772":0,"773":0,"775":0,"776":0,"778":0,"779":0,"784":0,"785":0,"786":0,"787":0,"788":0,"790":0,"801":0,"817":0,"820":0,"822":0,"823":0,"826":0,"827":0,"828":0,"829":0,"830":0,"831":0,"901":0,"911":0,"912":0,"913":0,"914":0,"917":0,"919":0,"920":0,"923":0,"924":0,"925":0,"926":0,"927":0,"931":0,"932":0,"934":0,"935":0,"939":0,"940":0,"941":0,"943":0,"944":0,"948":0,"961":0,"962":0,"963":0,"964":0,"965":0,"966":0,"968":0,"969":0,"971":0,"972":0,"974":0,"992":0,"993":0,"996":0,"1015":0,"1017":0,"1018":0,"1021":0,"1022":0,"1023":0,"1024":0,"1025":0,"1027":0,"1030":0,"1033":0,"1035":0,"1036":0,"1037":0,"1038":0,"1042":0,"1043":0,"1046":0,"1047":0,"1048":0,"1050":0,"1051":0,"1052":0,"1053":0,"1057":0,"1058":0,"1060":0,"1065":0,"1066":0,"1070":0,"1071":0,"1078":0,"1086":0,"1088":0,"1089":0,"1090":0,"1091":0,"1092":0,"1093":0,"1094":0,"1095":0,"1097":0,"1102":0,"1103":0,"1104":0,"1105":0,"1106":0,"1110":0,"1111":0,"1113":0,"1114":0,"1118":0,"1119":0,"1126":0,"1127":0,"1128":0,"1129":0,"1130":0,"1133":0,"1134":0,"1135":0,"1137":0,"1140":0,"1141":0,"1147":0,"1148":0,"1149":0,"1150":0,"1151":0,"1152":0,"1153":0,"1154":0,"1157":0,"1159":0,"1162":0,"1163":0,"1164":0,"1169":0,"1170":0,"1171":0,"1172":0,"1173":0,"1174":0,"1175":0,"1176":0,"1177":0,"1179":0,"1181":0,"1183":0,"1184":0,"1185":0,"1186":0,"1187":0,"1188":0,"1189":0,"1193":0,"1194":0,"1196":0,"1197":0,"1203":0,"1204":0,"1205":0,"1209":0,"1253":0,"1255":0,"1256":0,"1257":0,"1258":0,"1259":0,"1260":0,"1261":0,"1262":0,"1265":0,"1266":0,"1269":0,"1276":0,"1298":0,"1300":0,"1301":0,"1304":0,"1305":0,"1307":0,"1310":0,"1322":0,"1323":0,"1344":0,"1345":0,"1346":0,"1351":0,"1352":0,"1354":0,"1357":0,"1358":0,"1359":0,"1360":0,"1361":0,"1363":0,"1367":0,"1377":0,"1378":0,"1379":0,"1381":0,"1382":0,"1383":0,"1400":0,"1403":0,"1404":0,"1405":0,"1444":0,"1445":0,"1446":0,"1449":0,"1450":0,"1453":0,"1455":0,"1459":0,"1461":0,"1465":0,"1467":0,"1470":0,"1471":0,"1475":0,"1476":0,"1727":0,"1749":0,"1797":0,"1798":0,"1815":0,"1816":0,"1826":0,"1827":0,"1837":0,"1838":0,"1865":0,"1866":0,"1876":0,"1877":0,"1887":0,"1888":0,"1902":0,"1903":0,"1904":0,"1915":0,"1916":0,"1926":0,"1927":0,"1939":0,"1940":0,"1942":0,"1944":0,"1948":0,"1951":0,"1963":0,"1964":0,"1978":0,"1979":0,"1980":0,"1992":0,"1993":0,"1995":0,"1996":0,"1998":0,"2009":0,"2010":0,"2012":0,"2022":0,"2023":0,"2025":0,"2055":0,"2056":0,"2063":0,"2096":0,"2097":0,"2099":0,"2101":0,"2103":0,"2104":0,"2106":0,"2108":0,"2109":0,"2112":0,"2116":0,"2119":0,"2135":0,"2136":0,"2140":0,"2141":0,"2143":0,"2144":0,"2145":0,"2149":0,"2167":0,"2168":0,"2169":0,"2171":0,"2172":0,"2173":0,"2177":0,"2204":0,"2205":0,"2209":0,"2210":0,"2211":0,"2215":0,"2232":0,"2233":0,"2236":0,"2238":0,"2239":0,"2241":0,"2242":0,"2244":0,"2245":0,"2249":0,"2250":0,"2251":0,"2255":0,"2277":0,"2278":0,"2297":0,"2298":0,"2300":0,"2301":0,"2302":0,"2306":0,"2327":0,"2328":0,"2330":0,"2331":0,"2332":0,"2333":0,"2337":0,"2338":0,"2343":0,"2361":0,"2362":0,"2363":0,"2366":0,"2381":0,"2391":0,"2401":0,"2412":0,"2414":0,"2424":0,"2428":0,"2430":0,"2441":0,"2470":0,"2471":0,"2473":0,"2474":0,"2478":0,"2479":0,"2482":0,"2502":0,"2506":0,"2512":0,"2527":0,"2528":0,"2534":0,"2535":0,"2537":0,"2538":0,"2539":0,"2544":0,"2581":0,"2582":0,"2587":0,"2588":0,"2591":0,"2595":0,"2596":0,"2602":0,"2603":0,"2608":0,"2609":0,"2612":0,"2613":0,"2618":0,"2620":0,"2621":0,"2622":0,"2629":0,"2630":0,"2636":0,"2638":0,"2648":0,"2649":0,"2653":0,"2657":0,"2663":0,"2664":0,"2670":0,"2672":0,"2674":0,"2675":0,"2676":0,"2683":0,"2684":0,"2688":0,"2704":0,"2726":0,"2729":0,"2732":0,"2733":0,"2734":0,"2796":0,"2808":0,"2831":0,"2832":0,"2833":0,"2836":0,"2839":0,"2840":0,"2841":0,"2842":0,"2846":0,"2847":0,"2848":0,"2853":0,"2854":0,"2855":0,"2857":0,"2858":0,"2863":0,"2883":0,"2884":0,"2889":0,"2890":0,"2893":0,"2904":0,"2905":0,"2906":0,"2908":0,"2922":0,"2923":0,"2946":0,"2947":0,"2949":0,"2950":0,"2951":0,"2955":0,"2978":0,"2979":0,"2981":0,"2982":0,"2983":0,"2984":0,"2989":0,"3005":0,"3006":0,"3007":0,"3010":0,"3014":0,"3015":0,"3018":0,"3035":0,"3036":0,"3041":0,"3042":0,"3043":0,"3046":0,"3047":0,"3049":0,"3053":0,"3065":0,"3066":0,"3101":0,"3103":0,"3104":0,"3105":0,"3106":0,"3340":0,"3343":0,"3345":0,"3347":0,"3348":0,"3349":0,"3350":0,"3351":0,"3352":0,"3353":0,"3354":0,"3355":0,"3356":0,"3357":0,"3358":0,"3362":0,"3363":0,"3365":0,"3366":0,"3368":0,"3369":0,"3372":0,"3373":0,"3374":0,"3375":0,"3377":0,"3378":0,"3379":0,"3380":0,"3385":0,"3386":0,"3388":0,"3389":0,"3390":0,"3392":0,"3393":0,"3394":0,"3396":0,"3397":0,"3398":0,"3401":0,"3402":0,"3404":0,"3406":0,"3407":0,"3408":0,"3409":0,"3410":0,"3413":0,"3414":0,"3415":0,"3417":0,"3418":0,"3419":0,"3423":0,"3424":0,"3425":0,"3426":0,"3428":0,"3429":0,"3430":0,"3432":0,"3433":0,"3438":0,"3439":0,"3440":0,"3441":0,"3442":0,"3443":0,"3446":0,"3447":0,"3448":0,"3453":0,"3455":0,"3456":0,"3457":0,"3458":0,"3460":0,"3461":0,"3462":0,"3465":0,"3466":0,"3467":0,"3468":0,"3469":0,"3472":0,"3474":0,"3475":0,"3478":0,"3479":0,"3480":0,"3482":0,"3483":0,"3484":0,"3485":0,"3486":0,"3487":0,"3497":0,"3498":0,"3502":0,"3504":0,"3506":0,"3508":0,"3509":0,"3513":0,"3517":0,"3521":0,"3543":0,"3544":0,"3546":0,"3547":0,"3550":0,"3551":0,"3553":0,"3554":0,"3555":0,"3557":0,"3558":0,"3560":0,"3561":0,"3564":0,"3565":0,"3569":0,"3571":0}; +_yuitest_coverage["build/yui-base/yui-base.js"].functions = {"instanceOf:63":0,"YUI:58":0,"add:180":0,"remove:187":0,"handleLoad:197":0,"getLoader:204":0,"clobber:229":0,"applyConfig:263":0,"_config:310":0,"parseBasePath:384":0,"(anonymous 2):408":0,"_init:320":0,"_setup:508":0,"applyTo:541":0,"add:610":0,"_attach:656":0,"(anonymous 5):829":0,"(anonymous 4):828":0,"(anonymous 3):826":0,"_delayCallback:815":0,"(anonymous 6):943":0,"use:900":0,"_notify:960":0,"process:1013":0,"(anonymous 7):1104":0,"handleLoader:1077":0,"handleBoot:1183":0,"_use:990":0,"namespace:1252":0,"dump:1276":0,"error:1295":0,"guid:1321":0,"stamp:1343":0,"destroy:1376":0,"applyConfig:1444":0,"(anonymous 1):155":0,"_isNative:1797":0,"isArray:1815":0,"isBoolean:1826":0,"isDate:1837":0,"isFunction:1865":0,"isNull:1876":0,"isNumber:1887":0,"isObject:1902":0,"isString:1915":0,"isUndefined:1926":0,"isValue:1939":0,"(anonymous 9):1963":0,"(anonymous 10):1979":0,"sub:1978":0,"(anonymous 11):1992":0,"}:1994":0,"(anonymous 12):2009":0,"}:2011":0,"(anonymous 13):2022":0,"}:2024":0,"type:2055":0,"YArray:2096":0,"dedupe:2135":0,"(anonymous 14):2167":0,"}:2170":0,"hash:2204":0,"(anonymous 15):2232":0,"}:2234":0,"numericSort:2277":0,"(anonymous 16):2297":0,"}:2299":0,"test:2327":0,"Queue:2361":0,"_init:2373":0,"next:2390":0,"last:2400":0,"add:2411":0,"size:2423":0,"(anonymous 17):2473":0,"cached:2470":0,"getLocation:2502":0,"merge:2527":0,"mix:2581":0,"(anonymous 18):2720":0,"F:2729":0,"(anonymous 20):2732":0,"(anonymous 19):2727":0,"owns:2795":0,"keys:2831":0,"values:2883":0,"size:2904":0,"hasValue:2922":0,"each:2946":0,"some:2978":0,"getValue:3005":0,"setValue:3035":0,"isEmpty:3065":0,"(anonymous 22):3105":0,"numberify:3103":0,"parseUA:3101":0,"compareVersions:3543":0,"(anonymous 8):1727":0}; _yuitest_coverage["build/yui-base/yui-base.js"].coveredLines = 826; _yuitest_coverage["build/yui-base/yui-base.js"].coveredFunctions = 98; _yuitest_coverline("build/yui-base/yui-base.js", 11); @@ -2193,20 +2193,6 @@ relying on ES5 functionality, even when ES5 functionality is available. **/ /** -<<<<<<< HEAD -Event to wait for before executing the `use()` callback. - -The following events are supported: - - - available - - contentready - - domready - - load - -The event may be specified as a string or as an object hash that provides -additional event configuration, as illustrated in the example below. - -======= * Leverage native JSON stringify if the browser has a native * implementation. In general, this is a good idea. See the Known Issues * section in the JSON user guide for caveats. The default value is true @@ -2235,7 +2221,6 @@ Delay the `use` callback until a specific event has passed (`load`, `domready`, @property delayUntil @type String|Object @since 3.6.0 ->>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4 @example You can use `load` or `domready` strings by default: @@ -2261,7 +2246,7 @@ Or you can delay until a node is available (with `available` or `contentready`): @property {Object|String} delayUntil @since 3.6.0 **/ -_yuitest_coverline("build/yui-base/yui-base.js", 1742); +_yuitest_coverline("build/yui-base/yui-base.js", 1727); YUI.add('yui-base', function (Y, NAME) { /* @@ -2284,8 +2269,8 @@ YUI.add('yui-base', function (Y, NAME) { * @static */ -_yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 8)", 1742); -_yuitest_coverline("build/yui-base/yui-base.js", 1764); +_yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 8)", 1727); +_yuitest_coverline("build/yui-base/yui-base.js", 1749); var L = Y.Lang || (Y.Lang = {}), STRING_PROTO = String.prototype, @@ -2334,10 +2319,10 @@ other libraries. @protected @since 3.5.0 **/ -_yuitest_coverline("build/yui-base/yui-base.js", 1812); +_yuitest_coverline("build/yui-base/yui-base.js", 1797); L._isNative = function (fn) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "_isNative", 1812); -_yuitest_coverline("build/yui-base/yui-base.js", 1813); + _yuitest_coverfunc("build/yui-base/yui-base.js", "_isNative", 1797); +_yuitest_coverline("build/yui-base/yui-base.js", 1798); return !!(Y.config.useNativeES5 && fn && NATIVE_FN_REGEX.test(fn)); }; @@ -2355,10 +2340,10 @@ return !!(Y.config.useNativeES5 && fn && NATIVE_FN_REGEX.test(fn)); * @return {boolean} true if o is an array. * @static */ -_yuitest_coverline("build/yui-base/yui-base.js", 1830); +_yuitest_coverline("build/yui-base/yui-base.js", 1815); L.isArray = L._isNative(Array.isArray) ? Array.isArray : function (o) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "isArray", 1830); -_yuitest_coverline("build/yui-base/yui-base.js", 1831); + _yuitest_coverfunc("build/yui-base/yui-base.js", "isArray", 1815); +_yuitest_coverline("build/yui-base/yui-base.js", 1816); return L.type(o) === 'array'; }; @@ -2369,10 +2354,10 @@ return L.type(o) === 'array'; * @param o The object to test. * @return {boolean} true if o is a boolean. */ -_yuitest_coverline("build/yui-base/yui-base.js", 1841); +_yuitest_coverline("build/yui-base/yui-base.js", 1826); L.isBoolean = function(o) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "isBoolean", 1841); -_yuitest_coverline("build/yui-base/yui-base.js", 1842); + _yuitest_coverfunc("build/yui-base/yui-base.js", "isBoolean", 1826); +_yuitest_coverline("build/yui-base/yui-base.js", 1827); return typeof o === 'boolean'; }; @@ -2383,10 +2368,10 @@ return typeof o === 'boolean'; * @param o The object to test. * @return {boolean} true if o is a date. */ -_yuitest_coverline("build/yui-base/yui-base.js", 1852); +_yuitest_coverline("build/yui-base/yui-base.js", 1837); L.isDate = function(o) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "isDate", 1852); -_yuitest_coverline("build/yui-base/yui-base.js", 1853); + _yuitest_coverfunc("build/yui-base/yui-base.js", "isDate", 1837); +_yuitest_coverline("build/yui-base/yui-base.js", 1838); return L.type(o) === 'date' && o.toString() !== 'Invalid Date' && !isNaN(o); }; @@ -2414,10 +2399,10 @@ return L.type(o) === 'date' && o.toString() !== 'Invalid Date' && !isNaN(o); * @param o The object to test. * @return {boolean} true if o is a function. */ -_yuitest_coverline("build/yui-base/yui-base.js", 1880); +_yuitest_coverline("build/yui-base/yui-base.js", 1865); L.isFunction = function(o) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "isFunction", 1880); -_yuitest_coverline("build/yui-base/yui-base.js", 1881); + _yuitest_coverfunc("build/yui-base/yui-base.js", "isFunction", 1865); +_yuitest_coverline("build/yui-base/yui-base.js", 1866); return L.type(o) === 'function'; }; @@ -2428,10 +2413,10 @@ return L.type(o) === 'function'; * @param o The object to test. * @return {boolean} true if o is null. */ -_yuitest_coverline("build/yui-base/yui-base.js", 1891); +_yuitest_coverline("build/yui-base/yui-base.js", 1876); L.isNull = function(o) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "isNull", 1891); -_yuitest_coverline("build/yui-base/yui-base.js", 1892); + _yuitest_coverfunc("build/yui-base/yui-base.js", "isNull", 1876); +_yuitest_coverline("build/yui-base/yui-base.js", 1877); return o === null; }; @@ -2442,10 +2427,10 @@ return o === null; * @param o The object to test. * @return {boolean} true if o is a number. */ -_yuitest_coverline("build/yui-base/yui-base.js", 1902); +_yuitest_coverline("build/yui-base/yui-base.js", 1887); L.isNumber = function(o) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "isNumber", 1902); -_yuitest_coverline("build/yui-base/yui-base.js", 1903); + _yuitest_coverfunc("build/yui-base/yui-base.js", "isNumber", 1887); +_yuitest_coverline("build/yui-base/yui-base.js", 1888); return typeof o === 'number' && isFinite(o); }; @@ -2460,12 +2445,12 @@ return typeof o === 'number' && isFinite(o); * @return {boolean} true if o is an object. * @see isPlainObject */ -_yuitest_coverline("build/yui-base/yui-base.js", 1917); +_yuitest_coverline("build/yui-base/yui-base.js", 1902); L.isObject = function(o, failfn) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "isObject", 1917); -_yuitest_coverline("build/yui-base/yui-base.js", 1918); + _yuitest_coverfunc("build/yui-base/yui-base.js", "isObject", 1902); +_yuitest_coverline("build/yui-base/yui-base.js", 1903); var t = typeof o; - _yuitest_coverline("build/yui-base/yui-base.js", 1919); + _yuitest_coverline("build/yui-base/yui-base.js", 1904); return (o && (t === 'object' || (!failfn && (t === 'function' || L.isFunction(o))))) || false; }; @@ -2477,10 +2462,10 @@ return (o && (t === 'object' || * @param o The object to test. * @return {boolean} true if o is a string. */ -_yuitest_coverline("build/yui-base/yui-base.js", 1930); +_yuitest_coverline("build/yui-base/yui-base.js", 1915); L.isString = function(o) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "isString", 1930); -_yuitest_coverline("build/yui-base/yui-base.js", 1931); + _yuitest_coverfunc("build/yui-base/yui-base.js", "isString", 1915); +_yuitest_coverline("build/yui-base/yui-base.js", 1916); return typeof o === 'string'; }; @@ -2491,10 +2476,10 @@ return typeof o === 'string'; * @param o The object to test. * @return {boolean} true if o is undefined. */ -_yuitest_coverline("build/yui-base/yui-base.js", 1941); +_yuitest_coverline("build/yui-base/yui-base.js", 1926); L.isUndefined = function(o) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "isUndefined", 1941); -_yuitest_coverline("build/yui-base/yui-base.js", 1942); + _yuitest_coverfunc("build/yui-base/yui-base.js", "isUndefined", 1926); +_yuitest_coverline("build/yui-base/yui-base.js", 1927); return typeof o === 'undefined'; }; @@ -2507,25 +2492,25 @@ return typeof o === 'undefined'; * @param o The item to test. * @return {boolean} true if it is not null/undefined/NaN || false. */ -_yuitest_coverline("build/yui-base/yui-base.js", 1954); +_yuitest_coverline("build/yui-base/yui-base.js", 1939); L.isValue = function(o) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "isValue", 1954); -_yuitest_coverline("build/yui-base/yui-base.js", 1955); + _yuitest_coverfunc("build/yui-base/yui-base.js", "isValue", 1939); +_yuitest_coverline("build/yui-base/yui-base.js", 1940); var t = L.type(o); - _yuitest_coverline("build/yui-base/yui-base.js", 1957); + _yuitest_coverline("build/yui-base/yui-base.js", 1942); switch (t) { case 'number': - _yuitest_coverline("build/yui-base/yui-base.js", 1959); + _yuitest_coverline("build/yui-base/yui-base.js", 1944); return isFinite(o); case 'null': // fallthru case 'undefined': - _yuitest_coverline("build/yui-base/yui-base.js", 1963); + _yuitest_coverline("build/yui-base/yui-base.js", 1948); return false; default: - _yuitest_coverline("build/yui-base/yui-base.js", 1966); + _yuitest_coverline("build/yui-base/yui-base.js", 1951); return !!t; } }; @@ -2538,10 +2523,10 @@ return !!t; * @static * @since 3.3.0 */ -_yuitest_coverline("build/yui-base/yui-base.js", 1978); +_yuitest_coverline("build/yui-base/yui-base.js", 1963); L.now = Date.now || function () { - _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 9)", 1978); -_yuitest_coverline("build/yui-base/yui-base.js", 1979); + _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 9)", 1963); +_yuitest_coverline("build/yui-base/yui-base.js", 1964); return new Date().getTime(); }; @@ -2556,13 +2541,13 @@ return new Date().getTime(); * @static * @since 3.2.0 */ -_yuitest_coverline("build/yui-base/yui-base.js", 1993); +_yuitest_coverline("build/yui-base/yui-base.js", 1978); L.sub = function(s, o) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "sub", 1993); -_yuitest_coverline("build/yui-base/yui-base.js", 1994); + _yuitest_coverfunc("build/yui-base/yui-base.js", "sub", 1978); +_yuitest_coverline("build/yui-base/yui-base.js", 1979); return s.replace ? s.replace(SUBREGEX, function (match, key) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 10)", 1994); -_yuitest_coverline("build/yui-base/yui-base.js", 1995); + _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 10)", 1979); +_yuitest_coverline("build/yui-base/yui-base.js", 1980); return L.isUndefined(o[key]) ? match : o[key]; }) : s; }; @@ -2575,19 +2560,19 @@ return L.isUndefined(o[key]) ? match : o[key]; * @param s {string} the string to trim. * @return {string} the trimmed string. */ -_yuitest_coverline("build/yui-base/yui-base.js", 2007); +_yuitest_coverline("build/yui-base/yui-base.js", 1992); L.trim = STRING_PROTO.trim ? function(s) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 11)", 2007); -_yuitest_coverline("build/yui-base/yui-base.js", 2008); + _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 11)", 1992); +_yuitest_coverline("build/yui-base/yui-base.js", 1993); return s && s.trim ? s.trim() : s; } : function (s) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 2009); -_yuitest_coverline("build/yui-base/yui-base.js", 2010); + _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 1994); +_yuitest_coverline("build/yui-base/yui-base.js", 1995); try { - _yuitest_coverline("build/yui-base/yui-base.js", 2011); + _yuitest_coverline("build/yui-base/yui-base.js", 1996); return s.replace(TRIMREGEX, ''); } catch (e) { - _yuitest_coverline("build/yui-base/yui-base.js", 2013); + _yuitest_coverline("build/yui-base/yui-base.js", 1998); return s; } }; @@ -2599,14 +2584,14 @@ return s; * @param s {string} the string to trim. * @return {string} the trimmed string. */ -_yuitest_coverline("build/yui-base/yui-base.js", 2024); +_yuitest_coverline("build/yui-base/yui-base.js", 2009); L.trimLeft = STRING_PROTO.trimLeft ? function (s) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 12)", 2024); -_yuitest_coverline("build/yui-base/yui-base.js", 2025); + _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 12)", 2009); +_yuitest_coverline("build/yui-base/yui-base.js", 2010); return s.trimLeft(); } : function (s) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 2026); -_yuitest_coverline("build/yui-base/yui-base.js", 2027); + _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 2011); +_yuitest_coverline("build/yui-base/yui-base.js", 2012); return s.replace(/^\s+/, ''); }; @@ -2617,14 +2602,14 @@ return s.replace(/^\s+/, ''); * @param s {string} the string to trim. * @return {string} the trimmed string. */ -_yuitest_coverline("build/yui-base/yui-base.js", 2037); +_yuitest_coverline("build/yui-base/yui-base.js", 2022); L.trimRight = STRING_PROTO.trimRight ? function (s) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 13)", 2037); -_yuitest_coverline("build/yui-base/yui-base.js", 2038); + _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 13)", 2022); +_yuitest_coverline("build/yui-base/yui-base.js", 2023); return s.trimRight(); } : function (s) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 2039); -_yuitest_coverline("build/yui-base/yui-base.js", 2040); + _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 2024); +_yuitest_coverline("build/yui-base/yui-base.js", 2025); return s.replace(/\s+$/, ''); }; @@ -2655,10 +2640,10 @@ Known issues: @return {string} the detected type. @static **/ -_yuitest_coverline("build/yui-base/yui-base.js", 2070); +_yuitest_coverline("build/yui-base/yui-base.js", 2055); L.type = function(o) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "type", 2070); -_yuitest_coverline("build/yui-base/yui-base.js", 2071); + _yuitest_coverfunc("build/yui-base/yui-base.js", "type", 2055); +_yuitest_coverline("build/yui-base/yui-base.js", 2056); return TYPES[typeof o] || TYPES[TOSTRING.call(o)] || (o ? 'object' : 'null'); }; /** @@ -2666,7 +2651,7 @@ return TYPES[typeof o] || TYPES[TOSTRING.call(o)] || (o ? 'object' : 'null'); @submodule yui-base */ -_yuitest_coverline("build/yui-base/yui-base.js", 2078); +_yuitest_coverline("build/yui-base/yui-base.js", 2063); var Lang = Y.Lang, Native = Array.prototype, @@ -2700,42 +2685,42 @@ pass `true` as the value of the _force_ parameter. @return {Array} A native array created from _thing_, according to the rules described above. **/ -_yuitest_coverline("build/yui-base/yui-base.js", 2111); +_yuitest_coverline("build/yui-base/yui-base.js", 2096); function YArray(thing, startIndex, force) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "YArray", 2111); -_yuitest_coverline("build/yui-base/yui-base.js", 2112); + _yuitest_coverfunc("build/yui-base/yui-base.js", "YArray", 2096); +_yuitest_coverline("build/yui-base/yui-base.js", 2097); var len, result; - _yuitest_coverline("build/yui-base/yui-base.js", 2114); + _yuitest_coverline("build/yui-base/yui-base.js", 2099); startIndex || (startIndex = 0); - _yuitest_coverline("build/yui-base/yui-base.js", 2116); + _yuitest_coverline("build/yui-base/yui-base.js", 2101); if (force || YArray.test(thing)) { // IE throws when trying to slice HTMLElement collections. - _yuitest_coverline("build/yui-base/yui-base.js", 2118); + _yuitest_coverline("build/yui-base/yui-base.js", 2103); try { - _yuitest_coverline("build/yui-base/yui-base.js", 2119); + _yuitest_coverline("build/yui-base/yui-base.js", 2104); return Native.slice.call(thing, startIndex); } catch (ex) { - _yuitest_coverline("build/yui-base/yui-base.js", 2121); + _yuitest_coverline("build/yui-base/yui-base.js", 2106); result = []; - _yuitest_coverline("build/yui-base/yui-base.js", 2123); + _yuitest_coverline("build/yui-base/yui-base.js", 2108); for (len = thing.length; startIndex < len; ++startIndex) { - _yuitest_coverline("build/yui-base/yui-base.js", 2124); + _yuitest_coverline("build/yui-base/yui-base.js", 2109); result.push(thing[startIndex]); } - _yuitest_coverline("build/yui-base/yui-base.js", 2127); + _yuitest_coverline("build/yui-base/yui-base.js", 2112); return result; } } - _yuitest_coverline("build/yui-base/yui-base.js", 2131); + _yuitest_coverline("build/yui-base/yui-base.js", 2116); return [thing]; } -_yuitest_coverline("build/yui-base/yui-base.js", 2134); +_yuitest_coverline("build/yui-base/yui-base.js", 2119); Y.Array = YArray; /** @@ -2752,29 +2737,29 @@ Using `dedupe()` with non-string values may result in unexpected behavior. @static @since 3.4.0 **/ -_yuitest_coverline("build/yui-base/yui-base.js", 2150); +_yuitest_coverline("build/yui-base/yui-base.js", 2135); YArray.dedupe = function (array) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "dedupe", 2150); -_yuitest_coverline("build/yui-base/yui-base.js", 2151); + _yuitest_coverfunc("build/yui-base/yui-base.js", "dedupe", 2135); +_yuitest_coverline("build/yui-base/yui-base.js", 2136); var hash = {}, results = [], i, item, len; - _yuitest_coverline("build/yui-base/yui-base.js", 2155); + _yuitest_coverline("build/yui-base/yui-base.js", 2140); for (i = 0, len = array.length; i < len; ++i) { - _yuitest_coverline("build/yui-base/yui-base.js", 2156); + _yuitest_coverline("build/yui-base/yui-base.js", 2141); item = array[i]; - _yuitest_coverline("build/yui-base/yui-base.js", 2158); + _yuitest_coverline("build/yui-base/yui-base.js", 2143); if (!hasOwn.call(hash, item)) { - _yuitest_coverline("build/yui-base/yui-base.js", 2159); + _yuitest_coverline("build/yui-base/yui-base.js", 2144); hash[item] = 1; - _yuitest_coverline("build/yui-base/yui-base.js", 2160); + _yuitest_coverline("build/yui-base/yui-base.js", 2145); results.push(item); } } - _yuitest_coverline("build/yui-base/yui-base.js", 2164); + _yuitest_coverline("build/yui-base/yui-base.js", 2149); return results; }; @@ -2793,25 +2778,25 @@ the native ES5 `Array.forEach()` method if available. @return {YUI} The YUI instance. @static **/ -_yuitest_coverline("build/yui-base/yui-base.js", 2182); +_yuitest_coverline("build/yui-base/yui-base.js", 2167); YArray.each = YArray.forEach = Lang._isNative(Native.forEach) ? function (array, fn, thisObj) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 14)", 2182); -_yuitest_coverline("build/yui-base/yui-base.js", 2183); + _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 14)", 2167); +_yuitest_coverline("build/yui-base/yui-base.js", 2168); Native.forEach.call(array || [], fn, thisObj || Y); - _yuitest_coverline("build/yui-base/yui-base.js", 2184); + _yuitest_coverline("build/yui-base/yui-base.js", 2169); return Y; } : function (array, fn, thisObj) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 2185); -_yuitest_coverline("build/yui-base/yui-base.js", 2186); + _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 2170); +_yuitest_coverline("build/yui-base/yui-base.js", 2171); for (var i = 0, len = (array && array.length) || 0; i < len; ++i) { - _yuitest_coverline("build/yui-base/yui-base.js", 2187); + _yuitest_coverline("build/yui-base/yui-base.js", 2172); if (i in array) { - _yuitest_coverline("build/yui-base/yui-base.js", 2188); + _yuitest_coverline("build/yui-base/yui-base.js", 2173); fn.call(thisObj || Y, array[i], i, array); } } - _yuitest_coverline("build/yui-base/yui-base.js", 2192); + _yuitest_coverline("build/yui-base/yui-base.js", 2177); return Y; }; @@ -2839,24 +2824,24 @@ values. @return {Object} Hash using the first array as keys and the second as values. @static **/ -_yuitest_coverline("build/yui-base/yui-base.js", 2219); +_yuitest_coverline("build/yui-base/yui-base.js", 2204); YArray.hash = function (keys, values) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "hash", 2219); -_yuitest_coverline("build/yui-base/yui-base.js", 2220); + _yuitest_coverfunc("build/yui-base/yui-base.js", "hash", 2204); +_yuitest_coverline("build/yui-base/yui-base.js", 2205); var hash = {}, vlen = (values && values.length) || 0, i, len; - _yuitest_coverline("build/yui-base/yui-base.js", 2224); + _yuitest_coverline("build/yui-base/yui-base.js", 2209); for (i = 0, len = keys.length; i < len; ++i) { - _yuitest_coverline("build/yui-base/yui-base.js", 2225); + _yuitest_coverline("build/yui-base/yui-base.js", 2210); if (i in keys) { - _yuitest_coverline("build/yui-base/yui-base.js", 2226); + _yuitest_coverline("build/yui-base/yui-base.js", 2211); hash[keys[i]] = vlen > i && i in values ? values[i] : true; } } - _yuitest_coverline("build/yui-base/yui-base.js", 2230); + _yuitest_coverline("build/yui-base/yui-base.js", 2215); return hash; }; @@ -2874,44 +2859,44 @@ This method wraps the native ES5 `Array.indexOf()` method if available. found. @static **/ -_yuitest_coverline("build/yui-base/yui-base.js", 2247); +_yuitest_coverline("build/yui-base/yui-base.js", 2232); YArray.indexOf = Lang._isNative(Native.indexOf) ? function (array, value, from) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 15)", 2247); -_yuitest_coverline("build/yui-base/yui-base.js", 2248); + _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 15)", 2232); +_yuitest_coverline("build/yui-base/yui-base.js", 2233); return Native.indexOf.call(array, value, from); } : function (array, value, from) { // http://es5.github.com/#x15.4.4.14 - _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 2249); -_yuitest_coverline("build/yui-base/yui-base.js", 2251); + _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 2234); +_yuitest_coverline("build/yui-base/yui-base.js", 2236); var len = array.length; - _yuitest_coverline("build/yui-base/yui-base.js", 2253); + _yuitest_coverline("build/yui-base/yui-base.js", 2238); from = +from || 0; - _yuitest_coverline("build/yui-base/yui-base.js", 2254); + _yuitest_coverline("build/yui-base/yui-base.js", 2239); from = (from > 0 || -1) * Math.floor(Math.abs(from)); - _yuitest_coverline("build/yui-base/yui-base.js", 2256); + _yuitest_coverline("build/yui-base/yui-base.js", 2241); if (from < 0) { - _yuitest_coverline("build/yui-base/yui-base.js", 2257); + _yuitest_coverline("build/yui-base/yui-base.js", 2242); from += len; - _yuitest_coverline("build/yui-base/yui-base.js", 2259); + _yuitest_coverline("build/yui-base/yui-base.js", 2244); if (from < 0) { - _yuitest_coverline("build/yui-base/yui-base.js", 2260); + _yuitest_coverline("build/yui-base/yui-base.js", 2245); from = 0; } } - _yuitest_coverline("build/yui-base/yui-base.js", 2264); + _yuitest_coverline("build/yui-base/yui-base.js", 2249); for (; from < len; ++from) { - _yuitest_coverline("build/yui-base/yui-base.js", 2265); + _yuitest_coverline("build/yui-base/yui-base.js", 2250); if (from in array && array[from] === value) { - _yuitest_coverline("build/yui-base/yui-base.js", 2266); + _yuitest_coverline("build/yui-base/yui-base.js", 2251); return from; } } - _yuitest_coverline("build/yui-base/yui-base.js", 2270); + _yuitest_coverline("build/yui-base/yui-base.js", 2255); return -1; }; @@ -2934,10 +2919,10 @@ to sort values in numeric order. @return {Number} Difference between _a_ and _b_. @static **/ -_yuitest_coverline("build/yui-base/yui-base.js", 2292); +_yuitest_coverline("build/yui-base/yui-base.js", 2277); YArray.numericSort = function (a, b) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "numericSort", 2292); -_yuitest_coverline("build/yui-base/yui-base.js", 2293); + _yuitest_coverfunc("build/yui-base/yui-base.js", "numericSort", 2277); +_yuitest_coverline("build/yui-base/yui-base.js", 2278); return a - b; }; @@ -2957,23 +2942,23 @@ value from the function will stop the processing of remaining items. items in the array; `false` otherwise. @static **/ -_yuitest_coverline("build/yui-base/yui-base.js", 2312); +_yuitest_coverline("build/yui-base/yui-base.js", 2297); YArray.some = Lang._isNative(Native.some) ? function (array, fn, thisObj) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 16)", 2312); -_yuitest_coverline("build/yui-base/yui-base.js", 2313); + _yuitest_coverfunc("build/yui-base/yui-base.js", "(anonymous 16)", 2297); +_yuitest_coverline("build/yui-base/yui-base.js", 2298); return Native.some.call(array, fn, thisObj); } : function (array, fn, thisObj) { - _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 2314); -_yuitest_coverline("build/yui-base/yui-base.js", 2315); + _yuitest_coverfunc("build/yui-base/yui-base.js", "}", 2299); +_yuitest_coverline("build/yui-base/yui-base.js", 2300); for (var i = 0, len = array.length; i < len; ++i) { - _yuitest_coverline("build/yui-base/yui-base.js", 2316); + _yuitest_coverline("build/yui-base/yui-base.js", 2301); if (i in array && fn.call(thisObj, array[i], i, array)) { - _yuitest_coverline("build/yui-base/yui-base.js", 2317); + _yuitest_coverline("build/yui-base/yui-base.js", 2302); return true; } } - _yuitest_coverline("build/yui-base/yui-base.js", 2321); + _yuitest_coverline("build/yui-base/yui-base.js", 2306); return false; }; @@ -2995,32 +2980,32 @@ collections, such as `` and ``","elements, are not automatically converted to arrays. To force a conversion,","pass `true` as the value of the _force_ parameter.","","@class Array","@constructor","@param {Any} thing The thing to arrayify.","@param {Number} [startIndex=0] If non-zero and _thing_ is an array or array-like"," collection, a subset of items starting at the specified index will be"," returned.","@param {Boolean} [force=false] If `true`, _thing_ will be treated as an"," array-like collection no matter what.","@return {Array} A native array created from _thing_, according to the rules"," described above.","**/","function YArray(thing, startIndex, force) {"," var len, result;",""," startIndex || (startIndex = 0);",""," if (force || YArray.test(thing)) {"," // IE throws when trying to slice HTMLElement collections."," try {"," return Native.slice.call(thing, startIndex);"," } catch (ex) {"," result = [];",""," for (len = thing.length; startIndex < len; ++startIndex) {"," result.push(thing[startIndex]);"," }",""," return result;"," }"," }",""," return [thing];","}","","Y.Array = YArray;","","/**","Dedupes an array of strings, returning an array that's guaranteed to contain","only one copy of a given string.","","This method differs from `Array.unique()` in that it's optimized for use only","with strings, whereas `unique` may be used with other types (but is slower).","Using `dedupe()` with non-string values may result in unexpected behavior.","","@method dedupe","@param {String[]} array Array of strings to dedupe.","@return {Array} Deduped copy of _array_.","@static","@since 3.4.0","**/","YArray.dedupe = function (array) {"," var hash = {},"," results = [],"," i, item, len;",""," for (i = 0, len = array.length; i < len; ++i) {"," item = array[i];",""," if (!hasOwn.call(hash, item)) {"," hash[item] = 1;"," results.push(item);"," }"," }",""," return results;","};","","/**","Executes the supplied function on each item in the array. This method wraps","the native ES5 `Array.forEach()` method if available.","","@method each","@param {Array} array Array to iterate.","@param {Function} fn Function to execute on each item in the array. The function"," will receive the following arguments:"," @param {Any} fn.item Current array item."," @param {Number} fn.index Current array index."," @param {Array} fn.array Array being iterated.","@param {Object} [thisObj] `this` object to use when calling _fn_.","@return {YUI} The YUI instance.","@static","**/","YArray.each = YArray.forEach = Lang._isNative(Native.forEach) ? function (array, fn, thisObj) {"," Native.forEach.call(array || [], fn, thisObj || Y);"," return Y;","} : function (array, fn, thisObj) {"," for (var i = 0, len = (array && array.length) || 0; i < len; ++i) {"," if (i in array) {"," fn.call(thisObj || Y, array[i], i, array);"," }"," }",""," return Y;","};","","/**","Alias for `each()`.","","@method forEach","@static","**/","","/**","Returns an object using the first array as keys and the second as values. If","the second array is not provided, or if it doesn't contain the same number of","values as the first array, then `true` will be used in place of the missing","values.","","@example",""," Y.Array.hash(['a', 'b', 'c'], ['foo', 'bar']);"," // => {a: 'foo', b: 'bar', c: true}","","@method hash","@param {String[]} keys Array of strings to use as keys.","@param {Array} [values] Array to use as values.","@return {Object} Hash using the first array as keys and the second as values.","@static","**/","YArray.hash = function (keys, values) {"," var hash = {},"," vlen = (values && values.length) || 0,"," i, len;",""," for (i = 0, len = keys.length; i < len; ++i) {"," if (i in keys) {"," hash[keys[i]] = vlen > i && i in values ? values[i] : true;"," }"," }",""," return hash;","};","","/**","Returns the index of the first item in the array that's equal (using a strict","equality check) to the specified _value_, or `-1` if the value isn't found.","","This method wraps the native ES5 `Array.indexOf()` method if available.","","@method indexOf","@param {Array} array Array to search.","@param {Any} value Value to search for.","@param {Number} [from=0] The index at which to begin the search.","@return {Number} Index of the item strictly equal to _value_, or `-1` if not"," found.","@static","**/","YArray.indexOf = Lang._isNative(Native.indexOf) ? function (array, value, from) {"," return Native.indexOf.call(array, value, from);","} : function (array, value, from) {"," // http://es5.github.com/#x15.4.4.14"," var len = array.length;",""," from = +from || 0;"," from = (from > 0 || -1) * Math.floor(Math.abs(from));",""," if (from < 0) {"," from += len;",""," if (from < 0) {"," from = 0;"," }"," }",""," for (; from < len; ++from) {"," if (from in array && array[from] === value) {"," return from;"," }"," }",""," return -1;","};","","/**","Numeric sort convenience function.","","The native `Array.prototype.sort()` function converts values to strings and","sorts them in lexicographic order, which is unsuitable for sorting numeric","values. Provide `Array.numericSort` as a custom sort function when you want","to sort values in numeric order.","","@example",""," [42, 23, 8, 16, 4, 15].sort(Y.Array.numericSort);"," // => [4, 8, 15, 16, 23, 42]","","@method numericSort","@param {Number} a First value to compare.","@param {Number} b Second value to compare.","@return {Number} Difference between _a_ and _b_.","@static","**/","YArray.numericSort = function (a, b) {"," return a - b;","};","","/**","Executes the supplied function on each item in the array. Returning a truthy","value from the function will stop the processing of remaining items.","","@method some","@param {Array} array Array to iterate over.","@param {Function} fn Function to execute on each item. The function will receive"," the following arguments:"," @param {Any} fn.value Current array item."," @param {Number} fn.index Current array index."," @param {Array} fn.array Array being iterated over.","@param {Object} [thisObj] `this` object to use when calling _fn_.","@return {Boolean} `true` if the function returns a truthy value on any of the"," items in the array; `false` otherwise.","@static","**/","YArray.some = Lang._isNative(Native.some) ? function (array, fn, thisObj) {"," return Native.some.call(array, fn, thisObj);","} : function (array, fn, thisObj) {"," for (var i = 0, len = array.length; i < len; ++i) {"," if (i in array && fn.call(thisObj, array[i], i, array)) {"," return true;"," }"," }",""," return false;","};","","/**","Evaluates _obj_ to determine if it's an array, an array-like collection, or","something else. This is useful when working with the function `arguments`","collection and `HTMLElement` collections.","","Note: This implementation doesn't consider elements that are also","collections, such as `` and ``","elements, are not automatically converted to arrays. To force a conversion,","pass `true` as the value of the _force_ parameter.","","@class Array","@constructor","@param {Any} thing The thing to arrayify.","@param {Number} [startIndex=0] If non-zero and _thing_ is an array or array-like"," collection, a subset of items starting at the specified index will be"," returned.","@param {Boolean} [force=false] If `true`, _thing_ will be treated as an"," array-like collection no matter what.","@return {Array} A native array created from _thing_, according to the rules"," described above.","**/","function YArray(thing, startIndex, force) {"," var len, result;",""," startIndex || (startIndex = 0);",""," if (force || YArray.test(thing)) {"," // IE throws when trying to slice HTMLElement collections."," try {"," return Native.slice.call(thing, startIndex);"," } catch (ex) {"," result = [];",""," for (len = thing.length; startIndex < len; ++startIndex) {"," result.push(thing[startIndex]);"," }",""," return result;"," }"," }",""," return [thing];","}","","Y.Array = YArray;","","/**","Dedupes an array of strings, returning an array that's guaranteed to contain","only one copy of a given string.","","This method differs from `Array.unique()` in that it's optimized for use only","with strings, whereas `unique` may be used with other types (but is slower).","Using `dedupe()` with non-string values may result in unexpected behavior.","","@method dedupe","@param {String[]} array Array of strings to dedupe.","@return {Array} Deduped copy of _array_.","@static","@since 3.4.0","**/","YArray.dedupe = function (array) {"," var hash = {},"," results = [],"," i, item, len;",""," for (i = 0, len = array.length; i < len; ++i) {"," item = array[i];",""," if (!hasOwn.call(hash, item)) {"," hash[item] = 1;"," results.push(item);"," }"," }",""," return results;","};","","/**","Executes the supplied function on each item in the array. This method wraps","the native ES5 `Array.forEach()` method if available.","","@method each","@param {Array} array Array to iterate.","@param {Function} fn Function to execute on each item in the array. The function"," will receive the following arguments:"," @param {Any} fn.item Current array item."," @param {Number} fn.index Current array index."," @param {Array} fn.array Array being iterated.","@param {Object} [thisObj] `this` object to use when calling _fn_.","@return {YUI} The YUI instance.","@static","**/","YArray.each = YArray.forEach = Lang._isNative(Native.forEach) ? function (array, fn, thisObj) {"," Native.forEach.call(array || [], fn, thisObj || Y);"," return Y;","} : function (array, fn, thisObj) {"," for (var i = 0, len = (array && array.length) || 0; i < len; ++i) {"," if (i in array) {"," fn.call(thisObj || Y, array[i], i, array);"," }"," }",""," return Y;","};","","/**","Alias for `each()`.","","@method forEach","@static","**/","","/**","Returns an object using the first array as keys and the second as values. If","the second array is not provided, or if it doesn't contain the same number of","values as the first array, then `true` will be used in place of the missing","values.","","@example",""," Y.Array.hash(['a', 'b', 'c'], ['foo', 'bar']);"," // => {a: 'foo', b: 'bar', c: true}","","@method hash","@param {String[]} keys Array of strings to use as keys.","@param {Array} [values] Array to use as values.","@return {Object} Hash using the first array as keys and the second as values.","@static","**/","YArray.hash = function (keys, values) {"," var hash = {},"," vlen = (values && values.length) || 0,"," i, len;",""," for (i = 0, len = keys.length; i < len; ++i) {"," if (i in keys) {"," hash[keys[i]] = vlen > i && i in values ? values[i] : true;"," }"," }",""," return hash;","};","","/**","Returns the index of the first item in the array that's equal (using a strict","equality check) to the specified _value_, or `-1` if the value isn't found.","","This method wraps the native ES5 `Array.indexOf()` method if available.","","@method indexOf","@param {Array} array Array to search.","@param {Any} value Value to search for.","@param {Number} [from=0] The index at which to begin the search.","@return {Number} Index of the item strictly equal to _value_, or `-1` if not"," found.","@static","**/","YArray.indexOf = Lang._isNative(Native.indexOf) ? function (array, value, from) {"," return Native.indexOf.call(array, value, from);","} : function (array, value, from) {"," // http://es5.github.com/#x15.4.4.14"," var len = array.length;",""," from = +from || 0;"," from = (from > 0 || -1) * Math.floor(Math.abs(from));",""," if (from < 0) {"," from += len;",""," if (from < 0) {"," from = 0;"," }"," }",""," for (; from < len; ++from) {"," if (from in array && array[from] === value) {"," return from;"," }"," }",""," return -1;","};","","/**","Numeric sort convenience function.","","The native `Array.prototype.sort()` function converts values to strings and","sorts them in lexicographic order, which is unsuitable for sorting numeric","values. Provide `Array.numericSort` as a custom sort function when you want","to sort values in numeric order.","","@example",""," [42, 23, 8, 16, 4, 15].sort(Y.Array.numericSort);"," // => [4, 8, 15, 16, 23, 42]","","@method numericSort","@param {Number} a First value to compare.","@param {Number} b Second value to compare.","@return {Number} Difference between _a_ and _b_.","@static","**/","YArray.numericSort = function (a, b) {"," return a - b;","};","","/**","Executes the supplied function on each item in the array. Returning a truthy","value from the function will stop the processing of remaining items.","","@method some","@param {Array} array Array to iterate over.","@param {Function} fn Function to execute on each item. The function will receive"," the following arguments:"," @param {Any} fn.value Current array item."," @param {Number} fn.index Current array index."," @param {Array} fn.array Array being iterated over.","@param {Object} [thisObj] `this` object to use when calling _fn_.","@return {Boolean} `true` if the function returns a truthy value on any of the"," items in the array; `false` otherwise.","@static","**/","YArray.some = Lang._isNative(Native.some) ? function (array, fn, thisObj) {"," return Native.some.call(array, fn, thisObj);","} : function (array, fn, thisObj) {"," for (var i = 0, len = array.length; i < len; ++i) {"," if (i in array && fn.call(thisObj, array[i], i, array)) {"," return true;"," }"," }",""," return false;","};","","/**","Evaluates _obj_ to determine if it's an array, an array-like collection, or","something else. This is useful when working with the function `arguments`","collection and `HTMLElement` collections.","","Note: This implementation doesn't consider elements that are also","collections, such as `` and ``, to be array-like. @static **/ -_yuitest_coverline("build/yui-core/yui-core.js", 2342); +_yuitest_coverline("build/yui-core/yui-core.js", 2327); YArray.test = function (obj) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "test", 2342); -_yuitest_coverline("build/yui-core/yui-core.js", 2343); + _yuitest_coverfunc("build/yui-core/yui-core.js", "test", 2327); +_yuitest_coverline("build/yui-core/yui-core.js", 2328); var result = 0; - _yuitest_coverline("build/yui-core/yui-core.js", 2345); + _yuitest_coverline("build/yui-core/yui-core.js", 2330); if (Lang.isArray(obj)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2346); + _yuitest_coverline("build/yui-core/yui-core.js", 2331); result = 1; - } else {_yuitest_coverline("build/yui-core/yui-core.js", 2347); + } else {_yuitest_coverline("build/yui-core/yui-core.js", 2332); if (Lang.isObject(obj)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2348); + _yuitest_coverline("build/yui-core/yui-core.js", 2333); try { // indexed, but no tagName (element) or scrollTo/document (window. From DOM.isWindow test which we can't use here), // or functions without apply/call (Safari // HTMLElementCollection bug). - _yuitest_coverline("build/yui-core/yui-core.js", 2352); + _yuitest_coverline("build/yui-core/yui-core.js", 2337); if ('length' in obj && !obj.tagName && !(obj.scrollTo && obj.document) && !obj.apply) { - _yuitest_coverline("build/yui-core/yui-core.js", 2353); + _yuitest_coverline("build/yui-core/yui-core.js", 2338); result = 2; } } catch (ex) {} }} - _yuitest_coverline("build/yui-core/yui-core.js", 2358); + _yuitest_coverline("build/yui-core/yui-core.js", 2343); return result; }; /** @@ -3039,16 +3024,16 @@ return result; * @constructor * @param {MIXED} item* 0..n items to seed the queue. */ -_yuitest_coverline("build/yui-core/yui-core.js", 2376); +_yuitest_coverline("build/yui-core/yui-core.js", 2361); function Queue() { - _yuitest_coverfunc("build/yui-core/yui-core.js", "Queue", 2376); -_yuitest_coverline("build/yui-core/yui-core.js", 2377); + _yuitest_coverfunc("build/yui-core/yui-core.js", "Queue", 2361); +_yuitest_coverline("build/yui-core/yui-core.js", 2362); this._init(); - _yuitest_coverline("build/yui-core/yui-core.js", 2378); + _yuitest_coverline("build/yui-core/yui-core.js", 2363); this.add.apply(this, arguments); } -_yuitest_coverline("build/yui-core/yui-core.js", 2381); +_yuitest_coverline("build/yui-core/yui-core.js", 2366); Queue.prototype = { /** * Initialize the queue @@ -3064,8 +3049,8 @@ Queue.prototype = { * @type Array * @protected */ - _yuitest_coverfunc("build/yui-core/yui-core.js", "_init", 2388); -_yuitest_coverline("build/yui-core/yui-core.js", 2396); + _yuitest_coverfunc("build/yui-core/yui-core.js", "_init", 2373); +_yuitest_coverline("build/yui-core/yui-core.js", 2381); this._q = []; }, @@ -3076,8 +3061,8 @@ this._q = []; * @return {MIXED} the next item in the queue. */ next: function() { - _yuitest_coverfunc("build/yui-core/yui-core.js", "next", 2405); -_yuitest_coverline("build/yui-core/yui-core.js", 2406); + _yuitest_coverfunc("build/yui-core/yui-core.js", "next", 2390); +_yuitest_coverline("build/yui-core/yui-core.js", 2391); return this._q.shift(); }, @@ -3088,8 +3073,8 @@ return this._q.shift(); * @return {MIXED} the last item in the queue. */ last: function() { - _yuitest_coverfunc("build/yui-core/yui-core.js", "last", 2415); -_yuitest_coverline("build/yui-core/yui-core.js", 2416); + _yuitest_coverfunc("build/yui-core/yui-core.js", "last", 2400); +_yuitest_coverline("build/yui-core/yui-core.js", 2401); return this._q.pop(); }, @@ -3101,11 +3086,11 @@ return this._q.pop(); * @return {object} this queue. */ add: function() { - _yuitest_coverfunc("build/yui-core/yui-core.js", "add", 2426); -_yuitest_coverline("build/yui-core/yui-core.js", 2427); + _yuitest_coverfunc("build/yui-core/yui-core.js", "add", 2411); +_yuitest_coverline("build/yui-core/yui-core.js", 2412); this._q.push.apply(this._q, arguments); - _yuitest_coverline("build/yui-core/yui-core.js", 2429); + _yuitest_coverline("build/yui-core/yui-core.js", 2414); return this; }, @@ -3116,16 +3101,16 @@ return this; * @return {Number} The size. */ size: function() { - _yuitest_coverfunc("build/yui-core/yui-core.js", "size", 2438); -_yuitest_coverline("build/yui-core/yui-core.js", 2439); + _yuitest_coverfunc("build/yui-core/yui-core.js", "size", 2423); +_yuitest_coverline("build/yui-core/yui-core.js", 2424); return this._q.length; } }; -_yuitest_coverline("build/yui-core/yui-core.js", 2443); +_yuitest_coverline("build/yui-core/yui-core.js", 2428); Y.Queue = Queue; -_yuitest_coverline("build/yui-core/yui-core.js", 2445); +_yuitest_coverline("build/yui-core/yui-core.js", 2430); YUI.Env._loaderQueue = YUI.Env._loaderQueue || new Queue(); /** @@ -3137,7 +3122,7 @@ utilities for the library. @submodule yui-base **/ -_yuitest_coverline("build/yui-core/yui-core.js", 2456); +_yuitest_coverline("build/yui-core/yui-core.js", 2441); var CACHED_DELIMITER = '__', hasOwn = Object.prototype.hasOwnProperty, @@ -3167,27 +3152,27 @@ string `[object Object]` when used as a cache key. @return {Function} Wrapped function. @for YUI **/ -_yuitest_coverline("build/yui-core/yui-core.js", 2485); +_yuitest_coverline("build/yui-core/yui-core.js", 2470); Y.cached = function (source, cache, refetch) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "cached", 2485); -_yuitest_coverline("build/yui-core/yui-core.js", 2486); + _yuitest_coverfunc("build/yui-core/yui-core.js", "cached", 2470); +_yuitest_coverline("build/yui-core/yui-core.js", 2471); cache || (cache = {}); - _yuitest_coverline("build/yui-core/yui-core.js", 2488); + _yuitest_coverline("build/yui-core/yui-core.js", 2473); return function (arg) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "(anonymous 17)", 2488); -_yuitest_coverline("build/yui-core/yui-core.js", 2489); + _yuitest_coverfunc("build/yui-core/yui-core.js", "(anonymous 17)", 2473); +_yuitest_coverline("build/yui-core/yui-core.js", 2474); var key = arguments.length > 1 ? Array.prototype.join.call(arguments, CACHED_DELIMITER) : String(arg); - _yuitest_coverline("build/yui-core/yui-core.js", 2493); + _yuitest_coverline("build/yui-core/yui-core.js", 2478); if (!(key in cache) || (refetch && cache[key] == refetch)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2494); + _yuitest_coverline("build/yui-core/yui-core.js", 2479); cache[key] = source.apply(source, arguments); } - _yuitest_coverline("build/yui-core/yui-core.js", 2497); + _yuitest_coverline("build/yui-core/yui-core.js", 2482); return cache[key]; }; }; @@ -3208,20 +3193,20 @@ in both Safari and MobileSafari browsers: instance operates. @since 3.5.0 **/ -_yuitest_coverline("build/yui-core/yui-core.js", 2517); +_yuitest_coverline("build/yui-core/yui-core.js", 2502); Y.getLocation = function () { // It is safer to look this up every time because yui-base is attached to a // YUI instance before a user's config is applied; i.e. `Y.config.win` does // not point the correct window object when this file is loaded. - _yuitest_coverfunc("build/yui-core/yui-core.js", "getLocation", 2517); -_yuitest_coverline("build/yui-core/yui-core.js", 2521); + _yuitest_coverfunc("build/yui-core/yui-core.js", "getLocation", 2502); +_yuitest_coverline("build/yui-core/yui-core.js", 2506); var win = Y.config.win; // It is not safe to hold a reference to the `location` object outside the // scope in which it is being used. The WebKit engine used in Safari and // MobileSafari will "disconnect" the `location` object from the `window` // when a page is restored from back/forward history cache. - _yuitest_coverline("build/yui-core/yui-core.js", 2527); + _yuitest_coverline("build/yui-core/yui-core.js", 2512); return win && win.location; }; @@ -3237,32 +3222,32 @@ use `clone()`. @param {Object} objects* One or more objects to merge. @return {Object} A new merged object. **/ -_yuitest_coverline("build/yui-core/yui-core.js", 2542); +_yuitest_coverline("build/yui-core/yui-core.js", 2527); Y.merge = function () { - _yuitest_coverfunc("build/yui-core/yui-core.js", "merge", 2542); -_yuitest_coverline("build/yui-core/yui-core.js", 2543); + _yuitest_coverfunc("build/yui-core/yui-core.js", "merge", 2527); +_yuitest_coverline("build/yui-core/yui-core.js", 2528); var i = 0, len = arguments.length, result = {}, key, obj; - _yuitest_coverline("build/yui-core/yui-core.js", 2549); + _yuitest_coverline("build/yui-core/yui-core.js", 2534); for (; i < len; ++i) { - _yuitest_coverline("build/yui-core/yui-core.js", 2550); + _yuitest_coverline("build/yui-core/yui-core.js", 2535); obj = arguments[i]; - _yuitest_coverline("build/yui-core/yui-core.js", 2552); + _yuitest_coverline("build/yui-core/yui-core.js", 2537); for (key in obj) { - _yuitest_coverline("build/yui-core/yui-core.js", 2553); + _yuitest_coverline("build/yui-core/yui-core.js", 2538); if (hasOwn.call(obj, key)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2554); + _yuitest_coverline("build/yui-core/yui-core.js", 2539); result[key] = obj[key]; } } } - _yuitest_coverline("build/yui-core/yui-core.js", 2559); + _yuitest_coverline("build/yui-core/yui-core.js", 2544); return result; }; @@ -3300,65 +3285,65 @@ properties are not copied). The following copying modes are available: @return {Function|Object|YUI} The receiver, or the YUI instance if the specified receiver is falsy. **/ -_yuitest_coverline("build/yui-core/yui-core.js", 2596); +_yuitest_coverline("build/yui-core/yui-core.js", 2581); Y.mix = function(receiver, supplier, overwrite, whitelist, mode, merge) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "mix", 2596); -_yuitest_coverline("build/yui-core/yui-core.js", 2597); + _yuitest_coverfunc("build/yui-core/yui-core.js", "mix", 2581); +_yuitest_coverline("build/yui-core/yui-core.js", 2582); var alwaysOverwrite, exists, from, i, key, len, to; // If no supplier is given, we return the receiver. If no receiver is given, // we return Y. Returning Y doesn't make much sense to me, but it's // grandfathered in for backcompat reasons. - _yuitest_coverline("build/yui-core/yui-core.js", 2602); + _yuitest_coverline("build/yui-core/yui-core.js", 2587); if (!receiver || !supplier) { - _yuitest_coverline("build/yui-core/yui-core.js", 2603); + _yuitest_coverline("build/yui-core/yui-core.js", 2588); return receiver || Y; } - _yuitest_coverline("build/yui-core/yui-core.js", 2606); + _yuitest_coverline("build/yui-core/yui-core.js", 2591); if (mode) { // In mode 2 (prototype to prototype and object to object), we recurse // once to do the proto to proto mix. The object to object mix will be // handled later on. - _yuitest_coverline("build/yui-core/yui-core.js", 2610); + _yuitest_coverline("build/yui-core/yui-core.js", 2595); if (mode === 2) { - _yuitest_coverline("build/yui-core/yui-core.js", 2611); + _yuitest_coverline("build/yui-core/yui-core.js", 2596); Y.mix(receiver.prototype, supplier.prototype, overwrite, whitelist, 0, merge); } // Depending on which mode is specified, we may be copying from or to // the prototypes of the supplier and receiver. - _yuitest_coverline("build/yui-core/yui-core.js", 2617); + _yuitest_coverline("build/yui-core/yui-core.js", 2602); from = mode === 1 || mode === 3 ? supplier.prototype : supplier; - _yuitest_coverline("build/yui-core/yui-core.js", 2618); + _yuitest_coverline("build/yui-core/yui-core.js", 2603); to = mode === 1 || mode === 4 ? receiver.prototype : receiver; // If either the supplier or receiver doesn't actually have a // prototype property, then we could end up with an undefined `from` // or `to`. If that happens, we abort and return the receiver. - _yuitest_coverline("build/yui-core/yui-core.js", 2623); + _yuitest_coverline("build/yui-core/yui-core.js", 2608); if (!from || !to) { - _yuitest_coverline("build/yui-core/yui-core.js", 2624); + _yuitest_coverline("build/yui-core/yui-core.js", 2609); return receiver; } } else { - _yuitest_coverline("build/yui-core/yui-core.js", 2627); + _yuitest_coverline("build/yui-core/yui-core.js", 2612); from = supplier; - _yuitest_coverline("build/yui-core/yui-core.js", 2628); + _yuitest_coverline("build/yui-core/yui-core.js", 2613); to = receiver; } // If `overwrite` is truthy and `merge` is falsy, then we can skip a // property existence check on each iteration and save some time. - _yuitest_coverline("build/yui-core/yui-core.js", 2633); + _yuitest_coverline("build/yui-core/yui-core.js", 2618); alwaysOverwrite = overwrite && !merge; - _yuitest_coverline("build/yui-core/yui-core.js", 2635); + _yuitest_coverline("build/yui-core/yui-core.js", 2620); if (whitelist) { - _yuitest_coverline("build/yui-core/yui-core.js", 2636); + _yuitest_coverline("build/yui-core/yui-core.js", 2621); for (i = 0, len = whitelist.length; i < len; ++i) { - _yuitest_coverline("build/yui-core/yui-core.js", 2637); + _yuitest_coverline("build/yui-core/yui-core.js", 2622); key = whitelist[i]; // We call `Object.prototype.hasOwnProperty` instead of calling @@ -3366,19 +3351,19 @@ key = whitelist[i]; // `hasOwnProperty` method may have been overridden or removed. // Also, some native objects don't implement a `hasOwnProperty` // method. - _yuitest_coverline("build/yui-core/yui-core.js", 2644); + _yuitest_coverline("build/yui-core/yui-core.js", 2629); if (!hasOwn.call(from, key)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2645); + _yuitest_coverline("build/yui-core/yui-core.js", 2630); continue; } // The `key in to` check here is (sadly) intentional for backwards // compatibility reasons. It prevents undesired shadowing of // prototype members on `to`. - _yuitest_coverline("build/yui-core/yui-core.js", 2651); + _yuitest_coverline("build/yui-core/yui-core.js", 2636); exists = alwaysOverwrite ? false : key in to; - _yuitest_coverline("build/yui-core/yui-core.js", 2653); + _yuitest_coverline("build/yui-core/yui-core.js", 2638); if (merge && exists && isObject(to[key], true) && isObject(from[key], true)) { // If we're in merge mode, and the key is present on both @@ -3389,45 +3374,45 @@ if (merge && exists && isObject(to[key], true) // Note: It's intentional that the whitelist isn't passed to the // recursive call here. This is legacy behavior that lots of // code still depends on. - _yuitest_coverline("build/yui-core/yui-core.js", 2663); + _yuitest_coverline("build/yui-core/yui-core.js", 2648); Y.mix(to[key], from[key], overwrite, null, 0, merge); - } else {_yuitest_coverline("build/yui-core/yui-core.js", 2664); + } else {_yuitest_coverline("build/yui-core/yui-core.js", 2649); if (overwrite || !exists) { // We're not in merge mode, so we'll only copy the `from` value // to the `to` value if we're in overwrite mode or if the // current key doesn't exist on the `to` object. - _yuitest_coverline("build/yui-core/yui-core.js", 2668); + _yuitest_coverline("build/yui-core/yui-core.js", 2653); to[key] = from[key]; }} } } else { - _yuitest_coverline("build/yui-core/yui-core.js", 2672); + _yuitest_coverline("build/yui-core/yui-core.js", 2657); for (key in from) { // The code duplication here is for runtime performance reasons. // Combining whitelist and non-whitelist operations into a single // loop or breaking the shared logic out into a function both result // in worse performance, and Y.mix is critical enough that the byte // tradeoff is worth it. - _yuitest_coverline("build/yui-core/yui-core.js", 2678); + _yuitest_coverline("build/yui-core/yui-core.js", 2663); if (!hasOwn.call(from, key)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2679); + _yuitest_coverline("build/yui-core/yui-core.js", 2664); continue; } // The `key in to` check here is (sadly) intentional for backwards // compatibility reasons. It prevents undesired shadowing of // prototype members on `to`. - _yuitest_coverline("build/yui-core/yui-core.js", 2685); + _yuitest_coverline("build/yui-core/yui-core.js", 2670); exists = alwaysOverwrite ? false : key in to; - _yuitest_coverline("build/yui-core/yui-core.js", 2687); + _yuitest_coverline("build/yui-core/yui-core.js", 2672); if (merge && exists && isObject(to[key], true) && isObject(from[key], true)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2689); + _yuitest_coverline("build/yui-core/yui-core.js", 2674); Y.mix(to[key], from[key], overwrite, null, 0, merge); - } else {_yuitest_coverline("build/yui-core/yui-core.js", 2690); + } else {_yuitest_coverline("build/yui-core/yui-core.js", 2675); if (overwrite || !exists) { - _yuitest_coverline("build/yui-core/yui-core.js", 2691); + _yuitest_coverline("build/yui-core/yui-core.js", 2676); to[key] = from[key]; }} } @@ -3435,14 +3420,14 @@ to[key] = from[key]; // If this is an IE browser with the JScript enumeration bug, force // enumeration of the buggy properties by making a recursive call with // the buggy properties as the whitelist. - _yuitest_coverline("build/yui-core/yui-core.js", 2698); + _yuitest_coverline("build/yui-core/yui-core.js", 2683); if (Y.Object._hasEnumBug) { - _yuitest_coverline("build/yui-core/yui-core.js", 2699); + _yuitest_coverline("build/yui-core/yui-core.js", 2684); Y.mix(to, from, overwrite, Y.Object._forceEnum, mode, merge); } } - _yuitest_coverline("build/yui-core/yui-core.js", 2703); + _yuitest_coverline("build/yui-core/yui-core.js", 2688); return receiver; }; /** @@ -3459,7 +3444,7 @@ return receiver; * @class Object */ -_yuitest_coverline("build/yui-core/yui-core.js", 2719); +_yuitest_coverline("build/yui-core/yui-core.js", 2704); var Lang = Y.Lang, hasOwn = Object.prototype.hasOwnProperty, @@ -3482,22 +3467,22 @@ O = Y.Object = Lang._isNative(Object.create) ? function (obj) { // support Object.create()'s second argument (properties). Once we have a // safe fallback for the properties arg, we can stop wrapping // Object.create(). - _yuitest_coverfunc("build/yui-core/yui-core.js", "(anonymous 18)", 2735); -_yuitest_coverline("build/yui-core/yui-core.js", 2741); + _yuitest_coverfunc("build/yui-core/yui-core.js", "(anonymous 18)", 2720); +_yuitest_coverline("build/yui-core/yui-core.js", 2726); return Object.create(obj); } : (function () { // Reusable constructor function for the Object.create() shim. - _yuitest_coverfunc("build/yui-core/yui-core.js", "(anonymous 19)", 2742); -_yuitest_coverline("build/yui-core/yui-core.js", 2744); + _yuitest_coverfunc("build/yui-core/yui-core.js", "(anonymous 19)", 2727); +_yuitest_coverline("build/yui-core/yui-core.js", 2729); function F() {} // The actual shim. - _yuitest_coverline("build/yui-core/yui-core.js", 2747); + _yuitest_coverline("build/yui-core/yui-core.js", 2732); return function (obj) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "(anonymous 20)", 2747); -_yuitest_coverline("build/yui-core/yui-core.js", 2748); + _yuitest_coverfunc("build/yui-core/yui-core.js", "(anonymous 20)", 2732); +_yuitest_coverline("build/yui-core/yui-core.js", 2733); F.prototype = obj; - _yuitest_coverline("build/yui-core/yui-core.js", 2749); + _yuitest_coverline("build/yui-core/yui-core.js", 2734); return new F(); }; }()), @@ -3560,8 +3545,8 @@ hasProtoEnumBug = O._hasProtoEnumBug = (function () {}).propertyIsEnumerable('pr * @static */ owns = O.owns = function (obj, key) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "owns", 2810); -_yuitest_coverline("build/yui-core/yui-core.js", 2811); + _yuitest_coverfunc("build/yui-core/yui-core.js", "owns", 2795); +_yuitest_coverline("build/yui-core/yui-core.js", 2796); return !!obj && hasOwn.call(obj, key); }; // <-- End of var declarations. @@ -3574,7 +3559,7 @@ return !!obj && hasOwn.call(obj, key); * @return {Boolean} `true` if _key_ exists on _obj_, `false` otherwise. * @static */ -_yuitest_coverline("build/yui-core/yui-core.js", 2823); +_yuitest_coverline("build/yui-core/yui-core.js", 2808); O.hasKey = owns; /** @@ -3598,56 +3583,56 @@ O.hasKey = owns; * @return {String[]} Array of keys. * @static */ -_yuitest_coverline("build/yui-core/yui-core.js", 2846); +_yuitest_coverline("build/yui-core/yui-core.js", 2831); O.keys = Lang._isNative(Object.keys) ? Object.keys : function (obj) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "keys", 2846); -_yuitest_coverline("build/yui-core/yui-core.js", 2847); + _yuitest_coverfunc("build/yui-core/yui-core.js", "keys", 2831); +_yuitest_coverline("build/yui-core/yui-core.js", 2832); if (!Lang.isObject(obj)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2848); + _yuitest_coverline("build/yui-core/yui-core.js", 2833); throw new TypeError('Object.keys called on a non-object'); } - _yuitest_coverline("build/yui-core/yui-core.js", 2851); + _yuitest_coverline("build/yui-core/yui-core.js", 2836); var keys = [], i, key, len; - _yuitest_coverline("build/yui-core/yui-core.js", 2854); + _yuitest_coverline("build/yui-core/yui-core.js", 2839); if (hasProtoEnumBug && typeof obj === 'function') { - _yuitest_coverline("build/yui-core/yui-core.js", 2855); + _yuitest_coverline("build/yui-core/yui-core.js", 2840); for (key in obj) { - _yuitest_coverline("build/yui-core/yui-core.js", 2856); + _yuitest_coverline("build/yui-core/yui-core.js", 2841); if (owns(obj, key) && key !== 'prototype') { - _yuitest_coverline("build/yui-core/yui-core.js", 2857); + _yuitest_coverline("build/yui-core/yui-core.js", 2842); keys.push(key); } } } else { - _yuitest_coverline("build/yui-core/yui-core.js", 2861); + _yuitest_coverline("build/yui-core/yui-core.js", 2846); for (key in obj) { - _yuitest_coverline("build/yui-core/yui-core.js", 2862); + _yuitest_coverline("build/yui-core/yui-core.js", 2847); if (owns(obj, key)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2863); + _yuitest_coverline("build/yui-core/yui-core.js", 2848); keys.push(key); } } } - _yuitest_coverline("build/yui-core/yui-core.js", 2868); + _yuitest_coverline("build/yui-core/yui-core.js", 2853); if (hasEnumBug) { - _yuitest_coverline("build/yui-core/yui-core.js", 2869); + _yuitest_coverline("build/yui-core/yui-core.js", 2854); for (i = 0, len = forceEnum.length; i < len; ++i) { - _yuitest_coverline("build/yui-core/yui-core.js", 2870); + _yuitest_coverline("build/yui-core/yui-core.js", 2855); key = forceEnum[i]; - _yuitest_coverline("build/yui-core/yui-core.js", 2872); + _yuitest_coverline("build/yui-core/yui-core.js", 2857); if (owns(obj, key)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2873); + _yuitest_coverline("build/yui-core/yui-core.js", 2858); keys.push(key); } } } - _yuitest_coverline("build/yui-core/yui-core.js", 2878); + _yuitest_coverline("build/yui-core/yui-core.js", 2863); return keys; }; @@ -3668,22 +3653,22 @@ return keys; * @return {Array} Array of values. * @static */ -_yuitest_coverline("build/yui-core/yui-core.js", 2898); +_yuitest_coverline("build/yui-core/yui-core.js", 2883); O.values = function (obj) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "values", 2898); -_yuitest_coverline("build/yui-core/yui-core.js", 2899); + _yuitest_coverfunc("build/yui-core/yui-core.js", "values", 2883); +_yuitest_coverline("build/yui-core/yui-core.js", 2884); var keys = O.keys(obj), i = 0, len = keys.length, values = []; - _yuitest_coverline("build/yui-core/yui-core.js", 2904); + _yuitest_coverline("build/yui-core/yui-core.js", 2889); for (; i < len; ++i) { - _yuitest_coverline("build/yui-core/yui-core.js", 2905); + _yuitest_coverline("build/yui-core/yui-core.js", 2890); values.push(obj[keys[i]]); } - _yuitest_coverline("build/yui-core/yui-core.js", 2908); + _yuitest_coverline("build/yui-core/yui-core.js", 2893); return values; }; @@ -3695,15 +3680,15 @@ return values; * @return {Number} The object's size. * @static */ -_yuitest_coverline("build/yui-core/yui-core.js", 2919); +_yuitest_coverline("build/yui-core/yui-core.js", 2904); O.size = function (obj) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "size", 2919); -_yuitest_coverline("build/yui-core/yui-core.js", 2920); + _yuitest_coverfunc("build/yui-core/yui-core.js", "size", 2904); +_yuitest_coverline("build/yui-core/yui-core.js", 2905); try { - _yuitest_coverline("build/yui-core/yui-core.js", 2921); + _yuitest_coverline("build/yui-core/yui-core.js", 2906); return O.keys(obj).length; } catch (ex) { - _yuitest_coverline("build/yui-core/yui-core.js", 2923); + _yuitest_coverline("build/yui-core/yui-core.js", 2908); return 0; // Legacy behavior for non-objects. } }; @@ -3718,10 +3703,10 @@ return 0; // Legacy behavior for non-objects. * @return {Boolean} `true` if _obj_ contains _value_, `false` otherwise. * @static */ -_yuitest_coverline("build/yui-core/yui-core.js", 2937); +_yuitest_coverline("build/yui-core/yui-core.js", 2922); O.hasValue = function (obj, value) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "hasValue", 2937); -_yuitest_coverline("build/yui-core/yui-core.js", 2938); + _yuitest_coverfunc("build/yui-core/yui-core.js", "hasValue", 2922); +_yuitest_coverline("build/yui-core/yui-core.js", 2923); return Y.Array.indexOf(O.values(obj), value) > -1; }; @@ -3745,22 +3730,22 @@ return Y.Array.indexOf(O.values(obj), value) > -1; * @chainable * @static */ -_yuitest_coverline("build/yui-core/yui-core.js", 2961); +_yuitest_coverline("build/yui-core/yui-core.js", 2946); O.each = function (obj, fn, thisObj, proto) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "each", 2961); -_yuitest_coverline("build/yui-core/yui-core.js", 2962); + _yuitest_coverfunc("build/yui-core/yui-core.js", "each", 2946); +_yuitest_coverline("build/yui-core/yui-core.js", 2947); var key; - _yuitest_coverline("build/yui-core/yui-core.js", 2964); + _yuitest_coverline("build/yui-core/yui-core.js", 2949); for (key in obj) { - _yuitest_coverline("build/yui-core/yui-core.js", 2965); + _yuitest_coverline("build/yui-core/yui-core.js", 2950); if (proto || owns(obj, key)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2966); + _yuitest_coverline("build/yui-core/yui-core.js", 2951); fn.call(thisObj || Y, obj[key], key, obj); } } - _yuitest_coverline("build/yui-core/yui-core.js", 2970); + _yuitest_coverline("build/yui-core/yui-core.js", 2955); return Y; }; @@ -3784,25 +3769,25 @@ return Y; * `false` otherwise. * @static */ -_yuitest_coverline("build/yui-core/yui-core.js", 2993); +_yuitest_coverline("build/yui-core/yui-core.js", 2978); O.some = function (obj, fn, thisObj, proto) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "some", 2993); -_yuitest_coverline("build/yui-core/yui-core.js", 2994); + _yuitest_coverfunc("build/yui-core/yui-core.js", "some", 2978); +_yuitest_coverline("build/yui-core/yui-core.js", 2979); var key; - _yuitest_coverline("build/yui-core/yui-core.js", 2996); + _yuitest_coverline("build/yui-core/yui-core.js", 2981); for (key in obj) { - _yuitest_coverline("build/yui-core/yui-core.js", 2997); + _yuitest_coverline("build/yui-core/yui-core.js", 2982); if (proto || owns(obj, key)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2998); + _yuitest_coverline("build/yui-core/yui-core.js", 2983); if (fn.call(thisObj || Y, obj[key], key, obj)) { - _yuitest_coverline("build/yui-core/yui-core.js", 2999); + _yuitest_coverline("build/yui-core/yui-core.js", 2984); return true; } } } - _yuitest_coverline("build/yui-core/yui-core.js", 3004); + _yuitest_coverline("build/yui-core/yui-core.js", 2989); return false; }; @@ -3819,27 +3804,27 @@ return false; * undefined if the source is not an object. Returns the source object * if an empty path is provided. */ -_yuitest_coverline("build/yui-core/yui-core.js", 3020); +_yuitest_coverline("build/yui-core/yui-core.js", 3005); O.getValue = function(o, path) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "getValue", 3020); -_yuitest_coverline("build/yui-core/yui-core.js", 3021); + _yuitest_coverfunc("build/yui-core/yui-core.js", "getValue", 3005); +_yuitest_coverline("build/yui-core/yui-core.js", 3006); if (!Lang.isObject(o)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3022); + _yuitest_coverline("build/yui-core/yui-core.js", 3007); return UNDEFINED; } - _yuitest_coverline("build/yui-core/yui-core.js", 3025); + _yuitest_coverline("build/yui-core/yui-core.js", 3010); var i, p = Y.Array(path), l = p.length; - _yuitest_coverline("build/yui-core/yui-core.js", 3029); + _yuitest_coverline("build/yui-core/yui-core.js", 3014); for (i = 0; o !== UNDEFINED && i < l; i++) { - _yuitest_coverline("build/yui-core/yui-core.js", 3030); + _yuitest_coverline("build/yui-core/yui-core.js", 3015); o = o[p[i]]; } - _yuitest_coverline("build/yui-core/yui-core.js", 3033); + _yuitest_coverline("build/yui-core/yui-core.js", 3018); return o; }; @@ -3857,34 +3842,34 @@ return o; * @return {Object} The modified object, with the new sub value set, or * undefined, if the path was invalid. */ -_yuitest_coverline("build/yui-core/yui-core.js", 3050); +_yuitest_coverline("build/yui-core/yui-core.js", 3035); O.setValue = function(o, path, val) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "setValue", 3050); -_yuitest_coverline("build/yui-core/yui-core.js", 3051); + _yuitest_coverfunc("build/yui-core/yui-core.js", "setValue", 3035); +_yuitest_coverline("build/yui-core/yui-core.js", 3036); var i, p = Y.Array(path), leafIdx = p.length - 1, ref = o; - _yuitest_coverline("build/yui-core/yui-core.js", 3056); + _yuitest_coverline("build/yui-core/yui-core.js", 3041); if (leafIdx >= 0) { - _yuitest_coverline("build/yui-core/yui-core.js", 3057); + _yuitest_coverline("build/yui-core/yui-core.js", 3042); for (i = 0; ref !== UNDEFINED && i < leafIdx; i++) { - _yuitest_coverline("build/yui-core/yui-core.js", 3058); + _yuitest_coverline("build/yui-core/yui-core.js", 3043); ref = ref[p[i]]; } - _yuitest_coverline("build/yui-core/yui-core.js", 3061); + _yuitest_coverline("build/yui-core/yui-core.js", 3046); if (ref !== UNDEFINED) { - _yuitest_coverline("build/yui-core/yui-core.js", 3062); + _yuitest_coverline("build/yui-core/yui-core.js", 3047); ref[p[i]] = val; } else { - _yuitest_coverline("build/yui-core/yui-core.js", 3064); + _yuitest_coverline("build/yui-core/yui-core.js", 3049); return UNDEFINED; } } - _yuitest_coverline("build/yui-core/yui-core.js", 3068); + _yuitest_coverline("build/yui-core/yui-core.js", 3053); return o; }; @@ -3897,10 +3882,10 @@ return o; * @static * @since 3.2.0 */ -_yuitest_coverline("build/yui-core/yui-core.js", 3080); +_yuitest_coverline("build/yui-core/yui-core.js", 3065); O.isEmpty = function (obj) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "isEmpty", 3080); -_yuitest_coverline("build/yui-core/yui-core.js", 3081); + _yuitest_coverfunc("build/yui-core/yui-core.js", "isEmpty", 3065); +_yuitest_coverline("build/yui-core/yui-core.js", 3066); return !O.keys(Object(obj)).length; }; /** @@ -3936,19 +3921,19 @@ return !O.keys(Object(obj)).length; * @param {String} [subUA=navigator.userAgent] UA string to parse * @return {Object} The Y.UA object */ -_yuitest_coverline("build/yui-core/yui-core.js", 3116); +_yuitest_coverline("build/yui-core/yui-core.js", 3101); YUI.Env.parseUA = function(subUA) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "parseUA", 3116); -_yuitest_coverline("build/yui-core/yui-core.js", 3118); + _yuitest_coverfunc("build/yui-core/yui-core.js", "parseUA", 3101); +_yuitest_coverline("build/yui-core/yui-core.js", 3103); var numberify = function(s) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "numberify", 3118); -_yuitest_coverline("build/yui-core/yui-core.js", 3119); + _yuitest_coverfunc("build/yui-core/yui-core.js", "numberify", 3103); +_yuitest_coverline("build/yui-core/yui-core.js", 3104); var c = 0; - _yuitest_coverline("build/yui-core/yui-core.js", 3120); + _yuitest_coverline("build/yui-core/yui-core.js", 3105); return parseFloat(s.replace(/\./g, function() { - _yuitest_coverfunc("build/yui-core/yui-core.js", "(anonymous 22)", 3120); -_yuitest_coverline("build/yui-core/yui-core.js", 3121); + _yuitest_coverfunc("build/yui-core/yui-core.js", "(anonymous 22)", 3105); +_yuitest_coverline("build/yui-core/yui-core.js", 3106); return (c++ === 1) ? '' : '.'; })); }, @@ -4183,250 +4168,250 @@ return (c++ === 1) ? '' : '.'; * @type String * @static */ - _yuitest_coverline("build/yui-core/yui-core.js", 3355); + _yuitest_coverline("build/yui-core/yui-core.js", 3340); o.userAgent = ua; - _yuitest_coverline("build/yui-core/yui-core.js", 3358); + _yuitest_coverline("build/yui-core/yui-core.js", 3343); o.secure = href && (href.toLowerCase().indexOf('https') === 0); - _yuitest_coverline("build/yui-core/yui-core.js", 3360); + _yuitest_coverline("build/yui-core/yui-core.js", 3345); if (ua) { - _yuitest_coverline("build/yui-core/yui-core.js", 3362); + _yuitest_coverline("build/yui-core/yui-core.js", 3347); if ((/windows|win32/i).test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3363); + _yuitest_coverline("build/yui-core/yui-core.js", 3348); o.os = 'windows'; - } else {_yuitest_coverline("build/yui-core/yui-core.js", 3364); + } else {_yuitest_coverline("build/yui-core/yui-core.js", 3349); if ((/macintosh|mac_powerpc/i).test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3365); + _yuitest_coverline("build/yui-core/yui-core.js", 3350); o.os = 'macintosh'; - } else {_yuitest_coverline("build/yui-core/yui-core.js", 3366); + } else {_yuitest_coverline("build/yui-core/yui-core.js", 3351); if ((/android/i).test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3367); + _yuitest_coverline("build/yui-core/yui-core.js", 3352); o.os = 'android'; - } else {_yuitest_coverline("build/yui-core/yui-core.js", 3368); + } else {_yuitest_coverline("build/yui-core/yui-core.js", 3353); if ((/symbos/i).test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3369); + _yuitest_coverline("build/yui-core/yui-core.js", 3354); o.os = 'symbos'; - } else {_yuitest_coverline("build/yui-core/yui-core.js", 3370); + } else {_yuitest_coverline("build/yui-core/yui-core.js", 3355); if ((/linux/i).test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3371); + _yuitest_coverline("build/yui-core/yui-core.js", 3356); o.os = 'linux'; - } else {_yuitest_coverline("build/yui-core/yui-core.js", 3372); + } else {_yuitest_coverline("build/yui-core/yui-core.js", 3357); if ((/rhino/i).test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3373); + _yuitest_coverline("build/yui-core/yui-core.js", 3358); o.os = 'rhino'; }}}}}} // Modern KHTML browsers should qualify as Safari X-Grade - _yuitest_coverline("build/yui-core/yui-core.js", 3377); + _yuitest_coverline("build/yui-core/yui-core.js", 3362); if ((/KHTML/).test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3378); + _yuitest_coverline("build/yui-core/yui-core.js", 3363); o.webkit = 1; } - _yuitest_coverline("build/yui-core/yui-core.js", 3380); + _yuitest_coverline("build/yui-core/yui-core.js", 3365); if ((/IEMobile|XBLWP7/).test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3381); + _yuitest_coverline("build/yui-core/yui-core.js", 3366); o.mobile = 'windows'; } - _yuitest_coverline("build/yui-core/yui-core.js", 3383); + _yuitest_coverline("build/yui-core/yui-core.js", 3368); if ((/Fennec/).test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3384); + _yuitest_coverline("build/yui-core/yui-core.js", 3369); o.mobile = 'gecko'; } // Modern WebKit browsers are at least X-Grade - _yuitest_coverline("build/yui-core/yui-core.js", 3387); + _yuitest_coverline("build/yui-core/yui-core.js", 3372); m = ua.match(/AppleWebKit\/([^\s]*)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3388); + _yuitest_coverline("build/yui-core/yui-core.js", 3373); if (m && m[1]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3389); + _yuitest_coverline("build/yui-core/yui-core.js", 3374); o.webkit = numberify(m[1]); - _yuitest_coverline("build/yui-core/yui-core.js", 3390); + _yuitest_coverline("build/yui-core/yui-core.js", 3375); o.safari = o.webkit; - _yuitest_coverline("build/yui-core/yui-core.js", 3392); + _yuitest_coverline("build/yui-core/yui-core.js", 3377); if (/PhantomJS/.test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3393); + _yuitest_coverline("build/yui-core/yui-core.js", 3378); m = ua.match(/PhantomJS\/([^\s]*)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3394); + _yuitest_coverline("build/yui-core/yui-core.js", 3379); if (m && m[1]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3395); + _yuitest_coverline("build/yui-core/yui-core.js", 3380); o.phantomjs = numberify(m[1]); } } // Mobile browser check - _yuitest_coverline("build/yui-core/yui-core.js", 3400); + _yuitest_coverline("build/yui-core/yui-core.js", 3385); if (/ Mobile\//.test(ua) || (/iPad|iPod|iPhone/).test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3401); + _yuitest_coverline("build/yui-core/yui-core.js", 3386); o.mobile = 'Apple'; // iPhone or iPod Touch - _yuitest_coverline("build/yui-core/yui-core.js", 3403); + _yuitest_coverline("build/yui-core/yui-core.js", 3388); m = ua.match(/OS ([^\s]*)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3404); + _yuitest_coverline("build/yui-core/yui-core.js", 3389); if (m && m[1]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3405); + _yuitest_coverline("build/yui-core/yui-core.js", 3390); m = numberify(m[1].replace('_', '.')); } - _yuitest_coverline("build/yui-core/yui-core.js", 3407); + _yuitest_coverline("build/yui-core/yui-core.js", 3392); o.ios = m; - _yuitest_coverline("build/yui-core/yui-core.js", 3408); + _yuitest_coverline("build/yui-core/yui-core.js", 3393); o.os = 'ios'; - _yuitest_coverline("build/yui-core/yui-core.js", 3409); + _yuitest_coverline("build/yui-core/yui-core.js", 3394); o.ipad = o.ipod = o.iphone = 0; - _yuitest_coverline("build/yui-core/yui-core.js", 3411); + _yuitest_coverline("build/yui-core/yui-core.js", 3396); m = ua.match(/iPad|iPod|iPhone/); - _yuitest_coverline("build/yui-core/yui-core.js", 3412); + _yuitest_coverline("build/yui-core/yui-core.js", 3397); if (m && m[0]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3413); + _yuitest_coverline("build/yui-core/yui-core.js", 3398); o[m[0].toLowerCase()] = o.ios; } } else { - _yuitest_coverline("build/yui-core/yui-core.js", 3416); + _yuitest_coverline("build/yui-core/yui-core.js", 3401); m = ua.match(/NokiaN[^\/]*|webOS\/\d\.\d/); - _yuitest_coverline("build/yui-core/yui-core.js", 3417); + _yuitest_coverline("build/yui-core/yui-core.js", 3402); if (m) { // Nokia N-series, webOS, ex: NokiaN95 - _yuitest_coverline("build/yui-core/yui-core.js", 3419); + _yuitest_coverline("build/yui-core/yui-core.js", 3404); o.mobile = m[0]; } - _yuitest_coverline("build/yui-core/yui-core.js", 3421); + _yuitest_coverline("build/yui-core/yui-core.js", 3406); if (/webOS/.test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3422); + _yuitest_coverline("build/yui-core/yui-core.js", 3407); o.mobile = 'WebOS'; - _yuitest_coverline("build/yui-core/yui-core.js", 3423); + _yuitest_coverline("build/yui-core/yui-core.js", 3408); m = ua.match(/webOS\/([^\s]*);/); - _yuitest_coverline("build/yui-core/yui-core.js", 3424); + _yuitest_coverline("build/yui-core/yui-core.js", 3409); if (m && m[1]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3425); + _yuitest_coverline("build/yui-core/yui-core.js", 3410); o.webos = numberify(m[1]); } } - _yuitest_coverline("build/yui-core/yui-core.js", 3428); + _yuitest_coverline("build/yui-core/yui-core.js", 3413); if (/ Android/.test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3429); + _yuitest_coverline("build/yui-core/yui-core.js", 3414); if (/Mobile/.test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3430); + _yuitest_coverline("build/yui-core/yui-core.js", 3415); o.mobile = 'Android'; } - _yuitest_coverline("build/yui-core/yui-core.js", 3432); + _yuitest_coverline("build/yui-core/yui-core.js", 3417); m = ua.match(/Android ([^\s]*);/); - _yuitest_coverline("build/yui-core/yui-core.js", 3433); + _yuitest_coverline("build/yui-core/yui-core.js", 3418); if (m && m[1]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3434); + _yuitest_coverline("build/yui-core/yui-core.js", 3419); o.android = numberify(m[1]); } } - _yuitest_coverline("build/yui-core/yui-core.js", 3438); + _yuitest_coverline("build/yui-core/yui-core.js", 3423); if (/Silk/.test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3439); + _yuitest_coverline("build/yui-core/yui-core.js", 3424); m = ua.match(/Silk\/([^\s]*)\)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3440); + _yuitest_coverline("build/yui-core/yui-core.js", 3425); if (m && m[1]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3441); + _yuitest_coverline("build/yui-core/yui-core.js", 3426); o.silk = numberify(m[1]); } - _yuitest_coverline("build/yui-core/yui-core.js", 3443); + _yuitest_coverline("build/yui-core/yui-core.js", 3428); if (!o.android) { - _yuitest_coverline("build/yui-core/yui-core.js", 3444); + _yuitest_coverline("build/yui-core/yui-core.js", 3429); o.android = 2.34; //Hack for desktop mode in Kindle - _yuitest_coverline("build/yui-core/yui-core.js", 3445); + _yuitest_coverline("build/yui-core/yui-core.js", 3430); o.os = 'Android'; } - _yuitest_coverline("build/yui-core/yui-core.js", 3447); + _yuitest_coverline("build/yui-core/yui-core.js", 3432); if (/Accelerated=true/.test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3448); + _yuitest_coverline("build/yui-core/yui-core.js", 3433); o.accel = true; } } } - _yuitest_coverline("build/yui-core/yui-core.js", 3453); + _yuitest_coverline("build/yui-core/yui-core.js", 3438); m = ua.match(/(Chrome|CrMo|CriOS)\/([^\s]*)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3454); + _yuitest_coverline("build/yui-core/yui-core.js", 3439); if (m && m[1] && m[2]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3455); + _yuitest_coverline("build/yui-core/yui-core.js", 3440); o.chrome = numberify(m[2]); // Chrome - _yuitest_coverline("build/yui-core/yui-core.js", 3456); + _yuitest_coverline("build/yui-core/yui-core.js", 3441); o.safari = 0; //Reset safari back to 0 - _yuitest_coverline("build/yui-core/yui-core.js", 3457); + _yuitest_coverline("build/yui-core/yui-core.js", 3442); if (m[1] === 'CrMo') { - _yuitest_coverline("build/yui-core/yui-core.js", 3458); + _yuitest_coverline("build/yui-core/yui-core.js", 3443); o.mobile = 'chrome'; } } else { - _yuitest_coverline("build/yui-core/yui-core.js", 3461); + _yuitest_coverline("build/yui-core/yui-core.js", 3446); m = ua.match(/AdobeAIR\/([^\s]*)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3462); + _yuitest_coverline("build/yui-core/yui-core.js", 3447); if (m) { - _yuitest_coverline("build/yui-core/yui-core.js", 3463); + _yuitest_coverline("build/yui-core/yui-core.js", 3448); o.air = m[0]; // Adobe AIR 1.0 or better } } } - _yuitest_coverline("build/yui-core/yui-core.js", 3468); + _yuitest_coverline("build/yui-core/yui-core.js", 3453); if (!o.webkit) { // not webkit // @todo check Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1316; fi; U; ssr) - _yuitest_coverline("build/yui-core/yui-core.js", 3470); + _yuitest_coverline("build/yui-core/yui-core.js", 3455); if (/Opera/.test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3471); + _yuitest_coverline("build/yui-core/yui-core.js", 3456); m = ua.match(/Opera[\s\/]([^\s]*)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3472); + _yuitest_coverline("build/yui-core/yui-core.js", 3457); if (m && m[1]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3473); + _yuitest_coverline("build/yui-core/yui-core.js", 3458); o.opera = numberify(m[1]); } - _yuitest_coverline("build/yui-core/yui-core.js", 3475); + _yuitest_coverline("build/yui-core/yui-core.js", 3460); m = ua.match(/Version\/([^\s]*)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3476); + _yuitest_coverline("build/yui-core/yui-core.js", 3461); if (m && m[1]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3477); + _yuitest_coverline("build/yui-core/yui-core.js", 3462); o.opera = numberify(m[1]); // opera 10+ } - _yuitest_coverline("build/yui-core/yui-core.js", 3480); + _yuitest_coverline("build/yui-core/yui-core.js", 3465); if (/Opera Mobi/.test(ua)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3481); + _yuitest_coverline("build/yui-core/yui-core.js", 3466); o.mobile = 'opera'; - _yuitest_coverline("build/yui-core/yui-core.js", 3482); + _yuitest_coverline("build/yui-core/yui-core.js", 3467); m = ua.replace('Opera Mobi', '').match(/Opera ([^\s]*)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3483); + _yuitest_coverline("build/yui-core/yui-core.js", 3468); if (m && m[1]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3484); + _yuitest_coverline("build/yui-core/yui-core.js", 3469); o.opera = numberify(m[1]); } } - _yuitest_coverline("build/yui-core/yui-core.js", 3487); + _yuitest_coverline("build/yui-core/yui-core.js", 3472); m = ua.match(/Opera Mini[^;]*/); - _yuitest_coverline("build/yui-core/yui-core.js", 3489); + _yuitest_coverline("build/yui-core/yui-core.js", 3474); if (m) { - _yuitest_coverline("build/yui-core/yui-core.js", 3490); + _yuitest_coverline("build/yui-core/yui-core.js", 3475); o.mobile = m[0]; // ex: Opera Mini/2.0.4509/1316 } } else { // not opera or webkit - _yuitest_coverline("build/yui-core/yui-core.js", 3493); + _yuitest_coverline("build/yui-core/yui-core.js", 3478); m = ua.match(/MSIE\s([^;]*)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3494); + _yuitest_coverline("build/yui-core/yui-core.js", 3479); if (m && m[1]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3495); + _yuitest_coverline("build/yui-core/yui-core.js", 3480); o.ie = numberify(m[1]); } else { // not opera, webkit, or ie - _yuitest_coverline("build/yui-core/yui-core.js", 3497); + _yuitest_coverline("build/yui-core/yui-core.js", 3482); m = ua.match(/Gecko\/([^\s]*)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3498); + _yuitest_coverline("build/yui-core/yui-core.js", 3483); if (m) { - _yuitest_coverline("build/yui-core/yui-core.js", 3499); + _yuitest_coverline("build/yui-core/yui-core.js", 3484); o.gecko = 1; // Gecko detected, look for revision - _yuitest_coverline("build/yui-core/yui-core.js", 3500); + _yuitest_coverline("build/yui-core/yui-core.js", 3485); m = ua.match(/rv:([^\s\)]*)/); - _yuitest_coverline("build/yui-core/yui-core.js", 3501); + _yuitest_coverline("build/yui-core/yui-core.js", 3486); if (m && m[1]) { - _yuitest_coverline("build/yui-core/yui-core.js", 3502); + _yuitest_coverline("build/yui-core/yui-core.js", 3487); o.gecko = numberify(m[1]); } } @@ -4437,40 +4422,40 @@ o.gecko = numberify(m[1]); //Check for known properties to tell if touch events are enabled on this device or if //the number of MSPointer touchpoints on this device is greater than 0. - _yuitest_coverline("build/yui-core/yui-core.js", 3512); + _yuitest_coverline("build/yui-core/yui-core.js", 3497); if (win && nav && !(o.chrome && o.chrome < 6)) { - _yuitest_coverline("build/yui-core/yui-core.js", 3513); + _yuitest_coverline("build/yui-core/yui-core.js", 3498); o.touchEnabled = (("ontouchstart" in win) || (("msMaxTouchPoints" in nav) && (nav.msMaxTouchPoints > 0))); } //It was a parsed UA, do not assign the global value. - _yuitest_coverline("build/yui-core/yui-core.js", 3517); + _yuitest_coverline("build/yui-core/yui-core.js", 3502); if (!subUA) { - _yuitest_coverline("build/yui-core/yui-core.js", 3519); + _yuitest_coverline("build/yui-core/yui-core.js", 3504); if (typeof process === 'object') { - _yuitest_coverline("build/yui-core/yui-core.js", 3521); + _yuitest_coverline("build/yui-core/yui-core.js", 3506); if (process.versions && process.versions.node) { //NodeJS - _yuitest_coverline("build/yui-core/yui-core.js", 3523); + _yuitest_coverline("build/yui-core/yui-core.js", 3508); o.os = process.platform; - _yuitest_coverline("build/yui-core/yui-core.js", 3524); + _yuitest_coverline("build/yui-core/yui-core.js", 3509); o.nodejs = numberify(process.versions.node); } } - _yuitest_coverline("build/yui-core/yui-core.js", 3528); + _yuitest_coverline("build/yui-core/yui-core.js", 3513); YUI.Env.UA = o; } - _yuitest_coverline("build/yui-core/yui-core.js", 3532); + _yuitest_coverline("build/yui-core/yui-core.js", 3517); return o; }; -_yuitest_coverline("build/yui-core/yui-core.js", 3536); +_yuitest_coverline("build/yui-core/yui-core.js", 3521); Y.UA = YUI.Env.UA || YUI.Env.parseUA(); /** @@ -4493,52 +4478,52 @@ non-numeric characters, like `"535.8.beta"`, may produce unexpected results. @return -1 if _a_ is lower than _b_, 0 if they're equivalent, 1 if _a_ is higher than _b_. **/ -_yuitest_coverline("build/yui-core/yui-core.js", 3558); +_yuitest_coverline("build/yui-core/yui-core.js", 3543); Y.UA.compareVersions = function (a, b) { - _yuitest_coverfunc("build/yui-core/yui-core.js", "compareVersions", 3558); -_yuitest_coverline("build/yui-core/yui-core.js", 3559); + _yuitest_coverfunc("build/yui-core/yui-core.js", "compareVersions", 3543); +_yuitest_coverline("build/yui-core/yui-core.js", 3544); var aPart, aParts, bPart, bParts, i, len; - _yuitest_coverline("build/yui-core/yui-core.js", 3561); + _yuitest_coverline("build/yui-core/yui-core.js", 3546); if (a === b) { - _yuitest_coverline("build/yui-core/yui-core.js", 3562); + _yuitest_coverline("build/yui-core/yui-core.js", 3547); return 0; } - _yuitest_coverline("build/yui-core/yui-core.js", 3565); + _yuitest_coverline("build/yui-core/yui-core.js", 3550); aParts = (a + '').split('.'); - _yuitest_coverline("build/yui-core/yui-core.js", 3566); + _yuitest_coverline("build/yui-core/yui-core.js", 3551); bParts = (b + '').split('.'); - _yuitest_coverline("build/yui-core/yui-core.js", 3568); + _yuitest_coverline("build/yui-core/yui-core.js", 3553); for (i = 0, len = Math.max(aParts.length, bParts.length); i < len; ++i) { - _yuitest_coverline("build/yui-core/yui-core.js", 3569); + _yuitest_coverline("build/yui-core/yui-core.js", 3554); aPart = parseInt(aParts[i], 10); - _yuitest_coverline("build/yui-core/yui-core.js", 3570); + _yuitest_coverline("build/yui-core/yui-core.js", 3555); bPart = parseInt(bParts[i], 10); - _yuitest_coverline("build/yui-core/yui-core.js", 3572); + _yuitest_coverline("build/yui-core/yui-core.js", 3557); isNaN(aPart) && (aPart = 0); - _yuitest_coverline("build/yui-core/yui-core.js", 3573); + _yuitest_coverline("build/yui-core/yui-core.js", 3558); isNaN(bPart) && (bPart = 0); - _yuitest_coverline("build/yui-core/yui-core.js", 3575); + _yuitest_coverline("build/yui-core/yui-core.js", 3560); if (aPart < bPart) { - _yuitest_coverline("build/yui-core/yui-core.js", 3576); + _yuitest_coverline("build/yui-core/yui-core.js", 3561); return -1; } - _yuitest_coverline("build/yui-core/yui-core.js", 3579); + _yuitest_coverline("build/yui-core/yui-core.js", 3564); if (aPart > bPart) { - _yuitest_coverline("build/yui-core/yui-core.js", 3580); + _yuitest_coverline("build/yui-core/yui-core.js", 3565); return 1; } } - _yuitest_coverline("build/yui-core/yui-core.js", 3584); + _yuitest_coverline("build/yui-core/yui-core.js", 3569); return 0; }; -_yuitest_coverline("build/yui-core/yui-core.js", 3586); +_yuitest_coverline("build/yui-core/yui-core.js", 3571); YUI.Env.aliases = { "anim": ["anim-base","anim-color","anim-curve","anim-easing","anim-node-plugin","anim-scroll","anim-xy"], "anim-shape-transform": ["anim-shape"], diff --git a/build/yui-core/yui-core-debug.js b/build/yui-core/yui-core-debug.js index ac16371d50a..1843515f910 100644 --- a/build/yui-core/yui-core-debug.js +++ b/build/yui-core/yui-core-debug.js @@ -2010,20 +2010,6 @@ relying on ES5 functionality, even when ES5 functionality is available. **/ /** -<<<<<<< HEAD -Event to wait for before executing the `use()` callback. - -The following events are supported: - - - available - - contentready - - domready - - load - -The event may be specified as a string or as an object hash that provides -additional event configuration, as illustrated in the example below. - -======= * Leverage native JSON stringify if the browser has a native * implementation. In general, this is a good idea. See the Known Issues * section in the JSON user guide for caveats. The default value is true @@ -2052,7 +2038,6 @@ Delay the `use` callback until a specific event has passed (`load`, `domready`, @property delayUntil @type String|Object @since 3.6.0 ->>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4 @example You can use `load` or `domready` strings by default: diff --git a/build/yui-core/yui-core.js b/build/yui-core/yui-core.js index 803f05a41c1..1b6c657d0bb 100644 --- a/build/yui-core/yui-core.js +++ b/build/yui-core/yui-core.js @@ -1671,20 +1671,6 @@ relying on ES5 functionality, even when ES5 functionality is available. **/ /** -<<<<<<< HEAD -Event to wait for before executing the `use()` callback. - -The following events are supported: - - - available - - contentready - - domready - - load - -The event may be specified as a string or as an object hash that provides -additional event configuration, as illustrated in the example below. - -======= * Leverage native JSON stringify if the browser has a native * implementation. In general, this is a good idea. See the Known Issues * section in the JSON user guide for caveats. The default value is true @@ -1713,7 +1699,6 @@ Delay the `use` callback until a specific event has passed (`load`, `domready`, @property delayUntil @type String|Object @since 3.6.0 ->>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4 @example You can use `load` or `domready` strings by default: diff --git a/build/yui-nodejs/yui-nodejs-coverage.js b/build/yui-nodejs/yui-nodejs-coverage.js index 587e8f66738..ac8c961669b 100644 --- a/build/yui-nodejs/yui-nodejs-coverage.js +++ b/build/yui-nodejs/yui-nodejs-coverage.js @@ -26,7 +26,7 @@ _yuitest_coverage["build/yui-nodejs/yui-nodejs.js"] = { path: "build/yui-nodejs/yui-nodejs.js", code: [] }; -_yuitest_coverage["build/yui-nodejs/yui-nodejs.js"].code=["/**","The YUI module contains the components required for building the YUI seed file.","This includes the script loading mechanism, a simple queue, and the core","utilities for the library.","","@module yui","@main yui","@submodule yui-base","**/","","if (typeof YUI != 'undefined') {"," YUI._YUI = YUI;","}","","/**","The YUI global namespace object. This is the constructor for all YUI instances.","","This is a self-instantiable factory function, meaning you don't need to precede","it with the `new` operator. You can invoke it directly like this:",""," YUI().use('*', function (Y) {"," // Y is a new YUI instance."," });","","But it also works like this:",""," var Y = YUI();","","The `YUI` constructor accepts an optional config object, like this:",""," YUI({"," debug: true,"," combine: false"," }).use('node', function (Y) {"," // Y.Node is ready to use."," });","","See the API docs for the Config class for the complete","list of supported configuration properties accepted by the YUI constuctor.","","If a global `YUI` object is already defined, the existing YUI object will not be","overwritten, to ensure that defined namespaces are preserved.","","Each YUI instance has full custom event support, but only if the event system is","available.","","@class YUI","@uses EventTarget","@constructor","@global","@param {Object} [config]* Zero or more optional configuration objects. Config"," values are stored in the `Y.config` property. See the"," Config docs for the list of supported properties.","**/",""," /*global YUI*/"," /*global YUI_config*/"," var YUI = function() {"," var i = 0,"," Y = this,"," args = arguments,"," l = args.length,"," instanceOf = function(o, type) {"," return (o && o.hasOwnProperty && (o instanceof type));"," },"," gconf = (typeof YUI_config !== 'undefined') && YUI_config;",""," if (!(instanceOf(Y, YUI))) {"," Y = new YUI();"," } else {"," // set up the core environment"," Y._init();",""," /**"," Master configuration that might span multiple contexts in a non-"," browser environment. It is applied first to all instances in all"," contexts.",""," @example",""," YUI.GlobalConfig = {"," filter: 'debug'"," };",""," YUI().use('node', function (Y) {"," // debug files used here"," });",""," YUI({"," filter: 'min'"," }).use('node', function (Y) {"," // min files used here"," });",""," @property {Object} GlobalConfig"," @global"," @static"," **/"," if (YUI.GlobalConfig) {"," Y.applyConfig(YUI.GlobalConfig);"," }",""," /**"," Page-level config applied to all YUI instances created on the"," current page. This is applied after `YUI.GlobalConfig` and before"," any instance-level configuration.",""," @example",""," // Single global var to include before YUI seed file"," YUI_config = {"," filter: 'debug'"," };",""," YUI().use('node', function (Y) {"," // debug files used here"," });",""," YUI({"," filter: 'min'"," }).use('node', function (Y) {"," // min files used here"," });",""," @property {Object} YUI_config"," @global"," **/"," if (gconf) {"," Y.applyConfig(gconf);"," }",""," // bind the specified additional modules for this instance"," if (!l) {"," Y._setup();"," }"," }",""," if (l) {"," // Each instance can accept one or more configuration objects."," // These are applied after YUI.GlobalConfig and YUI_Config,"," // overriding values set in those config files if there is a"," // matching property."," for (; i < l; i++) {"," Y.applyConfig(args[i]);"," }",""," Y._setup();"," }",""," Y.instanceOf = instanceOf;",""," return Y;"," };","","(function() {",""," var proto, prop,"," VERSION = '@VERSION@',"," PERIOD = '.',"," BASE = 'http://yui.yahooapis.com/',"," /*"," These CSS class names can't be generated by"," getClassName since it is not available at the"," time they are being used."," */"," DOC_LABEL = 'yui3-js-enabled',"," CSS_STAMP_EL = 'yui3-css-stamp',"," NOOP = function() {},"," SLICE = Array.prototype.slice,"," APPLY_TO_AUTH = { 'io.xdrReady': 1, // the functions applyTo"," 'io.xdrResponse': 1, // can call. this should"," 'SWF.eventHandler': 1 }, // be done at build time"," hasWin = (typeof window != 'undefined'),"," win = (hasWin) ? window : null,"," doc = (hasWin) ? win.document : null,"," docEl = doc && doc.documentElement,"," docClass = docEl && docEl.className,"," instances = {},"," time = new Date().getTime(),"," add = function(el, type, fn, capture) {"," if (el && el.addEventListener) {"," el.addEventListener(type, fn, capture);"," } else if (el && el.attachEvent) {"," el.attachEvent('on' + type, fn);"," }"," },"," remove = function(el, type, fn, capture) {"," if (el && el.removeEventListener) {"," // this can throw an uncaught exception in FF"," try {"," el.removeEventListener(type, fn, capture);"," } catch (ex) {}"," } else if (el && el.detachEvent) {"," el.detachEvent('on' + type, fn);"," }"," },"," handleLoad = function() {"," YUI.Env.windowLoaded = true;"," YUI.Env.DOMReady = true;"," if (hasWin) {"," remove(window, 'load', handleLoad);"," }"," },"," getLoader = function(Y, o) {"," var loader = Y.Env._loader,"," lCore = [ 'loader-base' ],"," G_ENV = YUI.Env,"," mods = G_ENV.mods;",""," if (loader) {"," //loader._config(Y.config);"," loader.ignoreRegistered = false;"," loader.onEnd = null;"," loader.data = null;"," loader.required = [];"," loader.loadType = null;"," } else {"," loader = new Y.Loader(Y.config);"," Y.Env._loader = loader;"," }"," if (mods && mods.loader) {"," lCore = [].concat(lCore, YUI.Env.loaderExtras);"," }"," YUI.Env.core = Y.Array.dedupe([].concat(YUI.Env.core, lCore));",""," return loader;"," },",""," clobber = function(r, s) {"," for (var i in s) {"," if (s.hasOwnProperty(i)) {"," r[i] = s[i];"," }"," }"," },",""," ALREADY_DONE = { success: true };","","// Stamp the documentElement (HTML) with a class of \"yui-loaded\" to","// enable styles that need to key off of JS being enabled.","if (docEl && docClass.indexOf(DOC_LABEL) == -1) {"," if (docClass) {"," docClass += ' ';"," }"," docClass += DOC_LABEL;"," docEl.className = docClass;","}","","if (VERSION.indexOf('@') > -1) {"," VERSION = '3.5.0'; // dev time hack for cdn test","}","","proto = {"," /**"," Applies a new configuration object to the config of this YUI instance. This"," will merge new group/module definitions, and will also update the loader"," cache if necessary. Updating `Y.config` directly will not update the cache.",""," @method applyConfig"," @param {Object} o the configuration object."," @since 3.2.0"," **/"," applyConfig: function(o) {",""," o = o || NOOP;",""," var attr,"," name,"," // detail,"," config = this.config,"," mods = config.modules,"," groups = config.groups,"," aliases = config.aliases,"," loader = this.Env._loader;",""," for (name in o) {"," if (o.hasOwnProperty(name)) {"," attr = o[name];"," if (mods && name == 'modules') {"," clobber(mods, attr);"," } else if (aliases && name == 'aliases') {"," clobber(aliases, attr);"," } else if (groups && name == 'groups') {"," clobber(groups, attr);"," } else if (name == 'win') {"," config[name] = (attr && attr.contentWindow) || attr;"," config.doc = config[name] ? config[name].document : null;"," } else if (name == '_yuid') {"," // preserve the guid"," } else {"," config[name] = attr;"," }"," }"," }",""," if (loader) {"," loader._config(o);"," }",""," },",""," /**"," Old way to apply a config to this instance (calls `applyConfig` under the"," hood).",""," @private"," @method _config"," @param {Object} o The config to apply"," **/"," _config: function(o) {"," this.applyConfig(o);"," },",""," /**"," Initializes this YUI instance.",""," @private"," @method _init"," **/"," _init: function() {"," var filter, el,"," Y = this,"," G_ENV = YUI.Env,"," Env = Y.Env,"," prop;",""," /**"," The version number of this YUI instance.",""," This value is typically updated by a script when a YUI release is built,"," so it may not reflect the correct version number when YUI is run from"," the development source tree.",""," @property {String} version"," **/"," Y.version = VERSION;",""," if (!Env) {"," Y.Env = {"," core: ['get', 'features', 'intl-base', 'yui-log', 'yui-log-nodejs', 'yui-later', 'loader-base', 'loader-rollup', 'loader-yui3'],"," loaderExtras: ['loader-rollup', 'loader-yui3'],"," mods: {}, // flat module map"," versions: {}, // version module map"," base: BASE,"," cdn: BASE + VERSION + '/build/',"," // bootstrapped: false,"," _idx: 0,"," _used: {},"," _attached: {},"," _missed: [],"," _yidx: 0,"," _uidx: 0,"," _guidp: 'y',"," _loaded: {},"," // serviced: {},"," // Regex in English:"," // I'll start at the \\b(simpleyui)."," // 1. Look in the test string for \"simpleyui\" or \"yui\" or"," // \"yui-base\" or \"yui-davglass\" or \"yui-foobar\" that comes after a word break. That is, it"," // can't match \"foyui\" or \"i_heart_simpleyui\". This can be anywhere in the string."," // 2. After #1 must come a forward slash followed by the string matched in #1, so"," // \"yui-base/yui-base\" or \"simpleyui/simpleyui\" or \"yui-pants/yui-pants\"."," // 3. The second occurence of the #1 token can optionally be followed by \"-debug\" or \"-min\","," // so \"yui/yui-min\", \"yui/yui-debug\", \"yui-base/yui-base-debug\". NOT \"yui/yui-tshirt\"."," // 4. This is followed by \".js\", so \"yui/yui.js\", \"simpleyui/simpleyui-min.js\""," // 0. Going back to the beginning, now. If all that stuff in 1-4 comes after a \"?\" in the string,"," // then capture the junk between the LAST \"&\" and the string in 1-4. So"," // \"blah?foo/yui/yui.js\" will capture \"foo/\" and \"blah?some/thing.js&3.3.0/build/yui-davglass/yui-davglass.js\""," // will capture \"3.3.0/build/\""," //"," // Regex Exploded:"," // (?:\\? Find a ?"," // (?:[^&]*&) followed by 0..n characters followed by an &"," // * in fact, find as many sets of characters followed by a & as you can"," // ([^&]*) capture the stuff after the last & in \\1"," // )? but it's ok if all this ?junk&more_junk stuff isn't even there"," // \\b(simpleyui| after a word break find either the string \"simpleyui\" or"," // yui(?:-\\w+)? the string \"yui\" optionally followed by a -, then more characters"," // ) and store the simpleyui or yui-* string in \\2"," // \\/\\2 then comes a / followed by the simpleyui or yui-* string in \\2"," // (?:-(min|debug))? optionally followed by \"-min\" or \"-debug\""," // .js and ending in \".js\""," _BASE_RE: /(?:\\?(?:[^&]*&)*([^&]*))?\\b(simpleyui|yui(?:-\\w+)?)\\/\\2(?:-(min|debug))?\\.js/,"," parseBasePath: function(src, pattern) {"," var match = src.match(pattern),"," path, filter;",""," if (match) {"," path = RegExp.leftContext || src.slice(0, src.indexOf(match[0]));",""," // this is to set up the path to the loader. The file"," // filter for loader should match the yui include."," filter = match[3];",""," // extract correct path for mixed combo urls"," // http://yuilibrary.com/projects/yui3/ticket/2528423"," if (match[1]) {"," path += '?' + match[1];"," }"," path = {"," filter: filter,"," path: path"," };"," }"," return path;"," },"," getBase: G_ENV && G_ENV.getBase ||"," function(pattern) {"," var nodes = (doc && doc.getElementsByTagName('script')) || [],"," path = Env.cdn, parsed,"," i, len, src;",""," for (i = 0, len = nodes.length; i < len; ++i) {"," src = nodes[i].src;"," if (src) {"," parsed = Y.Env.parseBasePath(src, pattern);"," if (parsed) {"," filter = parsed.filter;"," path = parsed.path;"," break;"," }"," }"," }",""," // use CDN default"," return path;"," }",""," };",""," Env = Y.Env;",""," Env._loaded[VERSION] = {};",""," if (G_ENV && Y !== YUI) {"," Env._yidx = ++G_ENV._yidx;"," Env._guidp = ('yui_' + VERSION + '_' +"," Env._yidx + '_' + time).replace(/[^a-z0-9_]+/g, '_');"," } else if (YUI._YUI) {",""," G_ENV = YUI._YUI.Env;"," Env._yidx += G_ENV._yidx;"," Env._uidx += G_ENV._uidx;",""," for (prop in G_ENV) {"," if (!(prop in Env)) {"," Env[prop] = G_ENV[prop];"," }"," }",""," delete YUI._YUI;"," }",""," Y.id = Y.stamp(Y);"," instances[Y.id] = Y;",""," }",""," Y.constructor = YUI;",""," // configuration defaults"," Y.config = Y.config || {"," bootstrap: true,"," cacheUse: true,"," debug: true,"," doc: doc,"," fetchCSS: true,"," throwFail: true,"," useBrowserConsole: true,"," useNativeES5: true,"," win: win,"," global: Function('return this')()"," };",""," //Register the CSS stamp element"," if (doc && !doc.getElementById(CSS_STAMP_EL)) {"," el = doc.createElement('div');"," el.innerHTML = '';"," YUI.Env.cssStampEl = el.firstChild;"," if (doc.body) {"," doc.body.appendChild(YUI.Env.cssStampEl);"," } else {"," docEl.insertBefore(YUI.Env.cssStampEl, docEl.firstChild);"," }"," } else if (doc && doc.getElementById(CSS_STAMP_EL) && !YUI.Env.cssStampEl) {"," YUI.Env.cssStampEl = doc.getElementById(CSS_STAMP_EL);"," }",""," Y.config.lang = Y.config.lang || 'en-US';",""," Y.config.base = YUI.config.base || Y.Env.getBase(Y.Env._BASE_RE);",""," if (!filter || (!('mindebug').indexOf(filter))) {"," filter = 'min';"," }"," filter = (filter) ? '-' + filter : filter;"," Y.config.loaderPath = YUI.config.loaderPath || 'loader/loader' + filter + '.js';",""," },",""," /**"," Finishes the instance setup. Attaches whatever YUI modules were defined"," at the time that this instance was created.",""," @method _setup"," @private"," **/"," _setup: function(o) {"," var i, Y = this,"," core = [],"," mods = YUI.Env.mods,"," extras = Y.config.core || [].concat(YUI.Env.core); //Clone it..",""," for (i = 0; i < extras.length; i++) {"," if (mods[extras[i]]) {"," core.push(extras[i]);"," }"," }",""," Y._attach(['yui-base']);"," Y._attach(core);",""," if (Y.Loader) {"," getLoader(Y);"," }",""," },",""," /**"," Executes the named method on the specified YUI instance if that method is"," whitelisted.",""," @method applyTo"," @param {String} id YUI instance id."," @param {String} method Name of the method to execute. For example:"," 'Object.keys'."," @param {Array} args Arguments to apply to the method."," @return {Mixed} Return value from the applied method, or `null` if the"," specified instance was not found or the method was not whitelisted."," **/"," applyTo: function(id, method, args) {"," if (!(method in APPLY_TO_AUTH)) {"," this.log(method + ': applyTo not allowed', 'warn', 'yui');"," return null;"," }",""," var instance = instances[id], nest, m, i;"," if (instance) {"," nest = method.split('.');"," m = instance;"," for (i = 0; i < nest.length; i = i + 1) {"," m = m[nest[i]];"," if (!m) {"," this.log('applyTo not found: ' + method, 'warn', 'yui');"," }"," }"," return m && m.apply(instance, args);"," }",""," return null;"," },","","/**","Registers a YUI module and makes it available for use in a `YUI().use()` call or","as a dependency for other modules.","","The easiest way to create a first-class YUI module is to use","Shifter, the YUI component build","tool.","","Shifter will automatically wrap your module code in a `YUI.add()` call along","with any configuration info required for the module.","","@example",""," YUI.add('davglass', function (Y) {"," Y.davglass = function () {"," };"," }, '3.4.0', {"," requires: ['harley-davidson', 'mt-dew']"," });","","@method add","@param {String} name Module name.","@param {Function} fn Function containing module code. This function will be"," executed whenever the module is attached to a specific YUI instance.",""," @param {YUI} fn.Y The YUI instance to which this module is attached."," @param {String} fn.name Name of the module","","@param {String} version Module version number. This is currently used only for"," informational purposes, and is not used internally by YUI.","","@param {Object} [config] Module config."," @param {Array} [config.requires] Array of other module names that must be"," attached before this module can be attached."," @param {Array} [config.optional] Array of optional module names that should"," be attached before this module is attached if they've already been"," loaded. If the `loadOptional` YUI option is `true`, optional modules"," that have not yet been loaded will be loaded just as if they were hard"," requirements."," @param {Array} [config.use] Array of module names that are included within"," or otherwise provided by this module, and which should be attached"," automatically when this module is attached. This makes it possible to"," create \"virtual rollup\" modules that simply attach a collection of other"," modules or submodules.","","@return {YUI} This YUI instance.","**/"," add: function(name, fn, version, details) {"," details = details || {};"," var env = YUI.Env,"," mod = {"," name: name,"," fn: fn,"," version: version,"," details: details"," },"," //Instance hash so we don't apply it to the same instance twice"," applied = {},"," loader, inst,"," i, versions = env.versions;",""," env.mods[name] = mod;"," versions[version] = versions[version] || {};"," versions[version][name] = mod;",""," for (i in instances) {"," if (instances.hasOwnProperty(i)) {"," inst = instances[i];"," if (!applied[inst.id]) {"," applied[inst.id] = true;"," loader = inst.Env._loader;"," if (loader) {"," if (!loader.moduleInfo[name] || loader.moduleInfo[name].temp) {"," loader.addModule(details, name);"," }"," }"," }"," }"," }",""," return this;"," },",""," /**"," Executes the callback function associated with each required module,"," attaching the module to this YUI instance.",""," @method _attach"," @param {Array} r The array of modules to attach"," @param {Boolean} [moot=false] If `true`, don't throw a warning if the module"," is not attached."," @private"," **/"," _attach: function(r, moot) {"," var i, name, mod, details, req, use, after,"," mods = YUI.Env.mods,"," aliases = YUI.Env.aliases,"," Y = this, j,"," cache = YUI.Env._renderedMods,"," loader = Y.Env._loader,"," done = Y.Env._attached,"," len = r.length, loader, def, go,"," c = [];",""," //Check for conditional modules (in a second+ instance) and add their requirements"," //TODO I hate this entire method, it needs to be fixed ASAP (3.5.0) ^davglass"," for (i = 0; i < len; i++) {"," name = r[i];"," mod = mods[name];"," c.push(name);"," if (loader && loader.conditions[name]) {"," for (j in loader.conditions[name]) {"," if (loader.conditions[name].hasOwnProperty(j)) {"," def = loader.conditions[name][j];"," go = def && ((def.ua && Y.UA[def.ua]) || (def.test && def.test(Y)));"," if (go) {"," c.push(def.name);"," }"," }"," }"," }"," }"," r = c;"," len = r.length;",""," for (i = 0; i < len; i++) {"," if (!done[r[i]]) {"," name = r[i];"," mod = mods[name];",""," if (aliases && aliases[name] && !mod) {"," Y._attach(aliases[name]);"," continue;"," }"," if (!mod) {"," if (loader && loader.moduleInfo[name]) {"," mod = loader.moduleInfo[name];"," moot = true;"," }","",""," //if (!loader || !loader.moduleInfo[name]) {"," //if ((!loader || !loader.moduleInfo[name]) && !moot) {"," if (!moot && name) {"," if ((name.indexOf('skin-') === -1) && (name.indexOf('css') === -1)) {"," Y.Env._missed.push(name);"," Y.Env._missed = Y.Array.dedupe(Y.Env._missed);"," Y.message('NOT loaded: ' + name, 'warn', 'yui');"," }"," }"," } else {"," done[name] = true;"," //Don't like this, but in case a mod was asked for once, then we fetch it"," //We need to remove it from the missed list ^davglass"," for (j = 0; j < Y.Env._missed.length; j++) {"," if (Y.Env._missed[j] === name) {"," Y.message('Found: ' + name + ' (was reported as missing earlier)', 'warn', 'yui');"," Y.Env._missed.splice(j, 1);"," }"," }"," /*"," If it's a temp module, we need to redo it's requirements if it's already loaded"," since it may have been loaded by another instance and it's dependencies might"," have been redefined inside the fetched file."," */"," if (loader && cache && cache[name] && cache[name].temp) {"," loader.getRequires(cache[name]);"," req = [];"," for (j in loader.moduleInfo[name].expanded_map) {"," if (loader.moduleInfo[name].expanded_map.hasOwnProperty(j)) {"," req.push(j);"," }"," }"," Y._attach(req);"," }",""," details = mod.details;"," req = details.requires;"," use = details.use;"," after = details.after;"," //Force Intl load if there is a language (Loader logic) @todo fix this shit"," if (details.lang) {"," req = req || [];"," req.unshift('intl');"," }",""," if (req) {"," for (j = 0; j < req.length; j++) {"," if (!done[req[j]]) {"," if (!Y._attach(req)) {"," return false;"," }"," break;"," }"," }"," }",""," if (after) {"," for (j = 0; j < after.length; j++) {"," if (!done[after[j]]) {"," if (!Y._attach(after, true)) {"," return false;"," }"," break;"," }"," }"," }",""," if (mod.fn) {"," if (Y.config.throwFail) {"," mod.fn(Y, name);"," } else {"," try {"," mod.fn(Y, name);"," } catch (e) {"," Y.error('Attach error: ' + name, e, name);"," return false;"," }"," }"," }",""," if (use) {"," for (j = 0; j < use.length; j++) {"," if (!done[use[j]]) {"," if (!Y._attach(use)) {"," return false;"," }"," break;"," }"," }"," }","","",""," }"," }"," }",""," return true;"," },",""," /**"," Delays the `use` callback until another event has taken place such as"," `window.onload`, `domready`, `contentready`, or `available`.",""," @private"," @method _delayCallback"," @param {Function} cb The original `use` callback."," @param {String|Object} until Either an event name ('load', 'domready', etc.)"," or an object containing event/args keys for contentready/available."," @return {Function}"," **/"," _delayCallback: function(cb, until) {",""," var Y = this,"," mod = ['event-base'];",""," until = (Y.Lang.isObject(until) ? until : { event: until });",""," if (until.event === 'load') {"," mod.push('event-synthetic');"," }",""," return function() {"," var args = arguments;"," Y._use(mod, function() {"," Y.on(until.event, function() {"," args[1].delayUntil = until.event;"," cb.apply(Y, args);"," }, until.args);"," });"," };"," },",""," /**"," Attaches one or more modules to this YUI instance. When this is executed,"," the requirements of the desired modules are analyzed, and one of several"," things can happen:","",""," * All required modules have already been loaded, and just need to be"," attached to this YUI instance. In this case, the `use()` callback will"," be executed synchronously after the modules are attached.",""," * One or more modules have not yet been loaded, or the Get utility is not"," available, or the `bootstrap` config option is `false`. In this case,"," a warning is issued indicating that modules are missing, but all"," available modules will still be attached and the `use()` callback will"," be executed synchronously.",""," * One or more modules are missing and the Loader is not available but the"," Get utility is, and `bootstrap` is not `false`. In this case, the Get"," utility will be used to load the Loader, and we will then proceed to"," the following state:",""," * One or more modules are missing and the Loader is available. In this"," case, the Loader will be used to resolve the dependency tree for the"," missing modules and load them and their dependencies. When the Loader is"," finished loading modules, the `use()` callback will be executed"," asynchronously.",""," @example",""," // Loads and attaches dd and its dependencies."," YUI().use('dd', function (Y) {"," // ..."," });",""," // Loads and attaches dd and node as well as all of their dependencies."," YUI().use(['dd', 'node'], function (Y) {"," // ..."," });",""," // Attaches all modules that have already been loaded."," YUI().use('*', function (Y) {"," // ..."," });",""," // Attaches a gallery module."," YUI().use('gallery-yql', function (Y) {"," // ..."," });",""," // Attaches a YUI 2in3 module."," YUI().use('yui2-datatable', function (Y) {"," // ..."," });",""," @method use"," @param {String|Array} modules* One or more module names to attach."," @param {Function} [callback] Callback function to be executed once all"," specified modules and their dependencies have been attached."," @param {YUI} callback.Y The YUI instance created for this sandbox."," @param {Object} callback.status Object containing `success`, `msg` and"," `data` properties."," @chainable"," **/"," use: function() {"," var args = SLICE.call(arguments, 0),"," callback = args[args.length - 1],"," Y = this,"," i = 0,"," a = [],"," name,"," Env = Y.Env,"," provisioned = true;",""," // The last argument supplied to use can be a load complete callback"," if (Y.Lang.isFunction(callback)) {"," args.pop();"," if (Y.config.delayUntil) {"," callback = Y._delayCallback(callback, Y.config.delayUntil);"," }"," } else {"," callback = null;"," }"," if (Y.Lang.isArray(args[0])) {"," args = args[0];"," }",""," if (Y.config.cacheUse) {"," while ((name = args[i++])) {"," if (!Env._attached[name]) {"," provisioned = false;"," break;"," }"," }",""," if (provisioned) {"," if (args.length) {"," }"," Y._notify(callback, ALREADY_DONE, args);"," return Y;"," }"," }",""," if (Y._loading) {"," Y._useQueue = Y._useQueue || new Y.Queue();"," Y._useQueue.add([args, callback]);"," } else {"," Y._use(args, function(Y, response) {"," Y._notify(callback, response, args);"," });"," }",""," return Y;"," },",""," /**"," Handles Loader notifications about attachment/load errors.",""," @method _notify"," @param {Function} callback Callback to pass to `Y.config.loadErrorFn`."," @param {Object} response Response returned from Loader."," @param {Array} args Arguments passed from Loader."," @private"," **/"," _notify: function(callback, response, args) {"," if (!response.success && this.config.loadErrorFn) {"," this.config.loadErrorFn.call(this, this, callback, response, args);"," } else if (callback) {"," if (this.Env._missed && this.Env._missed.length) {"," response.msg = 'Missing modules: ' + this.Env._missed.join();"," response.success = false;"," }"," if (this.config.throwFail) {"," callback(this, response);"," } else {"," try {"," callback(this, response);"," } catch (e) {"," this.error('use callback error', e, args);"," }"," }"," }"," },",""," /**"," Called from the `use` method queue to ensure that only one set of loading"," logic is performed at a time.",""," @method _use"," @param {String} args* One or more modules to attach."," @param {Function} [callback] Function to call once all required modules have"," been attached."," @private"," **/"," _use: function(args, callback) {",""," if (!this.Array) {"," this._attach(['yui-base']);"," }",""," var len, loader, handleBoot, handleRLS,"," Y = this,"," G_ENV = YUI.Env,"," mods = G_ENV.mods,"," Env = Y.Env,"," used = Env._used,"," aliases = G_ENV.aliases,"," queue = G_ENV._loaderQueue,"," firstArg = args[0],"," YArray = Y.Array,"," config = Y.config,"," boot = config.bootstrap,"," missing = [],"," i,"," r = [],"," ret = true,"," fetchCSS = config.fetchCSS,"," process = function(names, skip) {",""," var i = 0, a = [], name, len, m, req, use;",""," if (!names.length) {"," return;"," }",""," if (aliases) {"," len = names.length;"," for (i = 0; i < len; i++) {"," if (aliases[names[i]] && !mods[names[i]]) {"," a = [].concat(a, aliases[names[i]]);"," } else {"," a.push(names[i]);"," }"," }"," names = a;"," }",""," len = names.length;",""," for (i = 0; i < len; i++) {"," name = names[i];"," if (!skip) {"," r.push(name);"," }",""," // only attach a module once"," if (used[name]) {"," continue;"," }",""," m = mods[name];"," req = null;"," use = null;",""," if (m) {"," used[name] = true;"," req = m.details.requires;"," use = m.details.use;"," } else {"," // CSS files don't register themselves, see if it has"," // been loaded"," if (!G_ENV._loaded[VERSION][name]) {"," missing.push(name);"," } else {"," used[name] = true; // probably css"," }"," }",""," // make sure requirements are attached"," if (req && req.length) {"," process(req);"," }",""," // make sure we grab the submodule dependencies too"," if (use && use.length) {"," process(use, 1);"," }"," }",""," },",""," handleLoader = function(fromLoader) {"," var response = fromLoader || {"," success: true,"," msg: 'not dynamic'"," },"," redo, origMissing,"," ret = true,"," data = response.data;",""," Y._loading = false;",""," if (data) {"," origMissing = missing;"," missing = [];"," r = [];"," process(data);"," redo = missing.length;"," if (redo) {"," if ([].concat(missing).sort().join() =="," origMissing.sort().join()) {"," redo = false;"," }"," }"," }",""," if (redo && data) {"," Y._loading = true;"," Y._use(missing, function() {"," if (Y._attach(data)) {"," Y._notify(callback, response, data);"," }"," });"," } else {"," if (data) {"," ret = Y._attach(data);"," }"," if (ret) {"," Y._notify(callback, response, args);"," }"," }",""," if (Y._useQueue && Y._useQueue.size() && !Y._loading) {"," Y._use.apply(Y, Y._useQueue.next());"," }",""," };","",""," // YUI().use('*'); // bind everything available"," if (firstArg === '*') {"," args = [];"," for (i in mods) {"," if (mods.hasOwnProperty(i)) {"," args.push(i);"," }"," }"," ret = Y._attach(args);"," if (ret) {"," handleLoader();"," }"," return Y;"," }",""," if ((mods.loader || mods['loader-base']) && !Y.Loader) {"," Y._attach(['loader' + ((!mods.loader) ? '-base' : '')]);"," }","",""," // use loader to expand dependencies and sort the"," // requirements if it is available."," if (boot && Y.Loader && args.length) {"," loader = getLoader(Y);"," loader.require(args);"," loader.ignoreRegistered = true;"," loader._boot = true;"," loader.calculate(null, (fetchCSS) ? null : 'js');"," args = loader.sorted;"," loader._boot = false;"," }",""," process(args);",""," len = missing.length;","",""," if (len) {"," missing = YArray.dedupe(missing);"," len = missing.length;"," }","",""," // dynamic load"," if (boot && len && Y.Loader) {"," Y._loading = true;"," loader = getLoader(Y);"," loader.onEnd = handleLoader;"," loader.context = Y;"," loader.data = args;"," loader.ignoreRegistered = false;"," loader.require(missing);"," loader.insert(null, (fetchCSS) ? null : 'js');",""," } else if (boot && len && Y.Get && !Env.bootstrapped) {",""," Y._loading = true;",""," handleBoot = function() {"," Y._loading = false;"," queue.running = false;"," Env.bootstrapped = true;"," G_ENV._bootstrapping = false;"," if (Y._attach(['loader'])) {"," Y._use(args, callback);"," }"," };",""," if (G_ENV._bootstrapping) {"," queue.add(handleBoot);"," } else {"," G_ENV._bootstrapping = true;"," Y.Get.script(config.base + config.loaderPath, {"," onEnd: handleBoot"," });"," }",""," } else {"," ret = Y._attach(args);"," if (ret) {"," handleLoader();"," }"," }",""," return Y;"," },","",""," /**"," Utility method for safely creating namespaces if they don't already exist."," May be called statically on the YUI global object or as a method on a YUI"," instance.",""," When called statically, a namespace will be created on the YUI global"," object:",""," // Create `YUI.your.namespace.here` as nested objects, preserving any"," // objects that already exist instead of overwriting them."," YUI.namespace('your.namespace.here');",""," When called as a method on a YUI instance, a namespace will be created on"," that instance:",""," // Creates `Y.property.package`."," Y.namespace('property.package');",""," Dots in the input string cause `namespace` to create nested objects for each"," token. If any part of the requested namespace already exists, the current"," object will be left in place and will not be overwritten. This allows"," multiple calls to `namespace` to preserve existing namespaced properties.",""," If the first token in the namespace string is \"YAHOO\", that token is"," discarded. This is legacy behavior for backwards compatibility with YUI 2.",""," Be careful with namespace tokens. Reserved words may work in some browsers"," and not others. For instance, the following will fail in some browsers"," because the supported version of JavaScript reserves the word \"long\":",""," Y.namespace('really.long.nested.namespace');",""," Note: If you pass multiple arguments to create multiple namespaces, only the"," last one created is returned from this function.",""," @method namespace"," @param {String} namespace* One or more namespaces to create."," @return {Object} Reference to the last namespace object created."," **/"," namespace: function() {"," var a = arguments, o, i = 0, j, d, arg;",""," for (; i < a.length; i++) {"," o = this; //Reset base object per argument or it will get reused from the last"," arg = a[i];"," if (arg.indexOf(PERIOD) > -1) { //Skip this if no \".\" is present"," d = arg.split(PERIOD);"," for (j = (d[0] == 'YAHOO') ? 1 : 0; j < d.length; j++) {"," o[d[j]] = o[d[j]] || {};"," o = o[d[j]];"," }"," } else {"," o[arg] = o[arg] || {};"," o = o[arg]; //Reset base object to the new object so it's returned"," }"," }"," return o;"," },",""," // this is replaced if the log module is included"," log: NOOP,"," message: NOOP,"," // this is replaced if the dump module is included"," dump: function (o) { return ''+o; },",""," /**"," Reports an error.",""," The reporting mechanism is controlled by the `throwFail` configuration"," attribute. If `throwFail` is falsy, the message is logged. If `throwFail` is"," truthy, a JS exception is thrown.",""," If an `errorFn` is specified in the config it must return `true` to indicate"," that the exception was handled and keep it from being thrown.",""," @method error"," @param {String} msg Error message."," @param {Error|String} [e] JavaScript error object or an error string."," @param {String} [src] Source of the error (such as the name of the module in"," which the error occurred)."," @chainable"," **/"," error: function(msg, e, src) {"," //TODO Add check for window.onerror here",""," var Y = this, ret;",""," if (Y.config.errorFn) {"," ret = Y.config.errorFn.apply(Y, arguments);"," }",""," if (!ret) {"," throw (e || new Error(msg));"," } else {"," Y.message(msg, 'error', ''+src); // don't scrub this one"," }",""," return Y;"," },",""," /**"," Generates an id string that is unique among all YUI instances in this"," execution context.",""," @method guid"," @param {String} [pre] Prefix."," @return {String} Unique id."," **/"," guid: function(pre) {"," var id = this.Env._guidp + '_' + (++this.Env._uidx);"," return (pre) ? (pre + id) : id;"," },",""," /**"," Returns a unique id associated with the given object and (if *readOnly* is"," falsy) stamps the object with that id so it can be identified in the future.",""," Stamping an object involves adding a `_yuid` property to it that contains"," the object's id. One exception to this is that in Internet Explorer, DOM"," nodes have a `uniqueID` property that contains a browser-generated unique"," id, which will be used instead of a YUI-generated id when available.",""," @method stamp"," @param {Object} o Object to stamp."," @param {Boolean} readOnly If truthy and the given object has not already"," been stamped, the object will not be modified and `null` will be"," returned."," @return {String} Object's unique id, or `null` if *readOnly* was truthy and"," the given object was not already stamped."," **/"," stamp: function(o, readOnly) {"," var uid;"," if (!o) {"," return o;"," }",""," // IE generates its own unique ID for dom nodes"," // The uniqueID property of a document node returns a new ID"," if (o.uniqueID && o.nodeType && o.nodeType !== 9) {"," uid = o.uniqueID;"," } else {"," uid = (typeof o === 'string') ? o : o._yuid;"," }",""," if (!uid) {"," uid = this.guid();"," if (!readOnly) {"," try {"," o._yuid = uid;"," } catch (e) {"," uid = null;"," }"," }"," }"," return uid;"," },",""," /**"," Destroys this YUI instance.",""," @method destroy"," @since 3.3.0"," **/"," destroy: function() {"," var Y = this;"," if (Y.Event) {"," Y.Event._unload();"," }"," delete instances[Y.id];"," delete Y.Env;"," delete Y.config;"," }",""," /**"," Safe `instanceof` wrapper that works around a memory leak in IE when the"," object being tested is `window` or `document`.",""," Unless you are testing objects that may be `window` or `document`, you"," should use the native `instanceof` operator instead of this method.",""," @method instanceOf"," @param {Object} o Object to check."," @param {Object} type Class to check against."," @since 3.3.0"," **/","};",""," YUI.prototype = proto;",""," // inheritance utilities are not available yet"," for (prop in proto) {"," if (proto.hasOwnProperty(prop)) {"," YUI[prop] = proto[prop];"," }"," }",""," /**"," Applies a configuration to all YUI instances in this execution context.",""," The main use case for this method is in \"mashups\" where several third-party"," scripts need to write to a global YUI config, but cannot share a single"," centrally-managed config object. This way they can all call"," `YUI.applyConfig({})` instead of overwriting the single global config.",""," @example",""," YUI.applyConfig({"," modules: {"," davglass: {"," fullpath: './davglass.js'"," }"," }"," });",""," YUI.applyConfig({"," modules: {"," foo: {"," fullpath: './foo.js'"," }"," }"," });",""," YUI().use('davglass', function (Y) {"," // Module davglass will be available here."," });",""," @method applyConfig"," @param {Object} o Configuration object to apply."," @static"," @since 3.5.0"," **/"," YUI.applyConfig = function(o) {"," if (!o) {"," return;"," }"," //If there is a GlobalConfig, apply it first to set the defaults"," if (YUI.GlobalConfig) {"," this.prototype.applyConfig.call(this, YUI.GlobalConfig);"," }"," //Apply this config to it"," this.prototype.applyConfig.call(this, o);"," //Reset GlobalConfig to the combined config"," YUI.GlobalConfig = this.config;"," };",""," // set up the environment"," YUI._init();",""," if (hasWin) {"," // add a window load event at load time so we can capture"," // the case where it fires before dynamic loading is"," // complete."," add(window, 'load', handleLoad);"," } else {"," handleLoad();"," }",""," YUI.Env.add = add;"," YUI.Env.remove = remove;",""," /*global exports*/"," // Support the CommonJS method for exporting our single global"," if (typeof exports == 'object') {"," exports.YUI = YUI;"," }","","}());","","","/**","Config object that contains all of the configuration options for","this `YUI` instance.","","This object is supplied by the implementer when instantiating YUI. Some","properties have default values if they are not supplied by the implementer.","","This object should not be updated directly because some values are cached. Use","`applyConfig()` to update the config object on a YUI instance that has already","been configured.","","@class config","@static","**/","","/**","If `true` (the default), YUI will \"bootstrap\" the YUI Loader and module metadata","if they're needed to load additional dependencies and aren't already available.","","Setting this to `false` will prevent YUI from automatically loading the Loader","and module metadata, so you will need to manually ensure that they're available","or handle dependency resolution yourself.","","@property {Boolean} bootstrap","@default true","**/","","/**","","@property {Object} aliases","**/","","/**","A hash of module group definitions.","","For each group you can specify a list of modules and the base path and","combo spec to use when dynamically loading the modules.","","@example",""," groups: {"," yui2: {"," // specify whether or not this group has a combo service"," combine: true,",""," // The comboSeperator to use with this group's combo handler"," comboSep: ';',",""," // The maxURLLength for this server"," maxURLLength: 500,",""," // the base path for non-combo paths"," base: 'http://yui.yahooapis.com/2.8.0r4/build/',",""," // the path to the combo service"," comboBase: 'http://yui.yahooapis.com/combo?',",""," // a fragment to prepend to the path attribute when"," // when building combo urls"," root: '2.8.0r4/build/',",""," // the module definitions"," modules: {"," yui2_yde: {"," path: \"yahoo-dom-event/yahoo-dom-event.js\""," },"," yui2_anim: {"," path: \"animation/animation.js\","," requires: ['yui2_yde']"," }"," }"," }"," }","","@property {Object} groups","**/","","/**","Path to the Loader JS file, relative to the `base` path.","","This is used to dynamically bootstrap the Loader when it's needed and isn't yet","available.","","@property {String} loaderPath","@default \"loader/loader-min.js\"","**/","","/**","If `true`, YUI will attempt to load CSS dependencies and skins. Set this to","`false` to prevent YUI from loading any CSS, or set it to the string `\"force\"`","to force CSS dependencies to be loaded even if their associated JS modules are","already loaded.","","@property {Boolean|String} fetchCSS","@default true","**/","","/**","Default gallery version used to build gallery module urls.","","@property {String} gallery","@since 3.1.0","**/","","/**","Default YUI 2 version used to build YUI 2 module urls.","","This is used for intrinsic YUI 2 support via the 2in3 project. Also see the","`2in3` config for pulling different revisions of the wrapped YUI 2 modules.","","@property {String} yui2","@default \"2.9.0\"","@since 3.1.0","**/","","/**","Revision number of YUI 2in3 modules that should be used when loading YUI 2in3.","","@property {String} 2in3","@default \"4\"","@since 3.1.0","**/","","/**","Alternate console log function that should be used in environments without a","supported native console. This function is executed with the YUI instance as its","`this` object.","","@property {Function} logFn","@since 3.1.0","**/","","/**","Callback to execute when `Y.error()` is called. It receives the error message","and a JavaScript error object if one was provided.","","This function is executed with the YUI instance as its `this` object.","","Returning `true` from this function will prevent an exception from being thrown.","","@property {Function} errorFn","@param {String} errorFn.msg Error message","@param {Object} [errorFn.err] Error object (if one was provided).","@since 3.2.0","**/","","/**","A callback to execute when Loader fails to load one or more resources.","","This could be because of a script load failure. It could also be because a","module fails to register itself when the `requireRegistration` config is `true`.","","If this function is defined, the `use()` callback will only be called when the","loader succeeds. Otherwise, `use()` will always executes unless there was a","JavaScript error when attaching a module.","","@property {Function} loadErrorFn","@since 3.3.0","**/","","/**","If `true`, Loader will expect all loaded scripts to be first-class YUI modules","that register themselves with the YUI global, and will trigger a failure if a","loaded script does not register a YUI module.","","@property {Boolean} requireRegistration","@default false","@since 3.3.0","**/","","/**","Cache serviced use() requests.","","@property {Boolean} cacheUse","@default true","@since 3.3.0","@deprecated No longer used.","**/","","/**","Whether or not YUI should use native ES5 functionality when available for","features like `Y.Array.each()`, `Y.Object()`, etc.","","When `false`, YUI will always use its own fallback implementations instead of","relying on ES5 functionality, even when ES5 functionality is available.","","@property {Boolean} useNativeES5","@default true","@since 3.5.0","**/","","/**","<<<<<<< HEAD","Event to wait for before executing the `use()` callback.","","The following events are supported:",""," - available"," - contentready"," - domready"," - load","","The event may be specified as a string or as an object hash that provides","additional event configuration, as illustrated in the example below.","","======="," * Leverage native JSON stringify if the browser has a native"," * implementation. In general, this is a good idea. See the Known Issues"," * section in the JSON user guide for caveats. The default value is true"," * for browsers with native JSON support."," *"," * @property useNativeJSONStringify"," * @type Boolean"," * @default true"," * @since 3.8.0"," */",""," /**"," * Leverage native JSON parse if the browser has a native implementation."," * In general, this is a good idea. See the Known Issues section in the"," * JSON user guide for caveats. The default value is true for browsers with"," * native JSON support."," *"," * @property useNativeJSONParse"," * @type Boolean"," * @default true"," * @since 3.8.0"," */","","/**","Delay the `use` callback until a specific event has passed (`load`, `domready`, `contentready` or `available`)","@property delayUntil","@type String|Object","@since 3.6.0",">>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4","@example","","You can use `load` or `domready` strings by default:",""," YUI({"," delayUntil: 'domready'"," }, function (Y) {"," // This will not execute until 'domeready' occurs."," });","","Or you can delay until a node is available (with `available` or `contentready`):",""," YUI({"," delayUntil: {"," event: 'available',"," args : '#foo'"," }"," }, function (Y) {"," // This will not execute until a node matching the selector \"#foo\" is"," // available in the DOM."," });","","@property {Object|String} delayUntil","@since 3.6.0","**/","YUI.add('yui-base', function (Y, NAME) {","","/*"," * YUI stub"," * @module yui"," * @submodule yui-base"," */","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * Provides core language utilites and extensions used throughout YUI."," *"," * @class Lang"," * @static"," */","","var L = Y.Lang || (Y.Lang = {}),","","STRING_PROTO = String.prototype,","TOSTRING = Object.prototype.toString,","","TYPES = {"," 'undefined' : 'undefined',"," 'number' : 'number',"," 'boolean' : 'boolean',"," 'string' : 'string',"," '[object Function]': 'function',"," '[object RegExp]' : 'regexp',"," '[object Array]' : 'array',"," '[object Date]' : 'date',"," '[object Error]' : 'error'","},","","SUBREGEX = /\\{\\s*([^|}]+?)\\s*(?:\\|([^}]*))?\\s*\\}/g,","TRIMREGEX = /^\\s+|\\s+$/g,","NATIVE_FN_REGEX = /\\{\\s*\\[(?:native code|function)\\]\\s*\\}/i;","","// -- Protected Methods --------------------------------------------------------","","/**","Returns `true` if the given function appears to be implemented in native code,","`false` otherwise. Will always return `false` -- even in ES5-capable browsers --","if the `useNativeES5` YUI config option is set to `false`.","","This isn't guaranteed to be 100% accurate and won't work for anything other than","functions, but it can be useful for determining whether a function like","`Array.prototype.forEach` is native or a JS shim provided by another library.","","There's a great article by @kangax discussing certain flaws with this technique:","","","While his points are valid, it's still possible to benefit from this function","as long as it's used carefully and sparingly, and in such a way that false","negatives have minimal consequences. It's used internally to avoid using","potentially broken non-native ES5 shims that have been added to the page by","other libraries.","","@method _isNative","@param {Function} fn Function to test.","@return {Boolean} `true` if _fn_ appears to be native, `false` otherwise.","@static","@protected","@since 3.5.0","**/","L._isNative = function (fn) {"," return !!(Y.config.useNativeES5 && fn && NATIVE_FN_REGEX.test(fn));","};","","// -- Public Methods -----------------------------------------------------------","","/**"," * Determines whether or not the provided item is an array."," *"," * Returns `false` for array-like collections such as the function `arguments`"," * collection or `HTMLElement` collections. Use `Y.Array.test()` if you want to"," * test for an array-like collection."," *"," * @method isArray"," * @param o The object to test."," * @return {boolean} true if o is an array."," * @static"," */","L.isArray = L._isNative(Array.isArray) ? Array.isArray : function (o) {"," return L.type(o) === 'array';","};","","/**"," * Determines whether or not the provided item is a boolean."," * @method isBoolean"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a boolean."," */","L.isBoolean = function(o) {"," return typeof o === 'boolean';","};","","/**"," * Determines whether or not the supplied item is a date instance."," * @method isDate"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a date."," */","L.isDate = function(o) {"," return L.type(o) === 'date' && o.toString() !== 'Invalid Date' && !isNaN(o);","};","","/**"," *

"," * Determines whether or not the provided item is a function."," * Note: Internet Explorer thinks certain functions are objects:"," *

"," *"," *
"," * var obj = document.createElement(\"object\");"," * Y.Lang.isFunction(obj.getAttribute) // reports false in IE"," *  "," * var input = document.createElement(\"input\"); // append to body"," * Y.Lang.isFunction(input.focus) // reports false in IE"," * 
"," *"," *

"," * You will have to implement additional tests if these functions"," * matter to you."," *

"," *"," * @method isFunction"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a function."," */","L.isFunction = function(o) {"," return L.type(o) === 'function';","};","","/**"," * Determines whether or not the provided item is null."," * @method isNull"," * @static"," * @param o The object to test."," * @return {boolean} true if o is null."," */","L.isNull = function(o) {"," return o === null;","};","","/**"," * Determines whether or not the provided item is a legal number."," * @method isNumber"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a number."," */","L.isNumber = function(o) {"," return typeof o === 'number' && isFinite(o);","};","","/**"," * Determines whether or not the provided item is of type object"," * or function. Note that arrays are also objects, so"," * Y.Lang.isObject([]) === true."," * @method isObject"," * @static"," * @param o The object to test."," * @param failfn {boolean} fail if the input is a function."," * @return {boolean} true if o is an object."," * @see isPlainObject"," */","L.isObject = function(o, failfn) {"," var t = typeof o;"," return (o && (t === 'object' ||"," (!failfn && (t === 'function' || L.isFunction(o))))) || false;","};","","/**"," * Determines whether or not the provided item is a string."," * @method isString"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a string."," */","L.isString = function(o) {"," return typeof o === 'string';","};","","/**"," * Determines whether or not the provided item is undefined."," * @method isUndefined"," * @static"," * @param o The object to test."," * @return {boolean} true if o is undefined."," */","L.isUndefined = function(o) {"," return typeof o === 'undefined';","};","","/**"," * A convenience method for detecting a legitimate non-null value."," * Returns false for null/undefined/NaN, true for other values,"," * including 0/false/''"," * @method isValue"," * @static"," * @param o The item to test."," * @return {boolean} true if it is not null/undefined/NaN || false."," */","L.isValue = function(o) {"," var t = L.type(o);",""," switch (t) {"," case 'number':"," return isFinite(o);",""," case 'null': // fallthru"," case 'undefined':"," return false;",""," default:"," return !!t;"," }","};","","/**"," * Returns the current time in milliseconds."," *"," * @method now"," * @return {Number} Current time in milliseconds."," * @static"," * @since 3.3.0"," */","L.now = Date.now || function () {"," return new Date().getTime();","};","","/**"," * Lightweight version of Y.substitute. Uses the same template"," * structure as Y.substitute, but doesn't support recursion,"," * auto-object coersion, or formats."," * @method sub"," * @param {string} s String to be modified."," * @param {object} o Object containing replacement values."," * @return {string} the substitute result."," * @static"," * @since 3.2.0"," */","L.sub = function(s, o) {"," return s.replace ? s.replace(SUBREGEX, function (match, key) {"," return L.isUndefined(o[key]) ? match : o[key];"," }) : s;","};","","/**"," * Returns a string without any leading or trailing whitespace. If"," * the input is not a string, the input will be returned untouched."," * @method trim"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trim = STRING_PROTO.trim ? function(s) {"," return s && s.trim ? s.trim() : s;","} : function (s) {"," try {"," return s.replace(TRIMREGEX, '');"," } catch (e) {"," return s;"," }","};","","/**"," * Returns a string without any leading whitespace."," * @method trimLeft"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trimLeft = STRING_PROTO.trimLeft ? function (s) {"," return s.trimLeft();","} : function (s) {"," return s.replace(/^\\s+/, '');","};","","/**"," * Returns a string without any trailing whitespace."," * @method trimRight"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trimRight = STRING_PROTO.trimRight ? function (s) {"," return s.trimRight();","} : function (s) {"," return s.replace(/\\s+$/, '');","};","","/**","Returns one of the following strings, representing the type of the item passed","in:",""," * \"array\""," * \"boolean\""," * \"date\""," * \"error\""," * \"function\""," * \"null\""," * \"number\""," * \"object\""," * \"regexp\""," * \"string\""," * \"undefined\"","","Known issues:",""," * `typeof HTMLElementCollection` returns function in Safari, but"," `Y.Lang.type()` reports \"object\", which could be a good thing --"," but it actually caused the logic in Y.Lang.isObject to fail.","","@method type","@param o the item to test.","@return {string} the detected type.","@static","**/","L.type = function(o) {"," return TYPES[typeof o] || TYPES[TOSTRING.call(o)] || (o ? 'object' : 'null');","};","/**","@module yui","@submodule yui-base","*/","","var Lang = Y.Lang,"," Native = Array.prototype,",""," hasOwn = Object.prototype.hasOwnProperty;","","/**","Provides utility methods for working with arrays. Additional array helpers can","be found in the `collection` and `array-extras` modules.","","`Y.Array(thing)` returns a native array created from _thing_. Depending on","_thing_'s type, one of the following will happen:",""," * Arrays are returned unmodified unless a non-zero _startIndex_ is"," specified."," * Array-like collections (see `Array.test()`) are converted to arrays."," * For everything else, a new array is created with _thing_ as the sole"," item.","","Note: elements that are also collections, such as `` and ``, to be array-like.","","@method test","@param {Object} obj Object to test.","@return {Number} A number indicating the results of the test:",""," * 0: Neither an array nor an array-like collection."," * 1: Real array."," * 2: Array-like collection.","","@static","**/","YArray.test = function (obj) {"," var result = 0;",""," if (Lang.isArray(obj)) {"," result = 1;"," } else if (Lang.isObject(obj)) {"," try {"," // indexed, but no tagName (element) or scrollTo/document (window. From DOM.isWindow test which we can't use here),"," // or functions without apply/call (Safari"," // HTMLElementCollection bug)."," if ('length' in obj && !obj.tagName && !(obj.scrollTo && obj.document) && !obj.apply) {"," result = 2;"," }"," } catch (ex) {}"," }",""," return result;","};","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * A simple FIFO queue. Items are added to the Queue with add(1..n items) and"," * removed using next()."," *"," * @class Queue"," * @constructor"," * @param {MIXED} item* 0..n items to seed the queue."," */","function Queue() {"," this._init();"," this.add.apply(this, arguments);","}","","Queue.prototype = {"," /**"," * Initialize the queue"," *"," * @method _init"," * @protected"," */"," _init: function() {"," /**"," * The collection of enqueued items"," *"," * @property _q"," * @type Array"," * @protected"," */"," this._q = [];"," },",""," /**"," * Get the next item in the queue. FIFO support"," *"," * @method next"," * @return {MIXED} the next item in the queue."," */"," next: function() {"," return this._q.shift();"," },",""," /**"," * Get the last in the queue. LIFO support."," *"," * @method last"," * @return {MIXED} the last item in the queue."," */"," last: function() {"," return this._q.pop();"," },",""," /**"," * Add 0..n items to the end of the queue."," *"," * @method add"," * @param {MIXED} item* 0..n items."," * @return {object} this queue."," */"," add: function() {"," this._q.push.apply(this._q, arguments);",""," return this;"," },",""," /**"," * Returns the current number of queued items."," *"," * @method size"," * @return {Number} The size."," */"," size: function() {"," return this._q.length;"," }","};","","Y.Queue = Queue;","","YUI.Env._loaderQueue = YUI.Env._loaderQueue || new Queue();","","/**","The YUI module contains the components required for building the YUI seed file.","This includes the script loading mechanism, a simple queue, and the core","utilities for the library.","","@module yui","@submodule yui-base","**/","","var CACHED_DELIMITER = '__',",""," hasOwn = Object.prototype.hasOwnProperty,"," isObject = Y.Lang.isObject;","","/**","Returns a wrapper for a function which caches the return value of that function,","keyed off of the combined string representation of the argument values provided","when the wrapper is called.","","Calling this function again with the same arguments will return the cached value","rather than executing the wrapped function.","","Note that since the cache is keyed off of the string representation of arguments","passed to the wrapper function, arguments that aren't strings and don't provide","a meaningful `toString()` method may result in unexpected caching behavior. For","example, the objects `{}` and `{foo: 'bar'}` would both be converted to the","string `[object Object]` when used as a cache key.","","@method cached","@param {Function} source The function to memoize.","@param {Object} [cache={}] Object in which to store cached values. You may seed"," this object with pre-existing cached values if desired.","@param {any} [refetch] If supplied, this value is compared with the cached value"," using a `==` comparison. If the values are equal, the wrapped function is"," executed again even though a cached value exists.","@return {Function} Wrapped function.","@for YUI","**/","Y.cached = function (source, cache, refetch) {"," cache || (cache = {});",""," return function (arg) {"," var key = arguments.length > 1 ?"," Array.prototype.join.call(arguments, CACHED_DELIMITER) :"," String(arg);",""," if (!(key in cache) || (refetch && cache[key] == refetch)) {"," cache[key] = source.apply(source, arguments);"," }",""," return cache[key];"," };","};","","/**","Returns the `location` object from the window/frame in which this YUI instance","operates, or `undefined` when executing in a non-browser environment","(e.g. Node.js).","","It is _not_ recommended to hold references to the `window.location` object","outside of the scope of a function in which its properties are being accessed or","its methods are being called. This is because of a nasty bug/issue that exists","in both Safari and MobileSafari browsers:","[WebKit Bug 34679](https://bugs.webkit.org/show_bug.cgi?id=34679).","","@method getLocation","@return {location} The `location` object from the window/frame in which this YUI"," instance operates.","@since 3.5.0","**/","Y.getLocation = function () {"," // It is safer to look this up every time because yui-base is attached to a"," // YUI instance before a user's config is applied; i.e. `Y.config.win` does"," // not point the correct window object when this file is loaded."," var win = Y.config.win;",""," // It is not safe to hold a reference to the `location` object outside the"," // scope in which it is being used. The WebKit engine used in Safari and"," // MobileSafari will \"disconnect\" the `location` object from the `window`"," // when a page is restored from back/forward history cache."," return win && win.location;","};","","/**","Returns a new object containing all of the properties of all the supplied","objects. The properties from later objects will overwrite those in earlier","objects.","","Passing in a single object will create a shallow copy of it. For a deep copy,","use `clone()`.","","@method merge","@param {Object} objects* One or more objects to merge.","@return {Object} A new merged object.","**/","Y.merge = function () {"," var i = 0,"," len = arguments.length,"," result = {},"," key,"," obj;",""," for (; i < len; ++i) {"," obj = arguments[i];",""," for (key in obj) {"," if (hasOwn.call(obj, key)) {"," result[key] = obj[key];"," }"," }"," }",""," return result;","};","","/**","Mixes _supplier_'s properties into _receiver_.","","Properties on _receiver_ or _receiver_'s prototype will not be overwritten or","shadowed unless the _overwrite_ parameter is `true`, and will not be merged","unless the _merge_ parameter is `true`.","","In the default mode (0), only properties the supplier owns are copied (prototype","properties are not copied). The following copying modes are available:",""," * `0`: _Default_. Object to object."," * `1`: Prototype to prototype."," * `2`: Prototype to prototype and object to object."," * `3`: Prototype to object."," * `4`: Object to prototype.","","@method mix","@param {Function|Object} receiver The object or function to receive the mixed"," properties.","@param {Function|Object} supplier The object or function supplying the"," properties to be mixed.","@param {Boolean} [overwrite=false] If `true`, properties that already exist"," on the receiver will be overwritten with properties from the supplier.","@param {String[]} [whitelist] An array of property names to copy. If"," specified, only the whitelisted properties will be copied, and all others"," will be ignored.","@param {Number} [mode=0] Mix mode to use. See above for available modes.","@param {Boolean} [merge=false] If `true`, objects and arrays that already"," exist on the receiver will have the corresponding object/array from the"," supplier merged into them, rather than being skipped or overwritten. When"," both _overwrite_ and _merge_ are `true`, _merge_ takes precedence.","@return {Function|Object|YUI} The receiver, or the YUI instance if the"," specified receiver is falsy.","**/","Y.mix = function(receiver, supplier, overwrite, whitelist, mode, merge) {"," var alwaysOverwrite, exists, from, i, key, len, to;",""," // If no supplier is given, we return the receiver. If no receiver is given,"," // we return Y. Returning Y doesn't make much sense to me, but it's"," // grandfathered in for backcompat reasons."," if (!receiver || !supplier) {"," return receiver || Y;"," }",""," if (mode) {"," // In mode 2 (prototype to prototype and object to object), we recurse"," // once to do the proto to proto mix. The object to object mix will be"," // handled later on."," if (mode === 2) {"," Y.mix(receiver.prototype, supplier.prototype, overwrite,"," whitelist, 0, merge);"," }",""," // Depending on which mode is specified, we may be copying from or to"," // the prototypes of the supplier and receiver."," from = mode === 1 || mode === 3 ? supplier.prototype : supplier;"," to = mode === 1 || mode === 4 ? receiver.prototype : receiver;",""," // If either the supplier or receiver doesn't actually have a"," // prototype property, then we could end up with an undefined `from`"," // or `to`. If that happens, we abort and return the receiver."," if (!from || !to) {"," return receiver;"," }"," } else {"," from = supplier;"," to = receiver;"," }",""," // If `overwrite` is truthy and `merge` is falsy, then we can skip a"," // property existence check on each iteration and save some time."," alwaysOverwrite = overwrite && !merge;",""," if (whitelist) {"," for (i = 0, len = whitelist.length; i < len; ++i) {"," key = whitelist[i];",""," // We call `Object.prototype.hasOwnProperty` instead of calling"," // `hasOwnProperty` on the object itself, since the object's"," // `hasOwnProperty` method may have been overridden or removed."," // Also, some native objects don't implement a `hasOwnProperty`"," // method."," if (!hasOwn.call(from, key)) {"," continue;"," }",""," // The `key in to` check here is (sadly) intentional for backwards"," // compatibility reasons. It prevents undesired shadowing of"," // prototype members on `to`."," exists = alwaysOverwrite ? false : key in to;",""," if (merge && exists && isObject(to[key], true)"," && isObject(from[key], true)) {"," // If we're in merge mode, and the key is present on both"," // objects, and the value on both objects is either an object or"," // an array (but not a function), then we recurse to merge the"," // `from` value into the `to` value instead of overwriting it."," //"," // Note: It's intentional that the whitelist isn't passed to the"," // recursive call here. This is legacy behavior that lots of"," // code still depends on."," Y.mix(to[key], from[key], overwrite, null, 0, merge);"," } else if (overwrite || !exists) {"," // We're not in merge mode, so we'll only copy the `from` value"," // to the `to` value if we're in overwrite mode or if the"," // current key doesn't exist on the `to` object."," to[key] = from[key];"," }"," }"," } else {"," for (key in from) {"," // The code duplication here is for runtime performance reasons."," // Combining whitelist and non-whitelist operations into a single"," // loop or breaking the shared logic out into a function both result"," // in worse performance, and Y.mix is critical enough that the byte"," // tradeoff is worth it."," if (!hasOwn.call(from, key)) {"," continue;"," }",""," // The `key in to` check here is (sadly) intentional for backwards"," // compatibility reasons. It prevents undesired shadowing of"," // prototype members on `to`."," exists = alwaysOverwrite ? false : key in to;",""," if (merge && exists && isObject(to[key], true)"," && isObject(from[key], true)) {"," Y.mix(to[key], from[key], overwrite, null, 0, merge);"," } else if (overwrite || !exists) {"," to[key] = from[key];"," }"," }",""," // If this is an IE browser with the JScript enumeration bug, force"," // enumeration of the buggy properties by making a recursive call with"," // the buggy properties as the whitelist."," if (Y.Object._hasEnumBug) {"," Y.mix(to, from, overwrite, Y.Object._forceEnum, mode, merge);"," }"," }",""," return receiver;","};","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * Adds utilities to the YUI instance for working with objects."," *"," * @class Object"," */","","var Lang = Y.Lang,"," hasOwn = Object.prototype.hasOwnProperty,",""," UNDEFINED, // <-- Note the comma. We're still declaring vars.","","/**"," * Returns a new object that uses _obj_ as its prototype. This method wraps the"," * native ES5 `Object.create()` method if available, but doesn't currently"," * pass through `Object.create()`'s second argument (properties) in order to"," * ensure compatibility with older browsers."," *"," * @method ()"," * @param {Object} obj Prototype object."," * @return {Object} New object using _obj_ as its prototype."," * @static"," */","O = Y.Object = Lang._isNative(Object.create) ? function (obj) {"," // We currently wrap the native Object.create instead of simply aliasing it"," // to ensure consistency with our fallback shim, which currently doesn't"," // support Object.create()'s second argument (properties). Once we have a"," // safe fallback for the properties arg, we can stop wrapping"," // Object.create()."," return Object.create(obj);","} : (function () {"," // Reusable constructor function for the Object.create() shim."," function F() {}",""," // The actual shim."," return function (obj) {"," F.prototype = obj;"," return new F();"," };","}()),","","/**"," * Property names that IE doesn't enumerate in for..in loops, even when they"," * should be enumerable. When `_hasEnumBug` is `true`, it's necessary to"," * manually enumerate these properties."," *"," * @property _forceEnum"," * @type String[]"," * @protected"," * @static"," */","forceEnum = O._forceEnum = ["," 'hasOwnProperty',"," 'isPrototypeOf',"," 'propertyIsEnumerable',"," 'toString',"," 'toLocaleString',"," 'valueOf'","],","","/**"," * `true` if this browser has the JScript enumeration bug that prevents"," * enumeration of the properties named in the `_forceEnum` array, `false`"," * otherwise."," *"," * See:"," * - "," * - "," *"," * @property _hasEnumBug"," * @type Boolean"," * @protected"," * @static"," */","hasEnumBug = O._hasEnumBug = !{valueOf: 0}.propertyIsEnumerable('valueOf'),","","/**"," * `true` if this browser incorrectly considers the `prototype` property of"," * functions to be enumerable. Currently known to affect Opera 11.50."," *"," * @property _hasProtoEnumBug"," * @type Boolean"," * @protected"," * @static"," */","hasProtoEnumBug = O._hasProtoEnumBug = (function () {}).propertyIsEnumerable('prototype'),","","/**"," * Returns `true` if _key_ exists on _obj_, `false` if _key_ doesn't exist or"," * exists only on _obj_'s prototype. This is essentially a safer version of"," * `obj.hasOwnProperty()`."," *"," * @method owns"," * @param {Object} obj Object to test."," * @param {String} key Property name to look for."," * @return {Boolean} `true` if _key_ exists on _obj_, `false` otherwise."," * @static"," */","owns = O.owns = function (obj, key) {"," return !!obj && hasOwn.call(obj, key);","}; // <-- End of var declarations.","","/**"," * Alias for `owns()`."," *"," * @method hasKey"," * @param {Object} obj Object to test."," * @param {String} key Property name to look for."," * @return {Boolean} `true` if _key_ exists on _obj_, `false` otherwise."," * @static"," */","O.hasKey = owns;","","/**"," * Returns an array containing the object's enumerable keys. Does not include"," * prototype keys or non-enumerable keys."," *"," * Note that keys are returned in enumeration order (that is, in the same order"," * that they would be enumerated by a `for-in` loop), which may not be the same"," * as the order in which they were defined."," *"," * This method is an alias for the native ES5 `Object.keys()` method if"," * available."," *"," * @example"," *"," * Y.Object.keys({a: 'foo', b: 'bar', c: 'baz'});"," * // => ['a', 'b', 'c']"," *"," * @method keys"," * @param {Object} obj An object."," * @return {String[]} Array of keys."," * @static"," */","O.keys = Lang._isNative(Object.keys) ? Object.keys : function (obj) {"," if (!Lang.isObject(obj)) {"," throw new TypeError('Object.keys called on a non-object');"," }",""," var keys = [],"," i, key, len;",""," if (hasProtoEnumBug && typeof obj === 'function') {"," for (key in obj) {"," if (owns(obj, key) && key !== 'prototype') {"," keys.push(key);"," }"," }"," } else {"," for (key in obj) {"," if (owns(obj, key)) {"," keys.push(key);"," }"," }"," }",""," if (hasEnumBug) {"," for (i = 0, len = forceEnum.length; i < len; ++i) {"," key = forceEnum[i];",""," if (owns(obj, key)) {"," keys.push(key);"," }"," }"," }",""," return keys;","};","","/**"," * Returns an array containing the values of the object's enumerable keys."," *"," * Note that values are returned in enumeration order (that is, in the same"," * order that they would be enumerated by a `for-in` loop), which may not be the"," * same as the order in which they were defined."," *"," * @example"," *"," * Y.Object.values({a: 'foo', b: 'bar', c: 'baz'});"," * // => ['foo', 'bar', 'baz']"," *"," * @method values"," * @param {Object} obj An object."," * @return {Array} Array of values."," * @static"," */","O.values = function (obj) {"," var keys = O.keys(obj),"," i = 0,"," len = keys.length,"," values = [];",""," for (; i < len; ++i) {"," values.push(obj[keys[i]]);"," }",""," return values;","};","","/**"," * Returns the number of enumerable keys owned by an object."," *"," * @method size"," * @param {Object} obj An object."," * @return {Number} The object's size."," * @static"," */","O.size = function (obj) {"," try {"," return O.keys(obj).length;"," } catch (ex) {"," return 0; // Legacy behavior for non-objects."," }","};","","/**"," * Returns `true` if the object owns an enumerable property with the specified"," * value."," *"," * @method hasValue"," * @param {Object} obj An object."," * @param {any} value The value to search for."," * @return {Boolean} `true` if _obj_ contains _value_, `false` otherwise."," * @static"," */","O.hasValue = function (obj, value) {"," return Y.Array.indexOf(O.values(obj), value) > -1;","};","","/**"," * Executes a function on each enumerable property in _obj_. The function"," * receives the value, the key, and the object itself as parameters (in that"," * order)."," *"," * By default, only properties owned by _obj_ are enumerated. To include"," * prototype properties, set the _proto_ parameter to `true`."," *"," * @method each"," * @param {Object} obj Object to enumerate."," * @param {Function} fn Function to execute on each enumerable property."," * @param {mixed} fn.value Value of the current property."," * @param {String} fn.key Key of the current property."," * @param {Object} fn.obj Object being enumerated."," * @param {Object} [thisObj] `this` object to use when calling _fn_."," * @param {Boolean} [proto=false] Include prototype properties."," * @return {YUI} the YUI instance."," * @chainable"," * @static"," */","O.each = function (obj, fn, thisObj, proto) {"," var key;",""," for (key in obj) {"," if (proto || owns(obj, key)) {"," fn.call(thisObj || Y, obj[key], key, obj);"," }"," }",""," return Y;","};","","/**"," * Executes a function on each enumerable property in _obj_, but halts if the"," * function returns a truthy value. The function receives the value, the key,"," * and the object itself as paramters (in that order)."," *"," * By default, only properties owned by _obj_ are enumerated. To include"," * prototype properties, set the _proto_ parameter to `true`."," *"," * @method some"," * @param {Object} obj Object to enumerate."," * @param {Function} fn Function to execute on each enumerable property."," * @param {mixed} fn.value Value of the current property."," * @param {String} fn.key Key of the current property."," * @param {Object} fn.obj Object being enumerated."," * @param {Object} [thisObj] `this` object to use when calling _fn_."," * @param {Boolean} [proto=false] Include prototype properties."," * @return {Boolean} `true` if any execution of _fn_ returns a truthy value,"," * `false` otherwise."," * @static"," */","O.some = function (obj, fn, thisObj, proto) {"," var key;",""," for (key in obj) {"," if (proto || owns(obj, key)) {"," if (fn.call(thisObj || Y, obj[key], key, obj)) {"," return true;"," }"," }"," }",""," return false;","};","","/**"," * Retrieves the sub value at the provided path,"," * from the value object provided."," *"," * @method getValue"," * @static"," * @param o The object from which to extract the property value."," * @param path {Array} A path array, specifying the object traversal path"," * from which to obtain the sub value."," * @return {Any} The value stored in the path, undefined if not found,"," * undefined if the source is not an object. Returns the source object"," * if an empty path is provided."," */","O.getValue = function(o, path) {"," if (!Lang.isObject(o)) {"," return UNDEFINED;"," }",""," var i,"," p = Y.Array(path),"," l = p.length;",""," for (i = 0; o !== UNDEFINED && i < l; i++) {"," o = o[p[i]];"," }",""," return o;","};","","/**"," * Sets the sub-attribute value at the provided path on the"," * value object. Returns the modified value object, or"," * undefined if the path is invalid."," *"," * @method setValue"," * @static"," * @param o The object on which to set the sub value."," * @param path {Array} A path array, specifying the object traversal path"," * at which to set the sub value."," * @param val {Any} The new value for the sub-attribute."," * @return {Object} The modified object, with the new sub value set, or"," * undefined, if the path was invalid."," */","O.setValue = function(o, path, val) {"," var i,"," p = Y.Array(path),"," leafIdx = p.length - 1,"," ref = o;",""," if (leafIdx >= 0) {"," for (i = 0; ref !== UNDEFINED && i < leafIdx; i++) {"," ref = ref[p[i]];"," }",""," if (ref !== UNDEFINED) {"," ref[p[i]] = val;"," } else {"," return UNDEFINED;"," }"," }",""," return o;","};","","/**"," * Returns `true` if the object has no enumerable properties of its own."," *"," * @method isEmpty"," * @param {Object} obj An object."," * @return {Boolean} `true` if the object is empty."," * @static"," * @since 3.2.0"," */","O.isEmpty = function (obj) {"," return !O.keys(Object(obj)).length;","};","/**"," * The YUI module contains the components required for building the YUI seed"," * file. This includes the script loading mechanism, a simple queue, and the"," * core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * YUI user agent detection."," * Do not fork for a browser if it can be avoided. Use feature detection when"," * you can. Use the user agent as a last resort. For all fields listed"," * as @type float, UA stores a version number for the browser engine,"," * 0 otherwise. This value may or may not map to the version number of"," * the browser using the engine. The value is presented as a float so"," * that it can easily be used for boolean evaluation as well as for"," * looking for a particular range of versions. Because of this,"," * some of the granularity of the version info may be lost. The fields that"," * are @type string default to null. The API docs list the values that"," * these fields can have."," * @class UA"," * @static"," */","","/**","* Static method on `YUI.Env` for parsing a UA string. Called at instantiation","* to populate `Y.UA`.","*","* @static","* @method parseUA","* @param {String} [subUA=navigator.userAgent] UA string to parse","* @return {Object} The Y.UA object","*/","YUI.Env.parseUA = function(subUA) {",""," var numberify = function(s) {"," var c = 0;"," return parseFloat(s.replace(/\\./g, function() {"," return (c++ === 1) ? '' : '.';"," }));"," },",""," win = Y.config.win,",""," nav = win && win.navigator,",""," o = {",""," /**"," * Internet Explorer version number or 0. Example: 6"," * @property ie"," * @type float"," * @static"," */"," ie: 0,",""," /**"," * Opera version number or 0. Example: 9.2"," * @property opera"," * @type float"," * @static"," */"," opera: 0,",""," /**"," * Gecko engine revision number. Will evaluate to 1 if Gecko"," * is detected but the revision could not be found. Other browsers"," * will be 0. Example: 1.8"," *
","         * Firefox 1.0.0.4: 1.7.8   <-- Reports 1.7","         * Firefox 1.5.0.9: 1.8.0.9 <-- 1.8","         * Firefox 2.0.0.3: 1.8.1.3 <-- 1.81","         * Firefox 3.0   <-- 1.9","         * Firefox 3.5   <-- 1.91","         * 
"," * @property gecko"," * @type float"," * @static"," */"," gecko: 0,",""," /**"," * AppleWebKit version. KHTML browsers that are not WebKit browsers"," * will evaluate to 1, other browsers 0. Example: 418.9"," *
","         * Safari 1.3.2 (312.6): 312.8.1 <-- Reports 312.8 -- currently the","         *                                   latest available for Mac OSX 10.3.","         * Safari 2.0.2:         416     <-- hasOwnProperty introduced","         * Safari 2.0.4:         418     <-- preventDefault fixed","         * Safari 2.0.4 (419.3): 418.9.1 <-- One version of Safari may run","         *                                   different versions of webkit","         * Safari 2.0.4 (419.3): 419     <-- Tiger installations that have been","         *                                   updated, but not updated","         *                                   to the latest patch.","         * Webkit 212 nightly:   522+    <-- Safari 3.0 precursor (with native","         * SVG and many major issues fixed).","         * Safari 3.0.4 (523.12) 523.12  <-- First Tiger release - automatic","         * update from 2.x via the 10.4.11 OS patch.","         * Webkit nightly 1/2008:525+    <-- Supports DOMContentLoaded event.","         *                                   yahoo.com user agent hack removed.","         * 
"," * http://en.wikipedia.org/wiki/Safari_version_history"," * @property webkit"," * @type float"," * @static"," */"," webkit: 0,",""," /**"," * Safari will be detected as webkit, but this property will also"," * be populated with the Safari version number"," * @property safari"," * @type float"," * @static"," */"," safari: 0,",""," /**"," * Chrome will be detected as webkit, but this property will also"," * be populated with the Chrome version number"," * @property chrome"," * @type float"," * @static"," */"," chrome: 0,",""," /**"," * The mobile property will be set to a string containing any relevant"," * user agent information when a modern mobile browser is detected."," * Currently limited to Safari on the iPhone/iPod Touch, Nokia N-series"," * devices with the WebKit-based browser, and Opera Mini."," * @property mobile"," * @type string"," * @default null"," * @static"," */"," mobile: null,",""," /**"," * Adobe AIR version number or 0. Only populated if webkit is detected."," * Example: 1.0"," * @property air"," * @type float"," */"," air: 0,"," /**"," * PhantomJS version number or 0. Only populated if webkit is detected."," * Example: 1.0"," * @property phantomjs"," * @type float"," */"," phantomjs: 0,"," /**"," * Detects Apple iPad's OS version"," * @property ipad"," * @type float"," * @static"," */"," ipad: 0,"," /**"," * Detects Apple iPhone's OS version"," * @property iphone"," * @type float"," * @static"," */"," iphone: 0,"," /**"," * Detects Apples iPod's OS version"," * @property ipod"," * @type float"," * @static"," */"," ipod: 0,"," /**"," * General truthy check for iPad, iPhone or iPod"," * @property ios"," * @type Boolean"," * @default null"," * @static"," */"," ios: null,"," /**"," * Detects Googles Android OS version"," * @property android"," * @type float"," * @static"," */"," android: 0,"," /**"," * Detects Kindle Silk"," * @property silk"," * @type float"," * @static"," */"," silk: 0,"," /**"," * Detects Kindle Silk Acceleration"," * @property accel"," * @type Boolean"," * @static"," */"," accel: false,"," /**"," * Detects Palms WebOS version"," * @property webos"," * @type float"," * @static"," */"," webos: 0,",""," /**"," * Google Caja version number or 0."," * @property caja"," * @type float"," */"," caja: nav && nav.cajaVersion,",""," /**"," * Set to true if the page appears to be in SSL"," * @property secure"," * @type boolean"," * @static"," */"," secure: false,",""," /**"," * The operating system. Currently only detecting windows or macintosh"," * @property os"," * @type string"," * @default null"," * @static"," */"," os: null,",""," /**"," * The Nodejs Version"," * @property nodejs"," * @type float"," * @default 0"," * @static"," */"," nodejs: 0,"," /**"," * Window8/IE10 Application host environment"," * @property winjs"," * @type Boolean"," * @static"," */"," winjs: !!((typeof Windows !== \"undefined\") && Windows.System),"," /**"," * Are touch/msPointer events available on this device"," * @property touchEnabled"," * @type Boolean"," * @static"," */"," touchEnabled: false"," },",""," ua = subUA || nav && nav.userAgent,",""," loc = win && win.location,",""," href = loc && loc.href,",""," m;",""," /**"," * The User Agent string that was parsed"," * @property userAgent"," * @type String"," * @static"," */"," o.userAgent = ua;","",""," o.secure = href && (href.toLowerCase().indexOf('https') === 0);",""," if (ua) {",""," if ((/windows|win32/i).test(ua)) {"," o.os = 'windows';"," } else if ((/macintosh|mac_powerpc/i).test(ua)) {"," o.os = 'macintosh';"," } else if ((/android/i).test(ua)) {"," o.os = 'android';"," } else if ((/symbos/i).test(ua)) {"," o.os = 'symbos';"," } else if ((/linux/i).test(ua)) {"," o.os = 'linux';"," } else if ((/rhino/i).test(ua)) {"," o.os = 'rhino';"," }",""," // Modern KHTML browsers should qualify as Safari X-Grade"," if ((/KHTML/).test(ua)) {"," o.webkit = 1;"," }"," if ((/IEMobile|XBLWP7/).test(ua)) {"," o.mobile = 'windows';"," }"," if ((/Fennec/).test(ua)) {"," o.mobile = 'gecko';"," }"," // Modern WebKit browsers are at least X-Grade"," m = ua.match(/AppleWebKit\\/([^\\s]*)/);"," if (m && m[1]) {"," o.webkit = numberify(m[1]);"," o.safari = o.webkit;",""," if (/PhantomJS/.test(ua)) {"," m = ua.match(/PhantomJS\\/([^\\s]*)/);"," if (m && m[1]) {"," o.phantomjs = numberify(m[1]);"," }"," }",""," // Mobile browser check"," if (/ Mobile\\//.test(ua) || (/iPad|iPod|iPhone/).test(ua)) {"," o.mobile = 'Apple'; // iPhone or iPod Touch",""," m = ua.match(/OS ([^\\s]*)/);"," if (m && m[1]) {"," m = numberify(m[1].replace('_', '.'));"," }"," o.ios = m;"," o.os = 'ios';"," o.ipad = o.ipod = o.iphone = 0;",""," m = ua.match(/iPad|iPod|iPhone/);"," if (m && m[0]) {"," o[m[0].toLowerCase()] = o.ios;"," }"," } else {"," m = ua.match(/NokiaN[^\\/]*|webOS\\/\\d\\.\\d/);"," if (m) {"," // Nokia N-series, webOS, ex: NokiaN95"," o.mobile = m[0];"," }"," if (/webOS/.test(ua)) {"," o.mobile = 'WebOS';"," m = ua.match(/webOS\\/([^\\s]*);/);"," if (m && m[1]) {"," o.webos = numberify(m[1]);"," }"," }"," if (/ Android/.test(ua)) {"," if (/Mobile/.test(ua)) {"," o.mobile = 'Android';"," }"," m = ua.match(/Android ([^\\s]*);/);"," if (m && m[1]) {"," o.android = numberify(m[1]);"," }",""," }"," if (/Silk/.test(ua)) {"," m = ua.match(/Silk\\/([^\\s]*)\\)/);"," if (m && m[1]) {"," o.silk = numberify(m[1]);"," }"," if (!o.android) {"," o.android = 2.34; //Hack for desktop mode in Kindle"," o.os = 'Android';"," }"," if (/Accelerated=true/.test(ua)) {"," o.accel = true;"," }"," }"," }",""," m = ua.match(/(Chrome|CrMo|CriOS)\\/([^\\s]*)/);"," if (m && m[1] && m[2]) {"," o.chrome = numberify(m[2]); // Chrome"," o.safari = 0; //Reset safari back to 0"," if (m[1] === 'CrMo') {"," o.mobile = 'chrome';"," }"," } else {"," m = ua.match(/AdobeAIR\\/([^\\s]*)/);"," if (m) {"," o.air = m[0]; // Adobe AIR 1.0 or better"," }"," }"," }",""," if (!o.webkit) { // not webkit","// @todo check Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1316; fi; U; ssr)"," if (/Opera/.test(ua)) {"," m = ua.match(/Opera[\\s\\/]([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]);"," }"," m = ua.match(/Version\\/([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]); // opera 10+"," }",""," if (/Opera Mobi/.test(ua)) {"," o.mobile = 'opera';"," m = ua.replace('Opera Mobi', '').match(/Opera ([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]);"," }"," }"," m = ua.match(/Opera Mini[^;]*/);",""," if (m) {"," o.mobile = m[0]; // ex: Opera Mini/2.0.4509/1316"," }"," } else { // not opera or webkit"," m = ua.match(/MSIE\\s([^;]*)/);"," if (m && m[1]) {"," o.ie = numberify(m[1]);"," } else { // not opera, webkit, or ie"," m = ua.match(/Gecko\\/([^\\s]*)/);"," if (m) {"," o.gecko = 1; // Gecko detected, look for revision"," m = ua.match(/rv:([^\\s\\)]*)/);"," if (m && m[1]) {"," o.gecko = numberify(m[1]);"," }"," }"," }"," }"," }"," }",""," //Check for known properties to tell if touch events are enabled on this device or if"," //the number of MSPointer touchpoints on this device is greater than 0."," if (win && nav && !(o.chrome && o.chrome < 6)) {"," o.touchEnabled = ((\"ontouchstart\" in win) || ((\"msMaxTouchPoints\" in nav) && (nav.msMaxTouchPoints > 0)));"," }",""," //It was a parsed UA, do not assign the global value."," if (!subUA) {",""," if (typeof process === 'object') {",""," if (process.versions && process.versions.node) {"," //NodeJS"," o.os = process.platform;"," o.nodejs = numberify(process.versions.node);"," }"," }",""," YUI.Env.UA = o;",""," }",""," return o;","};","","","Y.UA = YUI.Env.UA || YUI.Env.parseUA();","","/**","Performs a simple comparison between two version numbers, accounting for","standard versioning logic such as the fact that \"535.8\" is a lower version than","\"535.24\", even though a simple numerical comparison would indicate that it's","greater. Also accounts for cases such as \"1.1\" vs. \"1.1.0\", which are","considered equivalent.","","Returns -1 if version _a_ is lower than version _b_, 0 if they're equivalent,","1 if _a_ is higher than _b_.","","Versions may be numbers or strings containing numbers and dots. For example,","both `535` and `\"535.8.10\"` are acceptable. A version string containing","non-numeric characters, like `\"535.8.beta\"`, may produce unexpected results.","","@method compareVersions","@param {Number|String} a First version number to compare.","@param {Number|String} b Second version number to compare.","@return -1 if _a_ is lower than _b_, 0 if they're equivalent, 1 if _a_ is"," higher than _b_.","**/","Y.UA.compareVersions = function (a, b) {"," var aPart, aParts, bPart, bParts, i, len;",""," if (a === b) {"," return 0;"," }",""," aParts = (a + '').split('.');"," bParts = (b + '').split('.');",""," for (i = 0, len = Math.max(aParts.length, bParts.length); i < len; ++i) {"," aPart = parseInt(aParts[i], 10);"," bPart = parseInt(bParts[i], 10);",""," isNaN(aPart) && (aPart = 0);"," isNaN(bPart) && (bPart = 0);",""," if (aPart < bPart) {"," return -1;"," }",""," if (aPart > bPart) {"," return 1;"," }"," }",""," return 0;","};","YUI.Env.aliases = {"," \"anim\": [\"anim-base\",\"anim-color\",\"anim-curve\",\"anim-easing\",\"anim-node-plugin\",\"anim-scroll\",\"anim-xy\"],"," \"anim-shape-transform\": [\"anim-shape\"],"," \"app\": [\"app-base\",\"app-content\",\"app-transitions\",\"lazy-model-list\",\"model\",\"model-list\",\"model-sync-rest\",\"router\",\"view\",\"view-node-map\"],"," \"attribute\": [\"attribute-base\",\"attribute-complex\"],"," \"attribute-events\": [\"attribute-observable\"],"," \"autocomplete\": [\"autocomplete-base\",\"autocomplete-sources\",\"autocomplete-list\",\"autocomplete-plugin\"],"," \"base\": [\"base-base\",\"base-pluginhost\",\"base-build\"],"," \"cache\": [\"cache-base\",\"cache-offline\",\"cache-plugin\"],"," \"collection\": [\"array-extras\",\"arraylist\",\"arraylist-add\",\"arraylist-filter\",\"array-invoke\"],"," \"color\": [\"color-base\",\"color-hsl\",\"color-harmony\"],"," \"controller\": [\"router\"],"," \"dataschema\": [\"dataschema-base\",\"dataschema-json\",\"dataschema-xml\",\"dataschema-array\",\"dataschema-text\"],"," \"datasource\": [\"datasource-local\",\"datasource-io\",\"datasource-get\",\"datasource-function\",\"datasource-cache\",\"datasource-jsonschema\",\"datasource-xmlschema\",\"datasource-arrayschema\",\"datasource-textschema\",\"datasource-polling\"],"," \"datatable\": [\"datatable-core\",\"datatable-table\",\"datatable-head\",\"datatable-body\",\"datatable-base\",\"datatable-column-widths\",\"datatable-message\",\"datatable-mutable\",\"datatable-sort\",\"datatable-datasource\"],"," \"datatable-deprecated\": [\"datatable-base-deprecated\",\"datatable-datasource-deprecated\",\"datatable-sort-deprecated\",\"datatable-scroll-deprecated\"],"," \"datatype\": [\"datatype-date\",\"datatype-number\",\"datatype-xml\"],"," \"datatype-date\": [\"datatype-date-parse\",\"datatype-date-format\",\"datatype-date-math\"],"," \"datatype-number\": [\"datatype-number-parse\",\"datatype-number-format\"],"," \"datatype-xml\": [\"datatype-xml-parse\",\"datatype-xml-format\"],"," \"dd\": [\"dd-ddm-base\",\"dd-ddm\",\"dd-ddm-drop\",\"dd-drag\",\"dd-proxy\",\"dd-constrain\",\"dd-drop\",\"dd-scroll\",\"dd-delegate\"],"," \"dom\": [\"dom-base\",\"dom-screen\",\"dom-style\",\"selector-native\",\"selector\"],"," \"editor\": [\"frame\",\"editor-selection\",\"exec-command\",\"editor-base\",\"editor-para\",\"editor-br\",\"editor-bidi\",\"editor-tab\",\"createlink-base\"],"," \"event\": [\"event-base\",\"event-delegate\",\"event-synthetic\",\"event-mousewheel\",\"event-mouseenter\",\"event-key\",\"event-focus\",\"event-resize\",\"event-hover\",\"event-outside\",\"event-touch\",\"event-move\",\"event-flick\",\"event-valuechange\",\"event-tap\"],"," \"event-custom\": [\"event-custom-base\",\"event-custom-complex\"],"," \"event-gestures\": [\"event-flick\",\"event-move\"],"," \"handlebars\": [\"handlebars-compiler\"],"," \"highlight\": [\"highlight-base\",\"highlight-accentfold\"],"," \"history\": [\"history-base\",\"history-hash\",\"history-hash-ie\",\"history-html5\"],"," \"io\": [\"io-base\",\"io-xdr\",\"io-form\",\"io-upload-iframe\",\"io-queue\"],"," \"json\": [\"json-parse\",\"json-stringify\"],"," \"loader\": [\"loader-base\",\"loader-rollup\",\"loader-yui3\"],"," \"node\": [\"node-base\",\"node-event-delegate\",\"node-pluginhost\",\"node-screen\",\"node-style\"],"," \"pluginhost\": [\"pluginhost-base\",\"pluginhost-config\"],"," \"querystring\": [\"querystring-parse\",\"querystring-stringify\"],"," \"recordset\": [\"recordset-base\",\"recordset-sort\",\"recordset-filter\",\"recordset-indexer\"],"," \"resize\": [\"resize-base\",\"resize-proxy\",\"resize-constrain\"],"," \"slider\": [\"slider-base\",\"slider-value-range\",\"clickable-rail\",\"range-slider\"],"," \"template\": [\"template-base\",\"template-micro\"],"," \"text\": [\"text-accentfold\",\"text-wordbreak\"],"," \"widget\": [\"widget-base\",\"widget-htmlparser\",\"widget-skin\",\"widget-uievents\"]","};","","","}, '@VERSION@', {"," \"use\": ["," \"yui-base\","," \"get\","," \"features\","," \"intl-base\","," \"yui-log\","," \"yui-log-nodejs\","," \"yui-later\","," \"loader-base\","," \"loader-rollup\","," \"loader-yui3\""," ]","});"]; +_yuitest_coverage["build/yui-nodejs/yui-nodejs.js"].code=["/**","The YUI module contains the components required for building the YUI seed file.","This includes the script loading mechanism, a simple queue, and the core","utilities for the library.","","@module yui","@main yui","@submodule yui-base","**/","","if (typeof YUI != 'undefined') {"," YUI._YUI = YUI;","}","","/**","The YUI global namespace object. This is the constructor for all YUI instances.","","This is a self-instantiable factory function, meaning you don't need to precede","it with the `new` operator. You can invoke it directly like this:",""," YUI().use('*', function (Y) {"," // Y is a new YUI instance."," });","","But it also works like this:",""," var Y = YUI();","","The `YUI` constructor accepts an optional config object, like this:",""," YUI({"," debug: true,"," combine: false"," }).use('node', function (Y) {"," // Y.Node is ready to use."," });","","See the API docs for the Config class for the complete","list of supported configuration properties accepted by the YUI constuctor.","","If a global `YUI` object is already defined, the existing YUI object will not be","overwritten, to ensure that defined namespaces are preserved.","","Each YUI instance has full custom event support, but only if the event system is","available.","","@class YUI","@uses EventTarget","@constructor","@global","@param {Object} [config]* Zero or more optional configuration objects. Config"," values are stored in the `Y.config` property. See the"," Config docs for the list of supported properties.","**/",""," /*global YUI*/"," /*global YUI_config*/"," var YUI = function() {"," var i = 0,"," Y = this,"," args = arguments,"," l = args.length,"," instanceOf = function(o, type) {"," return (o && o.hasOwnProperty && (o instanceof type));"," },"," gconf = (typeof YUI_config !== 'undefined') && YUI_config;",""," if (!(instanceOf(Y, YUI))) {"," Y = new YUI();"," } else {"," // set up the core environment"," Y._init();",""," /**"," Master configuration that might span multiple contexts in a non-"," browser environment. It is applied first to all instances in all"," contexts.",""," @example",""," YUI.GlobalConfig = {"," filter: 'debug'"," };",""," YUI().use('node', function (Y) {"," // debug files used here"," });",""," YUI({"," filter: 'min'"," }).use('node', function (Y) {"," // min files used here"," });",""," @property {Object} GlobalConfig"," @global"," @static"," **/"," if (YUI.GlobalConfig) {"," Y.applyConfig(YUI.GlobalConfig);"," }",""," /**"," Page-level config applied to all YUI instances created on the"," current page. This is applied after `YUI.GlobalConfig` and before"," any instance-level configuration.",""," @example",""," // Single global var to include before YUI seed file"," YUI_config = {"," filter: 'debug'"," };",""," YUI().use('node', function (Y) {"," // debug files used here"," });",""," YUI({"," filter: 'min'"," }).use('node', function (Y) {"," // min files used here"," });",""," @property {Object} YUI_config"," @global"," **/"," if (gconf) {"," Y.applyConfig(gconf);"," }",""," // bind the specified additional modules for this instance"," if (!l) {"," Y._setup();"," }"," }",""," if (l) {"," // Each instance can accept one or more configuration objects."," // These are applied after YUI.GlobalConfig and YUI_Config,"," // overriding values set in those config files if there is a"," // matching property."," for (; i < l; i++) {"," Y.applyConfig(args[i]);"," }",""," Y._setup();"," }",""," Y.instanceOf = instanceOf;",""," return Y;"," };","","(function() {",""," var proto, prop,"," VERSION = '@VERSION@',"," PERIOD = '.',"," BASE = 'http://yui.yahooapis.com/',"," /*"," These CSS class names can't be generated by"," getClassName since it is not available at the"," time they are being used."," */"," DOC_LABEL = 'yui3-js-enabled',"," CSS_STAMP_EL = 'yui3-css-stamp',"," NOOP = function() {},"," SLICE = Array.prototype.slice,"," APPLY_TO_AUTH = { 'io.xdrReady': 1, // the functions applyTo"," 'io.xdrResponse': 1, // can call. this should"," 'SWF.eventHandler': 1 }, // be done at build time"," hasWin = (typeof window != 'undefined'),"," win = (hasWin) ? window : null,"," doc = (hasWin) ? win.document : null,"," docEl = doc && doc.documentElement,"," docClass = docEl && docEl.className,"," instances = {},"," time = new Date().getTime(),"," add = function(el, type, fn, capture) {"," if (el && el.addEventListener) {"," el.addEventListener(type, fn, capture);"," } else if (el && el.attachEvent) {"," el.attachEvent('on' + type, fn);"," }"," },"," remove = function(el, type, fn, capture) {"," if (el && el.removeEventListener) {"," // this can throw an uncaught exception in FF"," try {"," el.removeEventListener(type, fn, capture);"," } catch (ex) {}"," } else if (el && el.detachEvent) {"," el.detachEvent('on' + type, fn);"," }"," },"," handleLoad = function() {"," YUI.Env.windowLoaded = true;"," YUI.Env.DOMReady = true;"," if (hasWin) {"," remove(window, 'load', handleLoad);"," }"," },"," getLoader = function(Y, o) {"," var loader = Y.Env._loader,"," lCore = [ 'loader-base' ],"," G_ENV = YUI.Env,"," mods = G_ENV.mods;",""," if (loader) {"," //loader._config(Y.config);"," loader.ignoreRegistered = false;"," loader.onEnd = null;"," loader.data = null;"," loader.required = [];"," loader.loadType = null;"," } else {"," loader = new Y.Loader(Y.config);"," Y.Env._loader = loader;"," }"," if (mods && mods.loader) {"," lCore = [].concat(lCore, YUI.Env.loaderExtras);"," }"," YUI.Env.core = Y.Array.dedupe([].concat(YUI.Env.core, lCore));",""," return loader;"," },",""," clobber = function(r, s) {"," for (var i in s) {"," if (s.hasOwnProperty(i)) {"," r[i] = s[i];"," }"," }"," },",""," ALREADY_DONE = { success: true };","","// Stamp the documentElement (HTML) with a class of \"yui-loaded\" to","// enable styles that need to key off of JS being enabled.","if (docEl && docClass.indexOf(DOC_LABEL) == -1) {"," if (docClass) {"," docClass += ' ';"," }"," docClass += DOC_LABEL;"," docEl.className = docClass;","}","","if (VERSION.indexOf('@') > -1) {"," VERSION = '3.5.0'; // dev time hack for cdn test","}","","proto = {"," /**"," Applies a new configuration object to the config of this YUI instance. This"," will merge new group/module definitions, and will also update the loader"," cache if necessary. Updating `Y.config` directly will not update the cache.",""," @method applyConfig"," @param {Object} o the configuration object."," @since 3.2.0"," **/"," applyConfig: function(o) {",""," o = o || NOOP;",""," var attr,"," name,"," // detail,"," config = this.config,"," mods = config.modules,"," groups = config.groups,"," aliases = config.aliases,"," loader = this.Env._loader;",""," for (name in o) {"," if (o.hasOwnProperty(name)) {"," attr = o[name];"," if (mods && name == 'modules') {"," clobber(mods, attr);"," } else if (aliases && name == 'aliases') {"," clobber(aliases, attr);"," } else if (groups && name == 'groups') {"," clobber(groups, attr);"," } else if (name == 'win') {"," config[name] = (attr && attr.contentWindow) || attr;"," config.doc = config[name] ? config[name].document : null;"," } else if (name == '_yuid') {"," // preserve the guid"," } else {"," config[name] = attr;"," }"," }"," }",""," if (loader) {"," loader._config(o);"," }",""," },",""," /**"," Old way to apply a config to this instance (calls `applyConfig` under the"," hood).",""," @private"," @method _config"," @param {Object} o The config to apply"," **/"," _config: function(o) {"," this.applyConfig(o);"," },",""," /**"," Initializes this YUI instance.",""," @private"," @method _init"," **/"," _init: function() {"," var filter, el,"," Y = this,"," G_ENV = YUI.Env,"," Env = Y.Env,"," prop;",""," /**"," The version number of this YUI instance.",""," This value is typically updated by a script when a YUI release is built,"," so it may not reflect the correct version number when YUI is run from"," the development source tree.",""," @property {String} version"," **/"," Y.version = VERSION;",""," if (!Env) {"," Y.Env = {"," core: ['get', 'features', 'intl-base', 'yui-log', 'yui-log-nodejs', 'yui-later', 'loader-base', 'loader-rollup', 'loader-yui3'],"," loaderExtras: ['loader-rollup', 'loader-yui3'],"," mods: {}, // flat module map"," versions: {}, // version module map"," base: BASE,"," cdn: BASE + VERSION + '/build/',"," // bootstrapped: false,"," _idx: 0,"," _used: {},"," _attached: {},"," _missed: [],"," _yidx: 0,"," _uidx: 0,"," _guidp: 'y',"," _loaded: {},"," // serviced: {},"," // Regex in English:"," // I'll start at the \\b(simpleyui)."," // 1. Look in the test string for \"simpleyui\" or \"yui\" or"," // \"yui-base\" or \"yui-davglass\" or \"yui-foobar\" that comes after a word break. That is, it"," // can't match \"foyui\" or \"i_heart_simpleyui\". This can be anywhere in the string."," // 2. After #1 must come a forward slash followed by the string matched in #1, so"," // \"yui-base/yui-base\" or \"simpleyui/simpleyui\" or \"yui-pants/yui-pants\"."," // 3. The second occurence of the #1 token can optionally be followed by \"-debug\" or \"-min\","," // so \"yui/yui-min\", \"yui/yui-debug\", \"yui-base/yui-base-debug\". NOT \"yui/yui-tshirt\"."," // 4. This is followed by \".js\", so \"yui/yui.js\", \"simpleyui/simpleyui-min.js\""," // 0. Going back to the beginning, now. If all that stuff in 1-4 comes after a \"?\" in the string,"," // then capture the junk between the LAST \"&\" and the string in 1-4. So"," // \"blah?foo/yui/yui.js\" will capture \"foo/\" and \"blah?some/thing.js&3.3.0/build/yui-davglass/yui-davglass.js\""," // will capture \"3.3.0/build/\""," //"," // Regex Exploded:"," // (?:\\? Find a ?"," // (?:[^&]*&) followed by 0..n characters followed by an &"," // * in fact, find as many sets of characters followed by a & as you can"," // ([^&]*) capture the stuff after the last & in \\1"," // )? but it's ok if all this ?junk&more_junk stuff isn't even there"," // \\b(simpleyui| after a word break find either the string \"simpleyui\" or"," // yui(?:-\\w+)? the string \"yui\" optionally followed by a -, then more characters"," // ) and store the simpleyui or yui-* string in \\2"," // \\/\\2 then comes a / followed by the simpleyui or yui-* string in \\2"," // (?:-(min|debug))? optionally followed by \"-min\" or \"-debug\""," // .js and ending in \".js\""," _BASE_RE: /(?:\\?(?:[^&]*&)*([^&]*))?\\b(simpleyui|yui(?:-\\w+)?)\\/\\2(?:-(min|debug))?\\.js/,"," parseBasePath: function(src, pattern) {"," var match = src.match(pattern),"," path, filter;",""," if (match) {"," path = RegExp.leftContext || src.slice(0, src.indexOf(match[0]));",""," // this is to set up the path to the loader. The file"," // filter for loader should match the yui include."," filter = match[3];",""," // extract correct path for mixed combo urls"," // http://yuilibrary.com/projects/yui3/ticket/2528423"," if (match[1]) {"," path += '?' + match[1];"," }"," path = {"," filter: filter,"," path: path"," };"," }"," return path;"," },"," getBase: G_ENV && G_ENV.getBase ||"," function(pattern) {"," var nodes = (doc && doc.getElementsByTagName('script')) || [],"," path = Env.cdn, parsed,"," i, len, src;",""," for (i = 0, len = nodes.length; i < len; ++i) {"," src = nodes[i].src;"," if (src) {"," parsed = Y.Env.parseBasePath(src, pattern);"," if (parsed) {"," filter = parsed.filter;"," path = parsed.path;"," break;"," }"," }"," }",""," // use CDN default"," return path;"," }",""," };",""," Env = Y.Env;",""," Env._loaded[VERSION] = {};",""," if (G_ENV && Y !== YUI) {"," Env._yidx = ++G_ENV._yidx;"," Env._guidp = ('yui_' + VERSION + '_' +"," Env._yidx + '_' + time).replace(/[^a-z0-9_]+/g, '_');"," } else if (YUI._YUI) {",""," G_ENV = YUI._YUI.Env;"," Env._yidx += G_ENV._yidx;"," Env._uidx += G_ENV._uidx;",""," for (prop in G_ENV) {"," if (!(prop in Env)) {"," Env[prop] = G_ENV[prop];"," }"," }",""," delete YUI._YUI;"," }",""," Y.id = Y.stamp(Y);"," instances[Y.id] = Y;",""," }",""," Y.constructor = YUI;",""," // configuration defaults"," Y.config = Y.config || {"," bootstrap: true,"," cacheUse: true,"," debug: true,"," doc: doc,"," fetchCSS: true,"," throwFail: true,"," useBrowserConsole: true,"," useNativeES5: true,"," win: win,"," global: Function('return this')()"," };",""," //Register the CSS stamp element"," if (doc && !doc.getElementById(CSS_STAMP_EL)) {"," el = doc.createElement('div');"," el.innerHTML = '';"," YUI.Env.cssStampEl = el.firstChild;"," if (doc.body) {"," doc.body.appendChild(YUI.Env.cssStampEl);"," } else {"," docEl.insertBefore(YUI.Env.cssStampEl, docEl.firstChild);"," }"," } else if (doc && doc.getElementById(CSS_STAMP_EL) && !YUI.Env.cssStampEl) {"," YUI.Env.cssStampEl = doc.getElementById(CSS_STAMP_EL);"," }",""," Y.config.lang = Y.config.lang || 'en-US';",""," Y.config.base = YUI.config.base || Y.Env.getBase(Y.Env._BASE_RE);",""," if (!filter || (!('mindebug').indexOf(filter))) {"," filter = 'min';"," }"," filter = (filter) ? '-' + filter : filter;"," Y.config.loaderPath = YUI.config.loaderPath || 'loader/loader' + filter + '.js';",""," },",""," /**"," Finishes the instance setup. Attaches whatever YUI modules were defined"," at the time that this instance was created.",""," @method _setup"," @private"," **/"," _setup: function(o) {"," var i, Y = this,"," core = [],"," mods = YUI.Env.mods,"," extras = Y.config.core || [].concat(YUI.Env.core); //Clone it..",""," for (i = 0; i < extras.length; i++) {"," if (mods[extras[i]]) {"," core.push(extras[i]);"," }"," }",""," Y._attach(['yui-base']);"," Y._attach(core);",""," if (Y.Loader) {"," getLoader(Y);"," }",""," },",""," /**"," Executes the named method on the specified YUI instance if that method is"," whitelisted.",""," @method applyTo"," @param {String} id YUI instance id."," @param {String} method Name of the method to execute. For example:"," 'Object.keys'."," @param {Array} args Arguments to apply to the method."," @return {Mixed} Return value from the applied method, or `null` if the"," specified instance was not found or the method was not whitelisted."," **/"," applyTo: function(id, method, args) {"," if (!(method in APPLY_TO_AUTH)) {"," this.log(method + ': applyTo not allowed', 'warn', 'yui');"," return null;"," }",""," var instance = instances[id], nest, m, i;"," if (instance) {"," nest = method.split('.');"," m = instance;"," for (i = 0; i < nest.length; i = i + 1) {"," m = m[nest[i]];"," if (!m) {"," this.log('applyTo not found: ' + method, 'warn', 'yui');"," }"," }"," return m && m.apply(instance, args);"," }",""," return null;"," },","","/**","Registers a YUI module and makes it available for use in a `YUI().use()` call or","as a dependency for other modules.","","The easiest way to create a first-class YUI module is to use","Shifter, the YUI component build","tool.","","Shifter will automatically wrap your module code in a `YUI.add()` call along","with any configuration info required for the module.","","@example",""," YUI.add('davglass', function (Y) {"," Y.davglass = function () {"," };"," }, '3.4.0', {"," requires: ['harley-davidson', 'mt-dew']"," });","","@method add","@param {String} name Module name.","@param {Function} fn Function containing module code. This function will be"," executed whenever the module is attached to a specific YUI instance.",""," @param {YUI} fn.Y The YUI instance to which this module is attached."," @param {String} fn.name Name of the module","","@param {String} version Module version number. This is currently used only for"," informational purposes, and is not used internally by YUI.","","@param {Object} [config] Module config."," @param {Array} [config.requires] Array of other module names that must be"," attached before this module can be attached."," @param {Array} [config.optional] Array of optional module names that should"," be attached before this module is attached if they've already been"," loaded. If the `loadOptional` YUI option is `true`, optional modules"," that have not yet been loaded will be loaded just as if they were hard"," requirements."," @param {Array} [config.use] Array of module names that are included within"," or otherwise provided by this module, and which should be attached"," automatically when this module is attached. This makes it possible to"," create \"virtual rollup\" modules that simply attach a collection of other"," modules or submodules.","","@return {YUI} This YUI instance.","**/"," add: function(name, fn, version, details) {"," details = details || {};"," var env = YUI.Env,"," mod = {"," name: name,"," fn: fn,"," version: version,"," details: details"," },"," //Instance hash so we don't apply it to the same instance twice"," applied = {},"," loader, inst,"," i, versions = env.versions;",""," env.mods[name] = mod;"," versions[version] = versions[version] || {};"," versions[version][name] = mod;",""," for (i in instances) {"," if (instances.hasOwnProperty(i)) {"," inst = instances[i];"," if (!applied[inst.id]) {"," applied[inst.id] = true;"," loader = inst.Env._loader;"," if (loader) {"," if (!loader.moduleInfo[name] || loader.moduleInfo[name].temp) {"," loader.addModule(details, name);"," }"," }"," }"," }"," }",""," return this;"," },",""," /**"," Executes the callback function associated with each required module,"," attaching the module to this YUI instance.",""," @method _attach"," @param {Array} r The array of modules to attach"," @param {Boolean} [moot=false] If `true`, don't throw a warning if the module"," is not attached."," @private"," **/"," _attach: function(r, moot) {"," var i, name, mod, details, req, use, after,"," mods = YUI.Env.mods,"," aliases = YUI.Env.aliases,"," Y = this, j,"," cache = YUI.Env._renderedMods,"," loader = Y.Env._loader,"," done = Y.Env._attached,"," len = r.length, loader, def, go,"," c = [];",""," //Check for conditional modules (in a second+ instance) and add their requirements"," //TODO I hate this entire method, it needs to be fixed ASAP (3.5.0) ^davglass"," for (i = 0; i < len; i++) {"," name = r[i];"," mod = mods[name];"," c.push(name);"," if (loader && loader.conditions[name]) {"," for (j in loader.conditions[name]) {"," if (loader.conditions[name].hasOwnProperty(j)) {"," def = loader.conditions[name][j];"," go = def && ((def.ua && Y.UA[def.ua]) || (def.test && def.test(Y)));"," if (go) {"," c.push(def.name);"," }"," }"," }"," }"," }"," r = c;"," len = r.length;",""," for (i = 0; i < len; i++) {"," if (!done[r[i]]) {"," name = r[i];"," mod = mods[name];",""," if (aliases && aliases[name] && !mod) {"," Y._attach(aliases[name]);"," continue;"," }"," if (!mod) {"," if (loader && loader.moduleInfo[name]) {"," mod = loader.moduleInfo[name];"," moot = true;"," }","",""," //if (!loader || !loader.moduleInfo[name]) {"," //if ((!loader || !loader.moduleInfo[name]) && !moot) {"," if (!moot && name) {"," if ((name.indexOf('skin-') === -1) && (name.indexOf('css') === -1)) {"," Y.Env._missed.push(name);"," Y.Env._missed = Y.Array.dedupe(Y.Env._missed);"," Y.message('NOT loaded: ' + name, 'warn', 'yui');"," }"," }"," } else {"," done[name] = true;"," //Don't like this, but in case a mod was asked for once, then we fetch it"," //We need to remove it from the missed list ^davglass"," for (j = 0; j < Y.Env._missed.length; j++) {"," if (Y.Env._missed[j] === name) {"," Y.message('Found: ' + name + ' (was reported as missing earlier)', 'warn', 'yui');"," Y.Env._missed.splice(j, 1);"," }"," }"," /*"," If it's a temp module, we need to redo it's requirements if it's already loaded"," since it may have been loaded by another instance and it's dependencies might"," have been redefined inside the fetched file."," */"," if (loader && cache && cache[name] && cache[name].temp) {"," loader.getRequires(cache[name]);"," req = [];"," for (j in loader.moduleInfo[name].expanded_map) {"," if (loader.moduleInfo[name].expanded_map.hasOwnProperty(j)) {"," req.push(j);"," }"," }"," Y._attach(req);"," }",""," details = mod.details;"," req = details.requires;"," use = details.use;"," after = details.after;"," //Force Intl load if there is a language (Loader logic) @todo fix this shit"," if (details.lang) {"," req = req || [];"," req.unshift('intl');"," }",""," if (req) {"," for (j = 0; j < req.length; j++) {"," if (!done[req[j]]) {"," if (!Y._attach(req)) {"," return false;"," }"," break;"," }"," }"," }",""," if (after) {"," for (j = 0; j < after.length; j++) {"," if (!done[after[j]]) {"," if (!Y._attach(after, true)) {"," return false;"," }"," break;"," }"," }"," }",""," if (mod.fn) {"," if (Y.config.throwFail) {"," mod.fn(Y, name);"," } else {"," try {"," mod.fn(Y, name);"," } catch (e) {"," Y.error('Attach error: ' + name, e, name);"," return false;"," }"," }"," }",""," if (use) {"," for (j = 0; j < use.length; j++) {"," if (!done[use[j]]) {"," if (!Y._attach(use)) {"," return false;"," }"," break;"," }"," }"," }","","",""," }"," }"," }",""," return true;"," },",""," /**"," Delays the `use` callback until another event has taken place such as"," `window.onload`, `domready`, `contentready`, or `available`.",""," @private"," @method _delayCallback"," @param {Function} cb The original `use` callback."," @param {String|Object} until Either an event name ('load', 'domready', etc.)"," or an object containing event/args keys for contentready/available."," @return {Function}"," **/"," _delayCallback: function(cb, until) {",""," var Y = this,"," mod = ['event-base'];",""," until = (Y.Lang.isObject(until) ? until : { event: until });",""," if (until.event === 'load') {"," mod.push('event-synthetic');"," }",""," return function() {"," var args = arguments;"," Y._use(mod, function() {"," Y.on(until.event, function() {"," args[1].delayUntil = until.event;"," cb.apply(Y, args);"," }, until.args);"," });"," };"," },",""," /**"," Attaches one or more modules to this YUI instance. When this is executed,"," the requirements of the desired modules are analyzed, and one of several"," things can happen:","",""," * All required modules have already been loaded, and just need to be"," attached to this YUI instance. In this case, the `use()` callback will"," be executed synchronously after the modules are attached.",""," * One or more modules have not yet been loaded, or the Get utility is not"," available, or the `bootstrap` config option is `false`. In this case,"," a warning is issued indicating that modules are missing, but all"," available modules will still be attached and the `use()` callback will"," be executed synchronously.",""," * One or more modules are missing and the Loader is not available but the"," Get utility is, and `bootstrap` is not `false`. In this case, the Get"," utility will be used to load the Loader, and we will then proceed to"," the following state:",""," * One or more modules are missing and the Loader is available. In this"," case, the Loader will be used to resolve the dependency tree for the"," missing modules and load them and their dependencies. When the Loader is"," finished loading modules, the `use()` callback will be executed"," asynchronously.",""," @example",""," // Loads and attaches dd and its dependencies."," YUI().use('dd', function (Y) {"," // ..."," });",""," // Loads and attaches dd and node as well as all of their dependencies."," YUI().use(['dd', 'node'], function (Y) {"," // ..."," });",""," // Attaches all modules that have already been loaded."," YUI().use('*', function (Y) {"," // ..."," });",""," // Attaches a gallery module."," YUI().use('gallery-yql', function (Y) {"," // ..."," });",""," // Attaches a YUI 2in3 module."," YUI().use('yui2-datatable', function (Y) {"," // ..."," });",""," @method use"," @param {String|Array} modules* One or more module names to attach."," @param {Function} [callback] Callback function to be executed once all"," specified modules and their dependencies have been attached."," @param {YUI} callback.Y The YUI instance created for this sandbox."," @param {Object} callback.status Object containing `success`, `msg` and"," `data` properties."," @chainable"," **/"," use: function() {"," var args = SLICE.call(arguments, 0),"," callback = args[args.length - 1],"," Y = this,"," i = 0,"," a = [],"," name,"," Env = Y.Env,"," provisioned = true;",""," // The last argument supplied to use can be a load complete callback"," if (Y.Lang.isFunction(callback)) {"," args.pop();"," if (Y.config.delayUntil) {"," callback = Y._delayCallback(callback, Y.config.delayUntil);"," }"," } else {"," callback = null;"," }"," if (Y.Lang.isArray(args[0])) {"," args = args[0];"," }",""," if (Y.config.cacheUse) {"," while ((name = args[i++])) {"," if (!Env._attached[name]) {"," provisioned = false;"," break;"," }"," }",""," if (provisioned) {"," if (args.length) {"," }"," Y._notify(callback, ALREADY_DONE, args);"," return Y;"," }"," }",""," if (Y._loading) {"," Y._useQueue = Y._useQueue || new Y.Queue();"," Y._useQueue.add([args, callback]);"," } else {"," Y._use(args, function(Y, response) {"," Y._notify(callback, response, args);"," });"," }",""," return Y;"," },",""," /**"," Handles Loader notifications about attachment/load errors.",""," @method _notify"," @param {Function} callback Callback to pass to `Y.config.loadErrorFn`."," @param {Object} response Response returned from Loader."," @param {Array} args Arguments passed from Loader."," @private"," **/"," _notify: function(callback, response, args) {"," if (!response.success && this.config.loadErrorFn) {"," this.config.loadErrorFn.call(this, this, callback, response, args);"," } else if (callback) {"," if (this.Env._missed && this.Env._missed.length) {"," response.msg = 'Missing modules: ' + this.Env._missed.join();"," response.success = false;"," }"," if (this.config.throwFail) {"," callback(this, response);"," } else {"," try {"," callback(this, response);"," } catch (e) {"," this.error('use callback error', e, args);"," }"," }"," }"," },",""," /**"," Called from the `use` method queue to ensure that only one set of loading"," logic is performed at a time.",""," @method _use"," @param {String} args* One or more modules to attach."," @param {Function} [callback] Function to call once all required modules have"," been attached."," @private"," **/"," _use: function(args, callback) {",""," if (!this.Array) {"," this._attach(['yui-base']);"," }",""," var len, loader, handleBoot, handleRLS,"," Y = this,"," G_ENV = YUI.Env,"," mods = G_ENV.mods,"," Env = Y.Env,"," used = Env._used,"," aliases = G_ENV.aliases,"," queue = G_ENV._loaderQueue,"," firstArg = args[0],"," YArray = Y.Array,"," config = Y.config,"," boot = config.bootstrap,"," missing = [],"," i,"," r = [],"," ret = true,"," fetchCSS = config.fetchCSS,"," process = function(names, skip) {",""," var i = 0, a = [], name, len, m, req, use;",""," if (!names.length) {"," return;"," }",""," if (aliases) {"," len = names.length;"," for (i = 0; i < len; i++) {"," if (aliases[names[i]] && !mods[names[i]]) {"," a = [].concat(a, aliases[names[i]]);"," } else {"," a.push(names[i]);"," }"," }"," names = a;"," }",""," len = names.length;",""," for (i = 0; i < len; i++) {"," name = names[i];"," if (!skip) {"," r.push(name);"," }",""," // only attach a module once"," if (used[name]) {"," continue;"," }",""," m = mods[name];"," req = null;"," use = null;",""," if (m) {"," used[name] = true;"," req = m.details.requires;"," use = m.details.use;"," } else {"," // CSS files don't register themselves, see if it has"," // been loaded"," if (!G_ENV._loaded[VERSION][name]) {"," missing.push(name);"," } else {"," used[name] = true; // probably css"," }"," }",""," // make sure requirements are attached"," if (req && req.length) {"," process(req);"," }",""," // make sure we grab the submodule dependencies too"," if (use && use.length) {"," process(use, 1);"," }"," }",""," },",""," handleLoader = function(fromLoader) {"," var response = fromLoader || {"," success: true,"," msg: 'not dynamic'"," },"," redo, origMissing,"," ret = true,"," data = response.data;",""," Y._loading = false;",""," if (data) {"," origMissing = missing;"," missing = [];"," r = [];"," process(data);"," redo = missing.length;"," if (redo) {"," if ([].concat(missing).sort().join() =="," origMissing.sort().join()) {"," redo = false;"," }"," }"," }",""," if (redo && data) {"," Y._loading = true;"," Y._use(missing, function() {"," if (Y._attach(data)) {"," Y._notify(callback, response, data);"," }"," });"," } else {"," if (data) {"," ret = Y._attach(data);"," }"," if (ret) {"," Y._notify(callback, response, args);"," }"," }",""," if (Y._useQueue && Y._useQueue.size() && !Y._loading) {"," Y._use.apply(Y, Y._useQueue.next());"," }",""," };","",""," // YUI().use('*'); // bind everything available"," if (firstArg === '*') {"," args = [];"," for (i in mods) {"," if (mods.hasOwnProperty(i)) {"," args.push(i);"," }"," }"," ret = Y._attach(args);"," if (ret) {"," handleLoader();"," }"," return Y;"," }",""," if ((mods.loader || mods['loader-base']) && !Y.Loader) {"," Y._attach(['loader' + ((!mods.loader) ? '-base' : '')]);"," }","",""," // use loader to expand dependencies and sort the"," // requirements if it is available."," if (boot && Y.Loader && args.length) {"," loader = getLoader(Y);"," loader.require(args);"," loader.ignoreRegistered = true;"," loader._boot = true;"," loader.calculate(null, (fetchCSS) ? null : 'js');"," args = loader.sorted;"," loader._boot = false;"," }",""," process(args);",""," len = missing.length;","",""," if (len) {"," missing = YArray.dedupe(missing);"," len = missing.length;"," }","",""," // dynamic load"," if (boot && len && Y.Loader) {"," Y._loading = true;"," loader = getLoader(Y);"," loader.onEnd = handleLoader;"," loader.context = Y;"," loader.data = args;"," loader.ignoreRegistered = false;"," loader.require(missing);"," loader.insert(null, (fetchCSS) ? null : 'js');",""," } else if (boot && len && Y.Get && !Env.bootstrapped) {",""," Y._loading = true;",""," handleBoot = function() {"," Y._loading = false;"," queue.running = false;"," Env.bootstrapped = true;"," G_ENV._bootstrapping = false;"," if (Y._attach(['loader'])) {"," Y._use(args, callback);"," }"," };",""," if (G_ENV._bootstrapping) {"," queue.add(handleBoot);"," } else {"," G_ENV._bootstrapping = true;"," Y.Get.script(config.base + config.loaderPath, {"," onEnd: handleBoot"," });"," }",""," } else {"," ret = Y._attach(args);"," if (ret) {"," handleLoader();"," }"," }",""," return Y;"," },","",""," /**"," Utility method for safely creating namespaces if they don't already exist."," May be called statically on the YUI global object or as a method on a YUI"," instance.",""," When called statically, a namespace will be created on the YUI global"," object:",""," // Create `YUI.your.namespace.here` as nested objects, preserving any"," // objects that already exist instead of overwriting them."," YUI.namespace('your.namespace.here');",""," When called as a method on a YUI instance, a namespace will be created on"," that instance:",""," // Creates `Y.property.package`."," Y.namespace('property.package');",""," Dots in the input string cause `namespace` to create nested objects for each"," token. If any part of the requested namespace already exists, the current"," object will be left in place and will not be overwritten. This allows"," multiple calls to `namespace` to preserve existing namespaced properties.",""," If the first token in the namespace string is \"YAHOO\", that token is"," discarded. This is legacy behavior for backwards compatibility with YUI 2.",""," Be careful with namespace tokens. Reserved words may work in some browsers"," and not others. For instance, the following will fail in some browsers"," because the supported version of JavaScript reserves the word \"long\":",""," Y.namespace('really.long.nested.namespace');",""," Note: If you pass multiple arguments to create multiple namespaces, only the"," last one created is returned from this function.",""," @method namespace"," @param {String} namespace* One or more namespaces to create."," @return {Object} Reference to the last namespace object created."," **/"," namespace: function() {"," var a = arguments, o, i = 0, j, d, arg;",""," for (; i < a.length; i++) {"," o = this; //Reset base object per argument or it will get reused from the last"," arg = a[i];"," if (arg.indexOf(PERIOD) > -1) { //Skip this if no \".\" is present"," d = arg.split(PERIOD);"," for (j = (d[0] == 'YAHOO') ? 1 : 0; j < d.length; j++) {"," o[d[j]] = o[d[j]] || {};"," o = o[d[j]];"," }"," } else {"," o[arg] = o[arg] || {};"," o = o[arg]; //Reset base object to the new object so it's returned"," }"," }"," return o;"," },",""," // this is replaced if the log module is included"," log: NOOP,"," message: NOOP,"," // this is replaced if the dump module is included"," dump: function (o) { return ''+o; },",""," /**"," Reports an error.",""," The reporting mechanism is controlled by the `throwFail` configuration"," attribute. If `throwFail` is falsy, the message is logged. If `throwFail` is"," truthy, a JS exception is thrown.",""," If an `errorFn` is specified in the config it must return `true` to indicate"," that the exception was handled and keep it from being thrown.",""," @method error"," @param {String} msg Error message."," @param {Error|String} [e] JavaScript error object or an error string."," @param {String} [src] Source of the error (such as the name of the module in"," which the error occurred)."," @chainable"," **/"," error: function(msg, e, src) {"," //TODO Add check for window.onerror here",""," var Y = this, ret;",""," if (Y.config.errorFn) {"," ret = Y.config.errorFn.apply(Y, arguments);"," }",""," if (!ret) {"," throw (e || new Error(msg));"," } else {"," Y.message(msg, 'error', ''+src); // don't scrub this one"," }",""," return Y;"," },",""," /**"," Generates an id string that is unique among all YUI instances in this"," execution context.",""," @method guid"," @param {String} [pre] Prefix."," @return {String} Unique id."," **/"," guid: function(pre) {"," var id = this.Env._guidp + '_' + (++this.Env._uidx);"," return (pre) ? (pre + id) : id;"," },",""," /**"," Returns a unique id associated with the given object and (if *readOnly* is"," falsy) stamps the object with that id so it can be identified in the future.",""," Stamping an object involves adding a `_yuid` property to it that contains"," the object's id. One exception to this is that in Internet Explorer, DOM"," nodes have a `uniqueID` property that contains a browser-generated unique"," id, which will be used instead of a YUI-generated id when available.",""," @method stamp"," @param {Object} o Object to stamp."," @param {Boolean} readOnly If truthy and the given object has not already"," been stamped, the object will not be modified and `null` will be"," returned."," @return {String} Object's unique id, or `null` if *readOnly* was truthy and"," the given object was not already stamped."," **/"," stamp: function(o, readOnly) {"," var uid;"," if (!o) {"," return o;"," }",""," // IE generates its own unique ID for dom nodes"," // The uniqueID property of a document node returns a new ID"," if (o.uniqueID && o.nodeType && o.nodeType !== 9) {"," uid = o.uniqueID;"," } else {"," uid = (typeof o === 'string') ? o : o._yuid;"," }",""," if (!uid) {"," uid = this.guid();"," if (!readOnly) {"," try {"," o._yuid = uid;"," } catch (e) {"," uid = null;"," }"," }"," }"," return uid;"," },",""," /**"," Destroys this YUI instance.",""," @method destroy"," @since 3.3.0"," **/"," destroy: function() {"," var Y = this;"," if (Y.Event) {"," Y.Event._unload();"," }"," delete instances[Y.id];"," delete Y.Env;"," delete Y.config;"," }",""," /**"," Safe `instanceof` wrapper that works around a memory leak in IE when the"," object being tested is `window` or `document`.",""," Unless you are testing objects that may be `window` or `document`, you"," should use the native `instanceof` operator instead of this method.",""," @method instanceOf"," @param {Object} o Object to check."," @param {Object} type Class to check against."," @since 3.3.0"," **/","};",""," YUI.prototype = proto;",""," // inheritance utilities are not available yet"," for (prop in proto) {"," if (proto.hasOwnProperty(prop)) {"," YUI[prop] = proto[prop];"," }"," }",""," /**"," Applies a configuration to all YUI instances in this execution context.",""," The main use case for this method is in \"mashups\" where several third-party"," scripts need to write to a global YUI config, but cannot share a single"," centrally-managed config object. This way they can all call"," `YUI.applyConfig({})` instead of overwriting the single global config.",""," @example",""," YUI.applyConfig({"," modules: {"," davglass: {"," fullpath: './davglass.js'"," }"," }"," });",""," YUI.applyConfig({"," modules: {"," foo: {"," fullpath: './foo.js'"," }"," }"," });",""," YUI().use('davglass', function (Y) {"," // Module davglass will be available here."," });",""," @method applyConfig"," @param {Object} o Configuration object to apply."," @static"," @since 3.5.0"," **/"," YUI.applyConfig = function(o) {"," if (!o) {"," return;"," }"," //If there is a GlobalConfig, apply it first to set the defaults"," if (YUI.GlobalConfig) {"," this.prototype.applyConfig.call(this, YUI.GlobalConfig);"," }"," //Apply this config to it"," this.prototype.applyConfig.call(this, o);"," //Reset GlobalConfig to the combined config"," YUI.GlobalConfig = this.config;"," };",""," // set up the environment"," YUI._init();",""," if (hasWin) {"," // add a window load event at load time so we can capture"," // the case where it fires before dynamic loading is"," // complete."," add(window, 'load', handleLoad);"," } else {"," handleLoad();"," }",""," YUI.Env.add = add;"," YUI.Env.remove = remove;",""," /*global exports*/"," // Support the CommonJS method for exporting our single global"," if (typeof exports == 'object') {"," exports.YUI = YUI;"," }","","}());","","","/**","Config object that contains all of the configuration options for","this `YUI` instance.","","This object is supplied by the implementer when instantiating YUI. Some","properties have default values if they are not supplied by the implementer.","","This object should not be updated directly because some values are cached. Use","`applyConfig()` to update the config object on a YUI instance that has already","been configured.","","@class config","@static","**/","","/**","If `true` (the default), YUI will \"bootstrap\" the YUI Loader and module metadata","if they're needed to load additional dependencies and aren't already available.","","Setting this to `false` will prevent YUI from automatically loading the Loader","and module metadata, so you will need to manually ensure that they're available","or handle dependency resolution yourself.","","@property {Boolean} bootstrap","@default true","**/","","/**","","@property {Object} aliases","**/","","/**","A hash of module group definitions.","","For each group you can specify a list of modules and the base path and","combo spec to use when dynamically loading the modules.","","@example",""," groups: {"," yui2: {"," // specify whether or not this group has a combo service"," combine: true,",""," // The comboSeperator to use with this group's combo handler"," comboSep: ';',",""," // The maxURLLength for this server"," maxURLLength: 500,",""," // the base path for non-combo paths"," base: 'http://yui.yahooapis.com/2.8.0r4/build/',",""," // the path to the combo service"," comboBase: 'http://yui.yahooapis.com/combo?',",""," // a fragment to prepend to the path attribute when"," // when building combo urls"," root: '2.8.0r4/build/',",""," // the module definitions"," modules: {"," yui2_yde: {"," path: \"yahoo-dom-event/yahoo-dom-event.js\""," },"," yui2_anim: {"," path: \"animation/animation.js\","," requires: ['yui2_yde']"," }"," }"," }"," }","","@property {Object} groups","**/","","/**","Path to the Loader JS file, relative to the `base` path.","","This is used to dynamically bootstrap the Loader when it's needed and isn't yet","available.","","@property {String} loaderPath","@default \"loader/loader-min.js\"","**/","","/**","If `true`, YUI will attempt to load CSS dependencies and skins. Set this to","`false` to prevent YUI from loading any CSS, or set it to the string `\"force\"`","to force CSS dependencies to be loaded even if their associated JS modules are","already loaded.","","@property {Boolean|String} fetchCSS","@default true","**/","","/**","Default gallery version used to build gallery module urls.","","@property {String} gallery","@since 3.1.0","**/","","/**","Default YUI 2 version used to build YUI 2 module urls.","","This is used for intrinsic YUI 2 support via the 2in3 project. Also see the","`2in3` config for pulling different revisions of the wrapped YUI 2 modules.","","@property {String} yui2","@default \"2.9.0\"","@since 3.1.0","**/","","/**","Revision number of YUI 2in3 modules that should be used when loading YUI 2in3.","","@property {String} 2in3","@default \"4\"","@since 3.1.0","**/","","/**","Alternate console log function that should be used in environments without a","supported native console. This function is executed with the YUI instance as its","`this` object.","","@property {Function} logFn","@since 3.1.0","**/","","/**","Callback to execute when `Y.error()` is called. It receives the error message","and a JavaScript error object if one was provided.","","This function is executed with the YUI instance as its `this` object.","","Returning `true` from this function will prevent an exception from being thrown.","","@property {Function} errorFn","@param {String} errorFn.msg Error message","@param {Object} [errorFn.err] Error object (if one was provided).","@since 3.2.0","**/","","/**","A callback to execute when Loader fails to load one or more resources.","","This could be because of a script load failure. It could also be because a","module fails to register itself when the `requireRegistration` config is `true`.","","If this function is defined, the `use()` callback will only be called when the","loader succeeds. Otherwise, `use()` will always executes unless there was a","JavaScript error when attaching a module.","","@property {Function} loadErrorFn","@since 3.3.0","**/","","/**","If `true`, Loader will expect all loaded scripts to be first-class YUI modules","that register themselves with the YUI global, and will trigger a failure if a","loaded script does not register a YUI module.","","@property {Boolean} requireRegistration","@default false","@since 3.3.0","**/","","/**","Cache serviced use() requests.","","@property {Boolean} cacheUse","@default true","@since 3.3.0","@deprecated No longer used.","**/","","/**","Whether or not YUI should use native ES5 functionality when available for","features like `Y.Array.each()`, `Y.Object()`, etc.","","When `false`, YUI will always use its own fallback implementations instead of","relying on ES5 functionality, even when ES5 functionality is available.","","@property {Boolean} useNativeES5","@default true","@since 3.5.0","**/","","/**"," * Leverage native JSON stringify if the browser has a native"," * implementation. In general, this is a good idea. See the Known Issues"," * section in the JSON user guide for caveats. The default value is true"," * for browsers with native JSON support."," *"," * @property useNativeJSONStringify"," * @type Boolean"," * @default true"," * @since 3.8.0"," */",""," /**"," * Leverage native JSON parse if the browser has a native implementation."," * In general, this is a good idea. See the Known Issues section in the"," * JSON user guide for caveats. The default value is true for browsers with"," * native JSON support."," *"," * @property useNativeJSONParse"," * @type Boolean"," * @default true"," * @since 3.8.0"," */","","/**","Delay the `use` callback until a specific event has passed (`load`, `domready`, `contentready` or `available`)","@property delayUntil","@type String|Object","@since 3.6.0","@example","","You can use `load` or `domready` strings by default:",""," YUI({"," delayUntil: 'domready'"," }, function (Y) {"," // This will not execute until 'domeready' occurs."," });","","Or you can delay until a node is available (with `available` or `contentready`):",""," YUI({"," delayUntil: {"," event: 'available',"," args : '#foo'"," }"," }, function (Y) {"," // This will not execute until a node matching the selector \"#foo\" is"," // available in the DOM."," });","","@property {Object|String} delayUntil","@since 3.6.0","**/","YUI.add('yui-base', function (Y, NAME) {","","/*"," * YUI stub"," * @module yui"," * @submodule yui-base"," */","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * Provides core language utilites and extensions used throughout YUI."," *"," * @class Lang"," * @static"," */","","var L = Y.Lang || (Y.Lang = {}),","","STRING_PROTO = String.prototype,","TOSTRING = Object.prototype.toString,","","TYPES = {"," 'undefined' : 'undefined',"," 'number' : 'number',"," 'boolean' : 'boolean',"," 'string' : 'string',"," '[object Function]': 'function',"," '[object RegExp]' : 'regexp',"," '[object Array]' : 'array',"," '[object Date]' : 'date',"," '[object Error]' : 'error'","},","","SUBREGEX = /\\{\\s*([^|}]+?)\\s*(?:\\|([^}]*))?\\s*\\}/g,","TRIMREGEX = /^\\s+|\\s+$/g,","NATIVE_FN_REGEX = /\\{\\s*\\[(?:native code|function)\\]\\s*\\}/i;","","// -- Protected Methods --------------------------------------------------------","","/**","Returns `true` if the given function appears to be implemented in native code,","`false` otherwise. Will always return `false` -- even in ES5-capable browsers --","if the `useNativeES5` YUI config option is set to `false`.","","This isn't guaranteed to be 100% accurate and won't work for anything other than","functions, but it can be useful for determining whether a function like","`Array.prototype.forEach` is native or a JS shim provided by another library.","","There's a great article by @kangax discussing certain flaws with this technique:","","","While his points are valid, it's still possible to benefit from this function","as long as it's used carefully and sparingly, and in such a way that false","negatives have minimal consequences. It's used internally to avoid using","potentially broken non-native ES5 shims that have been added to the page by","other libraries.","","@method _isNative","@param {Function} fn Function to test.","@return {Boolean} `true` if _fn_ appears to be native, `false` otherwise.","@static","@protected","@since 3.5.0","**/","L._isNative = function (fn) {"," return !!(Y.config.useNativeES5 && fn && NATIVE_FN_REGEX.test(fn));","};","","// -- Public Methods -----------------------------------------------------------","","/**"," * Determines whether or not the provided item is an array."," *"," * Returns `false` for array-like collections such as the function `arguments`"," * collection or `HTMLElement` collections. Use `Y.Array.test()` if you want to"," * test for an array-like collection."," *"," * @method isArray"," * @param o The object to test."," * @return {boolean} true if o is an array."," * @static"," */","L.isArray = L._isNative(Array.isArray) ? Array.isArray : function (o) {"," return L.type(o) === 'array';","};","","/**"," * Determines whether or not the provided item is a boolean."," * @method isBoolean"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a boolean."," */","L.isBoolean = function(o) {"," return typeof o === 'boolean';","};","","/**"," * Determines whether or not the supplied item is a date instance."," * @method isDate"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a date."," */","L.isDate = function(o) {"," return L.type(o) === 'date' && o.toString() !== 'Invalid Date' && !isNaN(o);","};","","/**"," *

"," * Determines whether or not the provided item is a function."," * Note: Internet Explorer thinks certain functions are objects:"," *

"," *"," *
"," * var obj = document.createElement(\"object\");"," * Y.Lang.isFunction(obj.getAttribute) // reports false in IE"," *  "," * var input = document.createElement(\"input\"); // append to body"," * Y.Lang.isFunction(input.focus) // reports false in IE"," * 
"," *"," *

"," * You will have to implement additional tests if these functions"," * matter to you."," *

"," *"," * @method isFunction"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a function."," */","L.isFunction = function(o) {"," return L.type(o) === 'function';","};","","/**"," * Determines whether or not the provided item is null."," * @method isNull"," * @static"," * @param o The object to test."," * @return {boolean} true if o is null."," */","L.isNull = function(o) {"," return o === null;","};","","/**"," * Determines whether or not the provided item is a legal number."," * @method isNumber"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a number."," */","L.isNumber = function(o) {"," return typeof o === 'number' && isFinite(o);","};","","/**"," * Determines whether or not the provided item is of type object"," * or function. Note that arrays are also objects, so"," * Y.Lang.isObject([]) === true."," * @method isObject"," * @static"," * @param o The object to test."," * @param failfn {boolean} fail if the input is a function."," * @return {boolean} true if o is an object."," * @see isPlainObject"," */","L.isObject = function(o, failfn) {"," var t = typeof o;"," return (o && (t === 'object' ||"," (!failfn && (t === 'function' || L.isFunction(o))))) || false;","};","","/**"," * Determines whether or not the provided item is a string."," * @method isString"," * @static"," * @param o The object to test."," * @return {boolean} true if o is a string."," */","L.isString = function(o) {"," return typeof o === 'string';","};","","/**"," * Determines whether or not the provided item is undefined."," * @method isUndefined"," * @static"," * @param o The object to test."," * @return {boolean} true if o is undefined."," */","L.isUndefined = function(o) {"," return typeof o === 'undefined';","};","","/**"," * A convenience method for detecting a legitimate non-null value."," * Returns false for null/undefined/NaN, true for other values,"," * including 0/false/''"," * @method isValue"," * @static"," * @param o The item to test."," * @return {boolean} true if it is not null/undefined/NaN || false."," */","L.isValue = function(o) {"," var t = L.type(o);",""," switch (t) {"," case 'number':"," return isFinite(o);",""," case 'null': // fallthru"," case 'undefined':"," return false;",""," default:"," return !!t;"," }","};","","/**"," * Returns the current time in milliseconds."," *"," * @method now"," * @return {Number} Current time in milliseconds."," * @static"," * @since 3.3.0"," */","L.now = Date.now || function () {"," return new Date().getTime();","};","","/**"," * Lightweight version of Y.substitute. Uses the same template"," * structure as Y.substitute, but doesn't support recursion,"," * auto-object coersion, or formats."," * @method sub"," * @param {string} s String to be modified."," * @param {object} o Object containing replacement values."," * @return {string} the substitute result."," * @static"," * @since 3.2.0"," */","L.sub = function(s, o) {"," return s.replace ? s.replace(SUBREGEX, function (match, key) {"," return L.isUndefined(o[key]) ? match : o[key];"," }) : s;","};","","/**"," * Returns a string without any leading or trailing whitespace. If"," * the input is not a string, the input will be returned untouched."," * @method trim"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trim = STRING_PROTO.trim ? function(s) {"," return s && s.trim ? s.trim() : s;","} : function (s) {"," try {"," return s.replace(TRIMREGEX, '');"," } catch (e) {"," return s;"," }","};","","/**"," * Returns a string without any leading whitespace."," * @method trimLeft"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trimLeft = STRING_PROTO.trimLeft ? function (s) {"," return s.trimLeft();","} : function (s) {"," return s.replace(/^\\s+/, '');","};","","/**"," * Returns a string without any trailing whitespace."," * @method trimRight"," * @static"," * @param s {string} the string to trim."," * @return {string} the trimmed string."," */","L.trimRight = STRING_PROTO.trimRight ? function (s) {"," return s.trimRight();","} : function (s) {"," return s.replace(/\\s+$/, '');","};","","/**","Returns one of the following strings, representing the type of the item passed","in:",""," * \"array\""," * \"boolean\""," * \"date\""," * \"error\""," * \"function\""," * \"null\""," * \"number\""," * \"object\""," * \"regexp\""," * \"string\""," * \"undefined\"","","Known issues:",""," * `typeof HTMLElementCollection` returns function in Safari, but"," `Y.Lang.type()` reports \"object\", which could be a good thing --"," but it actually caused the logic in Y.Lang.isObject to fail.","","@method type","@param o the item to test.","@return {string} the detected type.","@static","**/","L.type = function(o) {"," return TYPES[typeof o] || TYPES[TOSTRING.call(o)] || (o ? 'object' : 'null');","};","/**","@module yui","@submodule yui-base","*/","","var Lang = Y.Lang,"," Native = Array.prototype,",""," hasOwn = Object.prototype.hasOwnProperty;","","/**","Provides utility methods for working with arrays. Additional array helpers can","be found in the `collection` and `array-extras` modules.","","`Y.Array(thing)` returns a native array created from _thing_. Depending on","_thing_'s type, one of the following will happen:",""," * Arrays are returned unmodified unless a non-zero _startIndex_ is"," specified."," * Array-like collections (see `Array.test()`) are converted to arrays."," * For everything else, a new array is created with _thing_ as the sole"," item.","","Note: elements that are also collections, such as `` and ``, to be array-like.","","@method test","@param {Object} obj Object to test.","@return {Number} A number indicating the results of the test:",""," * 0: Neither an array nor an array-like collection."," * 1: Real array."," * 2: Array-like collection.","","@static","**/","YArray.test = function (obj) {"," var result = 0;",""," if (Lang.isArray(obj)) {"," result = 1;"," } else if (Lang.isObject(obj)) {"," try {"," // indexed, but no tagName (element) or scrollTo/document (window. From DOM.isWindow test which we can't use here),"," // or functions without apply/call (Safari"," // HTMLElementCollection bug)."," if ('length' in obj && !obj.tagName && !(obj.scrollTo && obj.document) && !obj.apply) {"," result = 2;"," }"," } catch (ex) {}"," }",""," return result;","};","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * A simple FIFO queue. Items are added to the Queue with add(1..n items) and"," * removed using next()."," *"," * @class Queue"," * @constructor"," * @param {MIXED} item* 0..n items to seed the queue."," */","function Queue() {"," this._init();"," this.add.apply(this, arguments);","}","","Queue.prototype = {"," /**"," * Initialize the queue"," *"," * @method _init"," * @protected"," */"," _init: function() {"," /**"," * The collection of enqueued items"," *"," * @property _q"," * @type Array"," * @protected"," */"," this._q = [];"," },",""," /**"," * Get the next item in the queue. FIFO support"," *"," * @method next"," * @return {MIXED} the next item in the queue."," */"," next: function() {"," return this._q.shift();"," },",""," /**"," * Get the last in the queue. LIFO support."," *"," * @method last"," * @return {MIXED} the last item in the queue."," */"," last: function() {"," return this._q.pop();"," },",""," /**"," * Add 0..n items to the end of the queue."," *"," * @method add"," * @param {MIXED} item* 0..n items."," * @return {object} this queue."," */"," add: function() {"," this._q.push.apply(this._q, arguments);",""," return this;"," },",""," /**"," * Returns the current number of queued items."," *"," * @method size"," * @return {Number} The size."," */"," size: function() {"," return this._q.length;"," }","};","","Y.Queue = Queue;","","YUI.Env._loaderQueue = YUI.Env._loaderQueue || new Queue();","","/**","The YUI module contains the components required for building the YUI seed file.","This includes the script loading mechanism, a simple queue, and the core","utilities for the library.","","@module yui","@submodule yui-base","**/","","var CACHED_DELIMITER = '__',",""," hasOwn = Object.prototype.hasOwnProperty,"," isObject = Y.Lang.isObject;","","/**","Returns a wrapper for a function which caches the return value of that function,","keyed off of the combined string representation of the argument values provided","when the wrapper is called.","","Calling this function again with the same arguments will return the cached value","rather than executing the wrapped function.","","Note that since the cache is keyed off of the string representation of arguments","passed to the wrapper function, arguments that aren't strings and don't provide","a meaningful `toString()` method may result in unexpected caching behavior. For","example, the objects `{}` and `{foo: 'bar'}` would both be converted to the","string `[object Object]` when used as a cache key.","","@method cached","@param {Function} source The function to memoize.","@param {Object} [cache={}] Object in which to store cached values. You may seed"," this object with pre-existing cached values if desired.","@param {any} [refetch] If supplied, this value is compared with the cached value"," using a `==` comparison. If the values are equal, the wrapped function is"," executed again even though a cached value exists.","@return {Function} Wrapped function.","@for YUI","**/","Y.cached = function (source, cache, refetch) {"," cache || (cache = {});",""," return function (arg) {"," var key = arguments.length > 1 ?"," Array.prototype.join.call(arguments, CACHED_DELIMITER) :"," String(arg);",""," if (!(key in cache) || (refetch && cache[key] == refetch)) {"," cache[key] = source.apply(source, arguments);"," }",""," return cache[key];"," };","};","","/**","Returns the `location` object from the window/frame in which this YUI instance","operates, or `undefined` when executing in a non-browser environment","(e.g. Node.js).","","It is _not_ recommended to hold references to the `window.location` object","outside of the scope of a function in which its properties are being accessed or","its methods are being called. This is because of a nasty bug/issue that exists","in both Safari and MobileSafari browsers:","[WebKit Bug 34679](https://bugs.webkit.org/show_bug.cgi?id=34679).","","@method getLocation","@return {location} The `location` object from the window/frame in which this YUI"," instance operates.","@since 3.5.0","**/","Y.getLocation = function () {"," // It is safer to look this up every time because yui-base is attached to a"," // YUI instance before a user's config is applied; i.e. `Y.config.win` does"," // not point the correct window object when this file is loaded."," var win = Y.config.win;",""," // It is not safe to hold a reference to the `location` object outside the"," // scope in which it is being used. The WebKit engine used in Safari and"," // MobileSafari will \"disconnect\" the `location` object from the `window`"," // when a page is restored from back/forward history cache."," return win && win.location;","};","","/**","Returns a new object containing all of the properties of all the supplied","objects. The properties from later objects will overwrite those in earlier","objects.","","Passing in a single object will create a shallow copy of it. For a deep copy,","use `clone()`.","","@method merge","@param {Object} objects* One or more objects to merge.","@return {Object} A new merged object.","**/","Y.merge = function () {"," var i = 0,"," len = arguments.length,"," result = {},"," key,"," obj;",""," for (; i < len; ++i) {"," obj = arguments[i];",""," for (key in obj) {"," if (hasOwn.call(obj, key)) {"," result[key] = obj[key];"," }"," }"," }",""," return result;","};","","/**","Mixes _supplier_'s properties into _receiver_.","","Properties on _receiver_ or _receiver_'s prototype will not be overwritten or","shadowed unless the _overwrite_ parameter is `true`, and will not be merged","unless the _merge_ parameter is `true`.","","In the default mode (0), only properties the supplier owns are copied (prototype","properties are not copied). The following copying modes are available:",""," * `0`: _Default_. Object to object."," * `1`: Prototype to prototype."," * `2`: Prototype to prototype and object to object."," * `3`: Prototype to object."," * `4`: Object to prototype.","","@method mix","@param {Function|Object} receiver The object or function to receive the mixed"," properties.","@param {Function|Object} supplier The object or function supplying the"," properties to be mixed.","@param {Boolean} [overwrite=false] If `true`, properties that already exist"," on the receiver will be overwritten with properties from the supplier.","@param {String[]} [whitelist] An array of property names to copy. If"," specified, only the whitelisted properties will be copied, and all others"," will be ignored.","@param {Number} [mode=0] Mix mode to use. See above for available modes.","@param {Boolean} [merge=false] If `true`, objects and arrays that already"," exist on the receiver will have the corresponding object/array from the"," supplier merged into them, rather than being skipped or overwritten. When"," both _overwrite_ and _merge_ are `true`, _merge_ takes precedence.","@return {Function|Object|YUI} The receiver, or the YUI instance if the"," specified receiver is falsy.","**/","Y.mix = function(receiver, supplier, overwrite, whitelist, mode, merge) {"," var alwaysOverwrite, exists, from, i, key, len, to;",""," // If no supplier is given, we return the receiver. If no receiver is given,"," // we return Y. Returning Y doesn't make much sense to me, but it's"," // grandfathered in for backcompat reasons."," if (!receiver || !supplier) {"," return receiver || Y;"," }",""," if (mode) {"," // In mode 2 (prototype to prototype and object to object), we recurse"," // once to do the proto to proto mix. The object to object mix will be"," // handled later on."," if (mode === 2) {"," Y.mix(receiver.prototype, supplier.prototype, overwrite,"," whitelist, 0, merge);"," }",""," // Depending on which mode is specified, we may be copying from or to"," // the prototypes of the supplier and receiver."," from = mode === 1 || mode === 3 ? supplier.prototype : supplier;"," to = mode === 1 || mode === 4 ? receiver.prototype : receiver;",""," // If either the supplier or receiver doesn't actually have a"," // prototype property, then we could end up with an undefined `from`"," // or `to`. If that happens, we abort and return the receiver."," if (!from || !to) {"," return receiver;"," }"," } else {"," from = supplier;"," to = receiver;"," }",""," // If `overwrite` is truthy and `merge` is falsy, then we can skip a"," // property existence check on each iteration and save some time."," alwaysOverwrite = overwrite && !merge;",""," if (whitelist) {"," for (i = 0, len = whitelist.length; i < len; ++i) {"," key = whitelist[i];",""," // We call `Object.prototype.hasOwnProperty` instead of calling"," // `hasOwnProperty` on the object itself, since the object's"," // `hasOwnProperty` method may have been overridden or removed."," // Also, some native objects don't implement a `hasOwnProperty`"," // method."," if (!hasOwn.call(from, key)) {"," continue;"," }",""," // The `key in to` check here is (sadly) intentional for backwards"," // compatibility reasons. It prevents undesired shadowing of"," // prototype members on `to`."," exists = alwaysOverwrite ? false : key in to;",""," if (merge && exists && isObject(to[key], true)"," && isObject(from[key], true)) {"," // If we're in merge mode, and the key is present on both"," // objects, and the value on both objects is either an object or"," // an array (but not a function), then we recurse to merge the"," // `from` value into the `to` value instead of overwriting it."," //"," // Note: It's intentional that the whitelist isn't passed to the"," // recursive call here. This is legacy behavior that lots of"," // code still depends on."," Y.mix(to[key], from[key], overwrite, null, 0, merge);"," } else if (overwrite || !exists) {"," // We're not in merge mode, so we'll only copy the `from` value"," // to the `to` value if we're in overwrite mode or if the"," // current key doesn't exist on the `to` object."," to[key] = from[key];"," }"," }"," } else {"," for (key in from) {"," // The code duplication here is for runtime performance reasons."," // Combining whitelist and non-whitelist operations into a single"," // loop or breaking the shared logic out into a function both result"," // in worse performance, and Y.mix is critical enough that the byte"," // tradeoff is worth it."," if (!hasOwn.call(from, key)) {"," continue;"," }",""," // The `key in to` check here is (sadly) intentional for backwards"," // compatibility reasons. It prevents undesired shadowing of"," // prototype members on `to`."," exists = alwaysOverwrite ? false : key in to;",""," if (merge && exists && isObject(to[key], true)"," && isObject(from[key], true)) {"," Y.mix(to[key], from[key], overwrite, null, 0, merge);"," } else if (overwrite || !exists) {"," to[key] = from[key];"," }"," }",""," // If this is an IE browser with the JScript enumeration bug, force"," // enumeration of the buggy properties by making a recursive call with"," // the buggy properties as the whitelist."," if (Y.Object._hasEnumBug) {"," Y.mix(to, from, overwrite, Y.Object._forceEnum, mode, merge);"," }"," }",""," return receiver;","};","/**"," * The YUI module contains the components required for building the YUI"," * seed file. This includes the script loading mechanism, a simple queue,"," * and the core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * Adds utilities to the YUI instance for working with objects."," *"," * @class Object"," */","","var Lang = Y.Lang,"," hasOwn = Object.prototype.hasOwnProperty,",""," UNDEFINED, // <-- Note the comma. We're still declaring vars.","","/**"," * Returns a new object that uses _obj_ as its prototype. This method wraps the"," * native ES5 `Object.create()` method if available, but doesn't currently"," * pass through `Object.create()`'s second argument (properties) in order to"," * ensure compatibility with older browsers."," *"," * @method ()"," * @param {Object} obj Prototype object."," * @return {Object} New object using _obj_ as its prototype."," * @static"," */","O = Y.Object = Lang._isNative(Object.create) ? function (obj) {"," // We currently wrap the native Object.create instead of simply aliasing it"," // to ensure consistency with our fallback shim, which currently doesn't"," // support Object.create()'s second argument (properties). Once we have a"," // safe fallback for the properties arg, we can stop wrapping"," // Object.create()."," return Object.create(obj);","} : (function () {"," // Reusable constructor function for the Object.create() shim."," function F() {}",""," // The actual shim."," return function (obj) {"," F.prototype = obj;"," return new F();"," };","}()),","","/**"," * Property names that IE doesn't enumerate in for..in loops, even when they"," * should be enumerable. When `_hasEnumBug` is `true`, it's necessary to"," * manually enumerate these properties."," *"," * @property _forceEnum"," * @type String[]"," * @protected"," * @static"," */","forceEnum = O._forceEnum = ["," 'hasOwnProperty',"," 'isPrototypeOf',"," 'propertyIsEnumerable',"," 'toString',"," 'toLocaleString',"," 'valueOf'","],","","/**"," * `true` if this browser has the JScript enumeration bug that prevents"," * enumeration of the properties named in the `_forceEnum` array, `false`"," * otherwise."," *"," * See:"," * - "," * - "," *"," * @property _hasEnumBug"," * @type Boolean"," * @protected"," * @static"," */","hasEnumBug = O._hasEnumBug = !{valueOf: 0}.propertyIsEnumerable('valueOf'),","","/**"," * `true` if this browser incorrectly considers the `prototype` property of"," * functions to be enumerable. Currently known to affect Opera 11.50."," *"," * @property _hasProtoEnumBug"," * @type Boolean"," * @protected"," * @static"," */","hasProtoEnumBug = O._hasProtoEnumBug = (function () {}).propertyIsEnumerable('prototype'),","","/**"," * Returns `true` if _key_ exists on _obj_, `false` if _key_ doesn't exist or"," * exists only on _obj_'s prototype. This is essentially a safer version of"," * `obj.hasOwnProperty()`."," *"," * @method owns"," * @param {Object} obj Object to test."," * @param {String} key Property name to look for."," * @return {Boolean} `true` if _key_ exists on _obj_, `false` otherwise."," * @static"," */","owns = O.owns = function (obj, key) {"," return !!obj && hasOwn.call(obj, key);","}; // <-- End of var declarations.","","/**"," * Alias for `owns()`."," *"," * @method hasKey"," * @param {Object} obj Object to test."," * @param {String} key Property name to look for."," * @return {Boolean} `true` if _key_ exists on _obj_, `false` otherwise."," * @static"," */","O.hasKey = owns;","","/**"," * Returns an array containing the object's enumerable keys. Does not include"," * prototype keys or non-enumerable keys."," *"," * Note that keys are returned in enumeration order (that is, in the same order"," * that they would be enumerated by a `for-in` loop), which may not be the same"," * as the order in which they were defined."," *"," * This method is an alias for the native ES5 `Object.keys()` method if"," * available."," *"," * @example"," *"," * Y.Object.keys({a: 'foo', b: 'bar', c: 'baz'});"," * // => ['a', 'b', 'c']"," *"," * @method keys"," * @param {Object} obj An object."," * @return {String[]} Array of keys."," * @static"," */","O.keys = Lang._isNative(Object.keys) ? Object.keys : function (obj) {"," if (!Lang.isObject(obj)) {"," throw new TypeError('Object.keys called on a non-object');"," }",""," var keys = [],"," i, key, len;",""," if (hasProtoEnumBug && typeof obj === 'function') {"," for (key in obj) {"," if (owns(obj, key) && key !== 'prototype') {"," keys.push(key);"," }"," }"," } else {"," for (key in obj) {"," if (owns(obj, key)) {"," keys.push(key);"," }"," }"," }",""," if (hasEnumBug) {"," for (i = 0, len = forceEnum.length; i < len; ++i) {"," key = forceEnum[i];",""," if (owns(obj, key)) {"," keys.push(key);"," }"," }"," }",""," return keys;","};","","/**"," * Returns an array containing the values of the object's enumerable keys."," *"," * Note that values are returned in enumeration order (that is, in the same"," * order that they would be enumerated by a `for-in` loop), which may not be the"," * same as the order in which they were defined."," *"," * @example"," *"," * Y.Object.values({a: 'foo', b: 'bar', c: 'baz'});"," * // => ['foo', 'bar', 'baz']"," *"," * @method values"," * @param {Object} obj An object."," * @return {Array} Array of values."," * @static"," */","O.values = function (obj) {"," var keys = O.keys(obj),"," i = 0,"," len = keys.length,"," values = [];",""," for (; i < len; ++i) {"," values.push(obj[keys[i]]);"," }",""," return values;","};","","/**"," * Returns the number of enumerable keys owned by an object."," *"," * @method size"," * @param {Object} obj An object."," * @return {Number} The object's size."," * @static"," */","O.size = function (obj) {"," try {"," return O.keys(obj).length;"," } catch (ex) {"," return 0; // Legacy behavior for non-objects."," }","};","","/**"," * Returns `true` if the object owns an enumerable property with the specified"," * value."," *"," * @method hasValue"," * @param {Object} obj An object."," * @param {any} value The value to search for."," * @return {Boolean} `true` if _obj_ contains _value_, `false` otherwise."," * @static"," */","O.hasValue = function (obj, value) {"," return Y.Array.indexOf(O.values(obj), value) > -1;","};","","/**"," * Executes a function on each enumerable property in _obj_. The function"," * receives the value, the key, and the object itself as parameters (in that"," * order)."," *"," * By default, only properties owned by _obj_ are enumerated. To include"," * prototype properties, set the _proto_ parameter to `true`."," *"," * @method each"," * @param {Object} obj Object to enumerate."," * @param {Function} fn Function to execute on each enumerable property."," * @param {mixed} fn.value Value of the current property."," * @param {String} fn.key Key of the current property."," * @param {Object} fn.obj Object being enumerated."," * @param {Object} [thisObj] `this` object to use when calling _fn_."," * @param {Boolean} [proto=false] Include prototype properties."," * @return {YUI} the YUI instance."," * @chainable"," * @static"," */","O.each = function (obj, fn, thisObj, proto) {"," var key;",""," for (key in obj) {"," if (proto || owns(obj, key)) {"," fn.call(thisObj || Y, obj[key], key, obj);"," }"," }",""," return Y;","};","","/**"," * Executes a function on each enumerable property in _obj_, but halts if the"," * function returns a truthy value. The function receives the value, the key,"," * and the object itself as paramters (in that order)."," *"," * By default, only properties owned by _obj_ are enumerated. To include"," * prototype properties, set the _proto_ parameter to `true`."," *"," * @method some"," * @param {Object} obj Object to enumerate."," * @param {Function} fn Function to execute on each enumerable property."," * @param {mixed} fn.value Value of the current property."," * @param {String} fn.key Key of the current property."," * @param {Object} fn.obj Object being enumerated."," * @param {Object} [thisObj] `this` object to use when calling _fn_."," * @param {Boolean} [proto=false] Include prototype properties."," * @return {Boolean} `true` if any execution of _fn_ returns a truthy value,"," * `false` otherwise."," * @static"," */","O.some = function (obj, fn, thisObj, proto) {"," var key;",""," for (key in obj) {"," if (proto || owns(obj, key)) {"," if (fn.call(thisObj || Y, obj[key], key, obj)) {"," return true;"," }"," }"," }",""," return false;","};","","/**"," * Retrieves the sub value at the provided path,"," * from the value object provided."," *"," * @method getValue"," * @static"," * @param o The object from which to extract the property value."," * @param path {Array} A path array, specifying the object traversal path"," * from which to obtain the sub value."," * @return {Any} The value stored in the path, undefined if not found,"," * undefined if the source is not an object. Returns the source object"," * if an empty path is provided."," */","O.getValue = function(o, path) {"," if (!Lang.isObject(o)) {"," return UNDEFINED;"," }",""," var i,"," p = Y.Array(path),"," l = p.length;",""," for (i = 0; o !== UNDEFINED && i < l; i++) {"," o = o[p[i]];"," }",""," return o;","};","","/**"," * Sets the sub-attribute value at the provided path on the"," * value object. Returns the modified value object, or"," * undefined if the path is invalid."," *"," * @method setValue"," * @static"," * @param o The object on which to set the sub value."," * @param path {Array} A path array, specifying the object traversal path"," * at which to set the sub value."," * @param val {Any} The new value for the sub-attribute."," * @return {Object} The modified object, with the new sub value set, or"," * undefined, if the path was invalid."," */","O.setValue = function(o, path, val) {"," var i,"," p = Y.Array(path),"," leafIdx = p.length - 1,"," ref = o;",""," if (leafIdx >= 0) {"," for (i = 0; ref !== UNDEFINED && i < leafIdx; i++) {"," ref = ref[p[i]];"," }",""," if (ref !== UNDEFINED) {"," ref[p[i]] = val;"," } else {"," return UNDEFINED;"," }"," }",""," return o;","};","","/**"," * Returns `true` if the object has no enumerable properties of its own."," *"," * @method isEmpty"," * @param {Object} obj An object."," * @return {Boolean} `true` if the object is empty."," * @static"," * @since 3.2.0"," */","O.isEmpty = function (obj) {"," return !O.keys(Object(obj)).length;","};","/**"," * The YUI module contains the components required for building the YUI seed"," * file. This includes the script loading mechanism, a simple queue, and the"," * core utilities for the library."," * @module yui"," * @submodule yui-base"," */","","/**"," * YUI user agent detection."," * Do not fork for a browser if it can be avoided. Use feature detection when"," * you can. Use the user agent as a last resort. For all fields listed"," * as @type float, UA stores a version number for the browser engine,"," * 0 otherwise. This value may or may not map to the version number of"," * the browser using the engine. The value is presented as a float so"," * that it can easily be used for boolean evaluation as well as for"," * looking for a particular range of versions. Because of this,"," * some of the granularity of the version info may be lost. The fields that"," * are @type string default to null. The API docs list the values that"," * these fields can have."," * @class UA"," * @static"," */","","/**","* Static method on `YUI.Env` for parsing a UA string. Called at instantiation","* to populate `Y.UA`.","*","* @static","* @method parseUA","* @param {String} [subUA=navigator.userAgent] UA string to parse","* @return {Object} The Y.UA object","*/","YUI.Env.parseUA = function(subUA) {",""," var numberify = function(s) {"," var c = 0;"," return parseFloat(s.replace(/\\./g, function() {"," return (c++ === 1) ? '' : '.';"," }));"," },",""," win = Y.config.win,",""," nav = win && win.navigator,",""," o = {",""," /**"," * Internet Explorer version number or 0. Example: 6"," * @property ie"," * @type float"," * @static"," */"," ie: 0,",""," /**"," * Opera version number or 0. Example: 9.2"," * @property opera"," * @type float"," * @static"," */"," opera: 0,",""," /**"," * Gecko engine revision number. Will evaluate to 1 if Gecko"," * is detected but the revision could not be found. Other browsers"," * will be 0. Example: 1.8"," *
","         * Firefox 1.0.0.4: 1.7.8   <-- Reports 1.7","         * Firefox 1.5.0.9: 1.8.0.9 <-- 1.8","         * Firefox 2.0.0.3: 1.8.1.3 <-- 1.81","         * Firefox 3.0   <-- 1.9","         * Firefox 3.5   <-- 1.91","         * 
"," * @property gecko"," * @type float"," * @static"," */"," gecko: 0,",""," /**"," * AppleWebKit version. KHTML browsers that are not WebKit browsers"," * will evaluate to 1, other browsers 0. Example: 418.9"," *
","         * Safari 1.3.2 (312.6): 312.8.1 <-- Reports 312.8 -- currently the","         *                                   latest available for Mac OSX 10.3.","         * Safari 2.0.2:         416     <-- hasOwnProperty introduced","         * Safari 2.0.4:         418     <-- preventDefault fixed","         * Safari 2.0.4 (419.3): 418.9.1 <-- One version of Safari may run","         *                                   different versions of webkit","         * Safari 2.0.4 (419.3): 419     <-- Tiger installations that have been","         *                                   updated, but not updated","         *                                   to the latest patch.","         * Webkit 212 nightly:   522+    <-- Safari 3.0 precursor (with native","         * SVG and many major issues fixed).","         * Safari 3.0.4 (523.12) 523.12  <-- First Tiger release - automatic","         * update from 2.x via the 10.4.11 OS patch.","         * Webkit nightly 1/2008:525+    <-- Supports DOMContentLoaded event.","         *                                   yahoo.com user agent hack removed.","         * 
"," * http://en.wikipedia.org/wiki/Safari_version_history"," * @property webkit"," * @type float"," * @static"," */"," webkit: 0,",""," /**"," * Safari will be detected as webkit, but this property will also"," * be populated with the Safari version number"," * @property safari"," * @type float"," * @static"," */"," safari: 0,",""," /**"," * Chrome will be detected as webkit, but this property will also"," * be populated with the Chrome version number"," * @property chrome"," * @type float"," * @static"," */"," chrome: 0,",""," /**"," * The mobile property will be set to a string containing any relevant"," * user agent information when a modern mobile browser is detected."," * Currently limited to Safari on the iPhone/iPod Touch, Nokia N-series"," * devices with the WebKit-based browser, and Opera Mini."," * @property mobile"," * @type string"," * @default null"," * @static"," */"," mobile: null,",""," /**"," * Adobe AIR version number or 0. Only populated if webkit is detected."," * Example: 1.0"," * @property air"," * @type float"," */"," air: 0,"," /**"," * PhantomJS version number or 0. Only populated if webkit is detected."," * Example: 1.0"," * @property phantomjs"," * @type float"," */"," phantomjs: 0,"," /**"," * Detects Apple iPad's OS version"," * @property ipad"," * @type float"," * @static"," */"," ipad: 0,"," /**"," * Detects Apple iPhone's OS version"," * @property iphone"," * @type float"," * @static"," */"," iphone: 0,"," /**"," * Detects Apples iPod's OS version"," * @property ipod"," * @type float"," * @static"," */"," ipod: 0,"," /**"," * General truthy check for iPad, iPhone or iPod"," * @property ios"," * @type Boolean"," * @default null"," * @static"," */"," ios: null,"," /**"," * Detects Googles Android OS version"," * @property android"," * @type float"," * @static"," */"," android: 0,"," /**"," * Detects Kindle Silk"," * @property silk"," * @type float"," * @static"," */"," silk: 0,"," /**"," * Detects Kindle Silk Acceleration"," * @property accel"," * @type Boolean"," * @static"," */"," accel: false,"," /**"," * Detects Palms WebOS version"," * @property webos"," * @type float"," * @static"," */"," webos: 0,",""," /**"," * Google Caja version number or 0."," * @property caja"," * @type float"," */"," caja: nav && nav.cajaVersion,",""," /**"," * Set to true if the page appears to be in SSL"," * @property secure"," * @type boolean"," * @static"," */"," secure: false,",""," /**"," * The operating system. Currently only detecting windows or macintosh"," * @property os"," * @type string"," * @default null"," * @static"," */"," os: null,",""," /**"," * The Nodejs Version"," * @property nodejs"," * @type float"," * @default 0"," * @static"," */"," nodejs: 0,"," /**"," * Window8/IE10 Application host environment"," * @property winjs"," * @type Boolean"," * @static"," */"," winjs: !!((typeof Windows !== \"undefined\") && Windows.System),"," /**"," * Are touch/msPointer events available on this device"," * @property touchEnabled"," * @type Boolean"," * @static"," */"," touchEnabled: false"," },",""," ua = subUA || nav && nav.userAgent,",""," loc = win && win.location,",""," href = loc && loc.href,",""," m;",""," /**"," * The User Agent string that was parsed"," * @property userAgent"," * @type String"," * @static"," */"," o.userAgent = ua;","",""," o.secure = href && (href.toLowerCase().indexOf('https') === 0);",""," if (ua) {",""," if ((/windows|win32/i).test(ua)) {"," o.os = 'windows';"," } else if ((/macintosh|mac_powerpc/i).test(ua)) {"," o.os = 'macintosh';"," } else if ((/android/i).test(ua)) {"," o.os = 'android';"," } else if ((/symbos/i).test(ua)) {"," o.os = 'symbos';"," } else if ((/linux/i).test(ua)) {"," o.os = 'linux';"," } else if ((/rhino/i).test(ua)) {"," o.os = 'rhino';"," }",""," // Modern KHTML browsers should qualify as Safari X-Grade"," if ((/KHTML/).test(ua)) {"," o.webkit = 1;"," }"," if ((/IEMobile|XBLWP7/).test(ua)) {"," o.mobile = 'windows';"," }"," if ((/Fennec/).test(ua)) {"," o.mobile = 'gecko';"," }"," // Modern WebKit browsers are at least X-Grade"," m = ua.match(/AppleWebKit\\/([^\\s]*)/);"," if (m && m[1]) {"," o.webkit = numberify(m[1]);"," o.safari = o.webkit;",""," if (/PhantomJS/.test(ua)) {"," m = ua.match(/PhantomJS\\/([^\\s]*)/);"," if (m && m[1]) {"," o.phantomjs = numberify(m[1]);"," }"," }",""," // Mobile browser check"," if (/ Mobile\\//.test(ua) || (/iPad|iPod|iPhone/).test(ua)) {"," o.mobile = 'Apple'; // iPhone or iPod Touch",""," m = ua.match(/OS ([^\\s]*)/);"," if (m && m[1]) {"," m = numberify(m[1].replace('_', '.'));"," }"," o.ios = m;"," o.os = 'ios';"," o.ipad = o.ipod = o.iphone = 0;",""," m = ua.match(/iPad|iPod|iPhone/);"," if (m && m[0]) {"," o[m[0].toLowerCase()] = o.ios;"," }"," } else {"," m = ua.match(/NokiaN[^\\/]*|webOS\\/\\d\\.\\d/);"," if (m) {"," // Nokia N-series, webOS, ex: NokiaN95"," o.mobile = m[0];"," }"," if (/webOS/.test(ua)) {"," o.mobile = 'WebOS';"," m = ua.match(/webOS\\/([^\\s]*);/);"," if (m && m[1]) {"," o.webos = numberify(m[1]);"," }"," }"," if (/ Android/.test(ua)) {"," if (/Mobile/.test(ua)) {"," o.mobile = 'Android';"," }"," m = ua.match(/Android ([^\\s]*);/);"," if (m && m[1]) {"," o.android = numberify(m[1]);"," }",""," }"," if (/Silk/.test(ua)) {"," m = ua.match(/Silk\\/([^\\s]*)\\)/);"," if (m && m[1]) {"," o.silk = numberify(m[1]);"," }"," if (!o.android) {"," o.android = 2.34; //Hack for desktop mode in Kindle"," o.os = 'Android';"," }"," if (/Accelerated=true/.test(ua)) {"," o.accel = true;"," }"," }"," }",""," m = ua.match(/(Chrome|CrMo|CriOS)\\/([^\\s]*)/);"," if (m && m[1] && m[2]) {"," o.chrome = numberify(m[2]); // Chrome"," o.safari = 0; //Reset safari back to 0"," if (m[1] === 'CrMo') {"," o.mobile = 'chrome';"," }"," } else {"," m = ua.match(/AdobeAIR\\/([^\\s]*)/);"," if (m) {"," o.air = m[0]; // Adobe AIR 1.0 or better"," }"," }"," }",""," if (!o.webkit) { // not webkit","// @todo check Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1316; fi; U; ssr)"," if (/Opera/.test(ua)) {"," m = ua.match(/Opera[\\s\\/]([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]);"," }"," m = ua.match(/Version\\/([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]); // opera 10+"," }",""," if (/Opera Mobi/.test(ua)) {"," o.mobile = 'opera';"," m = ua.replace('Opera Mobi', '').match(/Opera ([^\\s]*)/);"," if (m && m[1]) {"," o.opera = numberify(m[1]);"," }"," }"," m = ua.match(/Opera Mini[^;]*/);",""," if (m) {"," o.mobile = m[0]; // ex: Opera Mini/2.0.4509/1316"," }"," } else { // not opera or webkit"," m = ua.match(/MSIE\\s([^;]*)/);"," if (m && m[1]) {"," o.ie = numberify(m[1]);"," } else { // not opera, webkit, or ie"," m = ua.match(/Gecko\\/([^\\s]*)/);"," if (m) {"," o.gecko = 1; // Gecko detected, look for revision"," m = ua.match(/rv:([^\\s\\)]*)/);"," if (m && m[1]) {"," o.gecko = numberify(m[1]);"," }"," }"," }"," }"," }"," }",""," //Check for known properties to tell if touch events are enabled on this device or if"," //the number of MSPointer touchpoints on this device is greater than 0."," if (win && nav && !(o.chrome && o.chrome < 6)) {"," o.touchEnabled = ((\"ontouchstart\" in win) || ((\"msMaxTouchPoints\" in nav) && (nav.msMaxTouchPoints > 0)));"," }",""," //It was a parsed UA, do not assign the global value."," if (!subUA) {",""," if (typeof process === 'object') {",""," if (process.versions && process.versions.node) {"," //NodeJS"," o.os = process.platform;"," o.nodejs = numberify(process.versions.node);"," }"," }",""," YUI.Env.UA = o;",""," }",""," return o;","};","","","Y.UA = YUI.Env.UA || YUI.Env.parseUA();","","/**","Performs a simple comparison between two version numbers, accounting for","standard versioning logic such as the fact that \"535.8\" is a lower version than","\"535.24\", even though a simple numerical comparison would indicate that it's","greater. Also accounts for cases such as \"1.1\" vs. \"1.1.0\", which are","considered equivalent.","","Returns -1 if version _a_ is lower than version _b_, 0 if they're equivalent,","1 if _a_ is higher than _b_.","","Versions may be numbers or strings containing numbers and dots. For example,","both `535` and `\"535.8.10\"` are acceptable. A version string containing","non-numeric characters, like `\"535.8.beta\"`, may produce unexpected results.","","@method compareVersions","@param {Number|String} a First version number to compare.","@param {Number|String} b Second version number to compare.","@return -1 if _a_ is lower than _b_, 0 if they're equivalent, 1 if _a_ is"," higher than _b_.","**/","Y.UA.compareVersions = function (a, b) {"," var aPart, aParts, bPart, bParts, i, len;",""," if (a === b) {"," return 0;"," }",""," aParts = (a + '').split('.');"," bParts = (b + '').split('.');",""," for (i = 0, len = Math.max(aParts.length, bParts.length); i < len; ++i) {"," aPart = parseInt(aParts[i], 10);"," bPart = parseInt(bParts[i], 10);",""," isNaN(aPart) && (aPart = 0);"," isNaN(bPart) && (bPart = 0);",""," if (aPart < bPart) {"," return -1;"," }",""," if (aPart > bPart) {"," return 1;"," }"," }",""," return 0;","};","YUI.Env.aliases = {"," \"anim\": [\"anim-base\",\"anim-color\",\"anim-curve\",\"anim-easing\",\"anim-node-plugin\",\"anim-scroll\",\"anim-xy\"],"," \"anim-shape-transform\": [\"anim-shape\"],"," \"app\": [\"app-base\",\"app-content\",\"app-transitions\",\"lazy-model-list\",\"model\",\"model-list\",\"model-sync-rest\",\"router\",\"view\",\"view-node-map\"],"," \"attribute\": [\"attribute-base\",\"attribute-complex\"],"," \"attribute-events\": [\"attribute-observable\"],"," \"autocomplete\": [\"autocomplete-base\",\"autocomplete-sources\",\"autocomplete-list\",\"autocomplete-plugin\"],"," \"base\": [\"base-base\",\"base-pluginhost\",\"base-build\"],"," \"cache\": [\"cache-base\",\"cache-offline\",\"cache-plugin\"],"," \"collection\": [\"array-extras\",\"arraylist\",\"arraylist-add\",\"arraylist-filter\",\"array-invoke\"],"," \"color\": [\"color-base\",\"color-hsl\",\"color-harmony\"],"," \"controller\": [\"router\"],"," \"dataschema\": [\"dataschema-base\",\"dataschema-json\",\"dataschema-xml\",\"dataschema-array\",\"dataschema-text\"],"," \"datasource\": [\"datasource-local\",\"datasource-io\",\"datasource-get\",\"datasource-function\",\"datasource-cache\",\"datasource-jsonschema\",\"datasource-xmlschema\",\"datasource-arrayschema\",\"datasource-textschema\",\"datasource-polling\"],"," \"datatable\": [\"datatable-core\",\"datatable-table\",\"datatable-head\",\"datatable-body\",\"datatable-base\",\"datatable-column-widths\",\"datatable-message\",\"datatable-mutable\",\"datatable-sort\",\"datatable-datasource\"],"," \"datatable-deprecated\": [\"datatable-base-deprecated\",\"datatable-datasource-deprecated\",\"datatable-sort-deprecated\",\"datatable-scroll-deprecated\"],"," \"datatype\": [\"datatype-date\",\"datatype-number\",\"datatype-xml\"],"," \"datatype-date\": [\"datatype-date-parse\",\"datatype-date-format\",\"datatype-date-math\"],"," \"datatype-number\": [\"datatype-number-parse\",\"datatype-number-format\"],"," \"datatype-xml\": [\"datatype-xml-parse\",\"datatype-xml-format\"],"," \"dd\": [\"dd-ddm-base\",\"dd-ddm\",\"dd-ddm-drop\",\"dd-drag\",\"dd-proxy\",\"dd-constrain\",\"dd-drop\",\"dd-scroll\",\"dd-delegate\"],"," \"dom\": [\"dom-base\",\"dom-screen\",\"dom-style\",\"selector-native\",\"selector\"],"," \"editor\": [\"frame\",\"editor-selection\",\"exec-command\",\"editor-base\",\"editor-para\",\"editor-br\",\"editor-bidi\",\"editor-tab\",\"createlink-base\"],"," \"event\": [\"event-base\",\"event-delegate\",\"event-synthetic\",\"event-mousewheel\",\"event-mouseenter\",\"event-key\",\"event-focus\",\"event-resize\",\"event-hover\",\"event-outside\",\"event-touch\",\"event-move\",\"event-flick\",\"event-valuechange\",\"event-tap\"],"," \"event-custom\": [\"event-custom-base\",\"event-custom-complex\"],"," \"event-gestures\": [\"event-flick\",\"event-move\"],"," \"handlebars\": [\"handlebars-compiler\"],"," \"highlight\": [\"highlight-base\",\"highlight-accentfold\"],"," \"history\": [\"history-base\",\"history-hash\",\"history-hash-ie\",\"history-html5\"],"," \"io\": [\"io-base\",\"io-xdr\",\"io-form\",\"io-upload-iframe\",\"io-queue\"],"," \"json\": [\"json-parse\",\"json-stringify\"],"," \"loader\": [\"loader-base\",\"loader-rollup\",\"loader-yui3\"],"," \"node\": [\"node-base\",\"node-event-delegate\",\"node-pluginhost\",\"node-screen\",\"node-style\"],"," \"pluginhost\": [\"pluginhost-base\",\"pluginhost-config\"],"," \"querystring\": [\"querystring-parse\",\"querystring-stringify\"],"," \"recordset\": [\"recordset-base\",\"recordset-sort\",\"recordset-filter\",\"recordset-indexer\"],"," \"resize\": [\"resize-base\",\"resize-proxy\",\"resize-constrain\"],"," \"slider\": [\"slider-base\",\"slider-value-range\",\"clickable-rail\",\"range-slider\"],"," \"template\": [\"template-base\",\"template-micro\"],"," \"text\": [\"text-accentfold\",\"text-wordbreak\"],"," \"widget\": [\"widget-base\",\"widget-htmlparser\",\"widget-skin\",\"widget-uievents\"]","};","","","}, '@VERSION@', {"," \"use\": ["," \"yui-base\","," \"get\","," \"features\","," \"intl-base\","," \"yui-log\","," \"yui-log-nodejs\","," \"yui-later\","," \"loader-base\","," \"loader-rollup\","," \"loader-yui3\""," ]","});"]; /** The YUI module contains the components required for building the YUI seed file. This includes the script loading mechanism, a simple queue, and the core @@ -37,8 +37,8 @@ utilities for the library. @submodule yui-base **/ -_yuitest_coverage["build/yui-nodejs/yui-nodejs.js"].lines = {"11":0,"12":0,"58":0,"59":0,"64":0,"68":0,"69":0,"72":0,"99":0,"100":0,"128":0,"129":0,"133":0,"134":0,"138":0,"143":0,"144":0,"147":0,"150":0,"152":0,"155":0,"157":0,"181":0,"182":0,"183":0,"184":0,"188":0,"190":0,"191":0,"193":0,"194":0,"198":0,"199":0,"200":0,"201":0,"205":0,"210":0,"212":0,"213":0,"214":0,"215":0,"216":0,"218":0,"219":0,"221":0,"222":0,"224":0,"226":0,"230":0,"231":0,"232":0,"241":0,"242":0,"243":0,"245":0,"246":0,"249":0,"250":0,"253":0,"265":0,"267":0,"276":0,"277":0,"278":0,"279":0,"280":0,"281":0,"282":0,"283":0,"284":0,"285":0,"286":0,"287":0,"288":0,"291":0,"296":0,"297":0,"311":0,"321":0,"336":0,"338":0,"339":0,"385":0,"388":0,"389":0,"393":0,"397":0,"398":0,"400":0,"405":0,"409":0,"413":0,"414":0,"415":0,"416":0,"417":0,"418":0,"419":0,"420":0,"426":0,"431":0,"433":0,"435":0,"436":0,"437":0,"439":0,"441":0,"442":0,"443":0,"445":0,"446":0,"447":0,"451":0,"454":0,"455":0,"459":0,"462":0,"476":0,"477":0,"478":0,"479":0,"480":0,"481":0,"483":0,"485":0,"486":0,"489":0,"491":0,"493":0,"494":0,"496":0,"497":0,"509":0,"514":0,"515":0,"516":0,"520":0,"521":0,"523":0,"524":0,"542":0,"543":0,"544":0,"547":0,"548":0,"549":0,"550":0,"551":0,"552":0,"553":0,"554":0,"557":0,"560":0,"611":0,"612":0,"624":0,"625":0,"626":0,"628":0,"629":0,"630":0,"631":0,"632":0,"633":0,"634":0,"635":0,"636":0,"643":0,"657":0,"669":0,"670":0,"671":0,"672":0,"673":0,"674":0,"675":0,"676":0,"677":0,"678":0,"679":0,"685":0,"686":0,"688":0,"689":0,"690":0,"691":0,"693":0,"694":0,"695":0,"697":0,"698":0,"699":0,"700":0,"706":0,"707":0,"708":0,"709":0,"710":0,"714":0,"717":0,"718":0,"719":0,"720":0,"728":0,"729":0,"730":0,"731":0,"732":0,"733":0,"736":0,"739":0,"740":0,"741":0,"742":0,"744":0,"745":0,"746":0,"749":0,"750":0,"751":0,"752":0,"753":0,"755":0,"760":0,"761":0,"762":0,"763":0,"764":0,"766":0,"771":0,"772":0,"773":0,"775":0,"776":0,"778":0,"779":0,"784":0,"785":0,"786":0,"787":0,"788":0,"790":0,"801":0,"817":0,"820":0,"822":0,"823":0,"826":0,"827":0,"828":0,"829":0,"830":0,"831":0,"901":0,"911":0,"912":0,"913":0,"914":0,"917":0,"919":0,"920":0,"923":0,"924":0,"925":0,"926":0,"927":0,"931":0,"932":0,"934":0,"935":0,"939":0,"940":0,"941":0,"943":0,"944":0,"948":0,"961":0,"962":0,"963":0,"964":0,"965":0,"966":0,"968":0,"969":0,"971":0,"972":0,"974":0,"992":0,"993":0,"996":0,"1015":0,"1017":0,"1018":0,"1021":0,"1022":0,"1023":0,"1024":0,"1025":0,"1027":0,"1030":0,"1033":0,"1035":0,"1036":0,"1037":0,"1038":0,"1042":0,"1043":0,"1046":0,"1047":0,"1048":0,"1050":0,"1051":0,"1052":0,"1053":0,"1057":0,"1058":0,"1060":0,"1065":0,"1066":0,"1070":0,"1071":0,"1078":0,"1086":0,"1088":0,"1089":0,"1090":0,"1091":0,"1092":0,"1093":0,"1094":0,"1095":0,"1097":0,"1102":0,"1103":0,"1104":0,"1105":0,"1106":0,"1110":0,"1111":0,"1113":0,"1114":0,"1118":0,"1119":0,"1126":0,"1127":0,"1128":0,"1129":0,"1130":0,"1133":0,"1134":0,"1135":0,"1137":0,"1140":0,"1141":0,"1147":0,"1148":0,"1149":0,"1150":0,"1151":0,"1152":0,"1153":0,"1154":0,"1157":0,"1159":0,"1162":0,"1163":0,"1164":0,"1169":0,"1170":0,"1171":0,"1172":0,"1173":0,"1174":0,"1175":0,"1176":0,"1177":0,"1179":0,"1181":0,"1183":0,"1184":0,"1185":0,"1186":0,"1187":0,"1188":0,"1189":0,"1193":0,"1194":0,"1196":0,"1197":0,"1203":0,"1204":0,"1205":0,"1209":0,"1253":0,"1255":0,"1256":0,"1257":0,"1258":0,"1259":0,"1260":0,"1261":0,"1262":0,"1265":0,"1266":0,"1269":0,"1276":0,"1298":0,"1300":0,"1301":0,"1304":0,"1305":0,"1307":0,"1310":0,"1322":0,"1323":0,"1344":0,"1345":0,"1346":0,"1351":0,"1352":0,"1354":0,"1357":0,"1358":0,"1359":0,"1360":0,"1361":0,"1363":0,"1367":0,"1377":0,"1378":0,"1379":0,"1381":0,"1382":0,"1383":0,"1400":0,"1403":0,"1404":0,"1405":0,"1444":0,"1445":0,"1446":0,"1449":0,"1450":0,"1453":0,"1455":0,"1459":0,"1461":0,"1465":0,"1467":0,"1470":0,"1471":0,"1475":0,"1476":0,"1742":0,"1764":0,"1812":0,"1813":0,"1830":0,"1831":0,"1841":0,"1842":0,"1852":0,"1853":0,"1880":0,"1881":0,"1891":0,"1892":0,"1902":0,"1903":0,"1917":0,"1918":0,"1919":0,"1930":0,"1931":0,"1941":0,"1942":0,"1954":0,"1955":0,"1957":0,"1959":0,"1963":0,"1966":0,"1978":0,"1979":0,"1993":0,"1994":0,"1995":0,"2007":0,"2008":0,"2010":0,"2011":0,"2013":0,"2024":0,"2025":0,"2027":0,"2037":0,"2038":0,"2040":0,"2070":0,"2071":0,"2078":0,"2111":0,"2112":0,"2114":0,"2116":0,"2118":0,"2119":0,"2121":0,"2123":0,"2124":0,"2127":0,"2131":0,"2134":0,"2150":0,"2151":0,"2155":0,"2156":0,"2158":0,"2159":0,"2160":0,"2164":0,"2182":0,"2183":0,"2184":0,"2186":0,"2187":0,"2188":0,"2192":0,"2219":0,"2220":0,"2224":0,"2225":0,"2226":0,"2230":0,"2247":0,"2248":0,"2251":0,"2253":0,"2254":0,"2256":0,"2257":0,"2259":0,"2260":0,"2264":0,"2265":0,"2266":0,"2270":0,"2292":0,"2293":0,"2312":0,"2313":0,"2315":0,"2316":0,"2317":0,"2321":0,"2342":0,"2343":0,"2345":0,"2346":0,"2347":0,"2348":0,"2352":0,"2353":0,"2358":0,"2376":0,"2377":0,"2378":0,"2381":0,"2396":0,"2406":0,"2416":0,"2427":0,"2429":0,"2439":0,"2443":0,"2445":0,"2456":0,"2485":0,"2486":0,"2488":0,"2489":0,"2493":0,"2494":0,"2497":0,"2517":0,"2521":0,"2527":0,"2542":0,"2543":0,"2549":0,"2550":0,"2552":0,"2553":0,"2554":0,"2559":0,"2596":0,"2597":0,"2602":0,"2603":0,"2606":0,"2610":0,"2611":0,"2617":0,"2618":0,"2623":0,"2624":0,"2627":0,"2628":0,"2633":0,"2635":0,"2636":0,"2637":0,"2644":0,"2645":0,"2651":0,"2653":0,"2663":0,"2664":0,"2668":0,"2672":0,"2678":0,"2679":0,"2685":0,"2687":0,"2689":0,"2690":0,"2691":0,"2698":0,"2699":0,"2703":0,"2719":0,"2741":0,"2744":0,"2747":0,"2748":0,"2749":0,"2811":0,"2823":0,"2846":0,"2847":0,"2848":0,"2851":0,"2854":0,"2855":0,"2856":0,"2857":0,"2861":0,"2862":0,"2863":0,"2868":0,"2869":0,"2870":0,"2872":0,"2873":0,"2878":0,"2898":0,"2899":0,"2904":0,"2905":0,"2908":0,"2919":0,"2920":0,"2921":0,"2923":0,"2937":0,"2938":0,"2961":0,"2962":0,"2964":0,"2965":0,"2966":0,"2970":0,"2993":0,"2994":0,"2996":0,"2997":0,"2998":0,"2999":0,"3004":0,"3020":0,"3021":0,"3022":0,"3025":0,"3029":0,"3030":0,"3033":0,"3050":0,"3051":0,"3056":0,"3057":0,"3058":0,"3061":0,"3062":0,"3064":0,"3068":0,"3080":0,"3081":0,"3116":0,"3118":0,"3119":0,"3120":0,"3121":0,"3355":0,"3358":0,"3360":0,"3362":0,"3363":0,"3364":0,"3365":0,"3366":0,"3367":0,"3368":0,"3369":0,"3370":0,"3371":0,"3372":0,"3373":0,"3377":0,"3378":0,"3380":0,"3381":0,"3383":0,"3384":0,"3387":0,"3388":0,"3389":0,"3390":0,"3392":0,"3393":0,"3394":0,"3395":0,"3400":0,"3401":0,"3403":0,"3404":0,"3405":0,"3407":0,"3408":0,"3409":0,"3411":0,"3412":0,"3413":0,"3416":0,"3417":0,"3419":0,"3421":0,"3422":0,"3423":0,"3424":0,"3425":0,"3428":0,"3429":0,"3430":0,"3432":0,"3433":0,"3434":0,"3438":0,"3439":0,"3440":0,"3441":0,"3443":0,"3444":0,"3445":0,"3447":0,"3448":0,"3453":0,"3454":0,"3455":0,"3456":0,"3457":0,"3458":0,"3461":0,"3462":0,"3463":0,"3468":0,"3470":0,"3471":0,"3472":0,"3473":0,"3475":0,"3476":0,"3477":0,"3480":0,"3481":0,"3482":0,"3483":0,"3484":0,"3487":0,"3489":0,"3490":0,"3493":0,"3494":0,"3495":0,"3497":0,"3498":0,"3499":0,"3500":0,"3501":0,"3502":0,"3512":0,"3513":0,"3517":0,"3519":0,"3521":0,"3523":0,"3524":0,"3528":0,"3532":0,"3536":0,"3558":0,"3559":0,"3561":0,"3562":0,"3565":0,"3566":0,"3568":0,"3569":0,"3570":0,"3572":0,"3573":0,"3575":0,"3576":0,"3579":0,"3580":0,"3584":0,"3586":0}; -_yuitest_coverage["build/yui-nodejs/yui-nodejs.js"].functions = {"instanceOf:63":0,"YUI:58":0,"add:180":0,"remove:187":0,"handleLoad:197":0,"getLoader:204":0,"clobber:229":0,"applyConfig:263":0,"_config:310":0,"parseBasePath:384":0,"(anonymous 2):408":0,"_init:320":0,"_setup:508":0,"applyTo:541":0,"add:610":0,"_attach:656":0,"(anonymous 5):829":0,"(anonymous 4):828":0,"(anonymous 3):826":0,"_delayCallback:815":0,"(anonymous 6):943":0,"use:900":0,"_notify:960":0,"process:1013":0,"(anonymous 7):1104":0,"handleLoader:1077":0,"handleBoot:1183":0,"_use:990":0,"namespace:1252":0,"dump:1276":0,"error:1295":0,"guid:1321":0,"stamp:1343":0,"destroy:1376":0,"applyConfig:1444":0,"(anonymous 1):155":0,"_isNative:1812":0,"isArray:1830":0,"isBoolean:1841":0,"isDate:1852":0,"isFunction:1880":0,"isNull:1891":0,"isNumber:1902":0,"isObject:1917":0,"isString:1930":0,"isUndefined:1941":0,"isValue:1954":0,"(anonymous 9):1978":0,"(anonymous 10):1994":0,"sub:1993":0,"(anonymous 11):2007":0,"}:2009":0,"(anonymous 12):2024":0,"}:2026":0,"(anonymous 13):2037":0,"}:2039":0,"type:2070":0,"YArray:2111":0,"dedupe:2150":0,"(anonymous 14):2182":0,"}:2185":0,"hash:2219":0,"(anonymous 15):2247":0,"}:2249":0,"numericSort:2292":0,"(anonymous 16):2312":0,"}:2314":0,"test:2342":0,"Queue:2376":0,"_init:2388":0,"next:2405":0,"last:2415":0,"add:2426":0,"size:2438":0,"(anonymous 17):2488":0,"cached:2485":0,"getLocation:2517":0,"merge:2542":0,"mix:2596":0,"(anonymous 18):2735":0,"F:2744":0,"(anonymous 20):2747":0,"(anonymous 19):2742":0,"owns:2810":0,"keys:2846":0,"values:2898":0,"size:2919":0,"hasValue:2937":0,"each:2961":0,"some:2993":0,"getValue:3020":0,"setValue:3050":0,"isEmpty:3080":0,"(anonymous 22):3120":0,"numberify:3118":0,"parseUA:3116":0,"compareVersions:3558":0,"(anonymous 8):1742":0}; +_yuitest_coverage["build/yui-nodejs/yui-nodejs.js"].lines = {"11":0,"12":0,"58":0,"59":0,"64":0,"68":0,"69":0,"72":0,"99":0,"100":0,"128":0,"129":0,"133":0,"134":0,"138":0,"143":0,"144":0,"147":0,"150":0,"152":0,"155":0,"157":0,"181":0,"182":0,"183":0,"184":0,"188":0,"190":0,"191":0,"193":0,"194":0,"198":0,"199":0,"200":0,"201":0,"205":0,"210":0,"212":0,"213":0,"214":0,"215":0,"216":0,"218":0,"219":0,"221":0,"222":0,"224":0,"226":0,"230":0,"231":0,"232":0,"241":0,"242":0,"243":0,"245":0,"246":0,"249":0,"250":0,"253":0,"265":0,"267":0,"276":0,"277":0,"278":0,"279":0,"280":0,"281":0,"282":0,"283":0,"284":0,"285":0,"286":0,"287":0,"288":0,"291":0,"296":0,"297":0,"311":0,"321":0,"336":0,"338":0,"339":0,"385":0,"388":0,"389":0,"393":0,"397":0,"398":0,"400":0,"405":0,"409":0,"413":0,"414":0,"415":0,"416":0,"417":0,"418":0,"419":0,"420":0,"426":0,"431":0,"433":0,"435":0,"436":0,"437":0,"439":0,"441":0,"442":0,"443":0,"445":0,"446":0,"447":0,"451":0,"454":0,"455":0,"459":0,"462":0,"476":0,"477":0,"478":0,"479":0,"480":0,"481":0,"483":0,"485":0,"486":0,"489":0,"491":0,"493":0,"494":0,"496":0,"497":0,"509":0,"514":0,"515":0,"516":0,"520":0,"521":0,"523":0,"524":0,"542":0,"543":0,"544":0,"547":0,"548":0,"549":0,"550":0,"551":0,"552":0,"553":0,"554":0,"557":0,"560":0,"611":0,"612":0,"624":0,"625":0,"626":0,"628":0,"629":0,"630":0,"631":0,"632":0,"633":0,"634":0,"635":0,"636":0,"643":0,"657":0,"669":0,"670":0,"671":0,"672":0,"673":0,"674":0,"675":0,"676":0,"677":0,"678":0,"679":0,"685":0,"686":0,"688":0,"689":0,"690":0,"691":0,"693":0,"694":0,"695":0,"697":0,"698":0,"699":0,"700":0,"706":0,"707":0,"708":0,"709":0,"710":0,"714":0,"717":0,"718":0,"719":0,"720":0,"728":0,"729":0,"730":0,"731":0,"732":0,"733":0,"736":0,"739":0,"740":0,"741":0,"742":0,"744":0,"745":0,"746":0,"749":0,"750":0,"751":0,"752":0,"753":0,"755":0,"760":0,"761":0,"762":0,"763":0,"764":0,"766":0,"771":0,"772":0,"773":0,"775":0,"776":0,"778":0,"779":0,"784":0,"785":0,"786":0,"787":0,"788":0,"790":0,"801":0,"817":0,"820":0,"822":0,"823":0,"826":0,"827":0,"828":0,"829":0,"830":0,"831":0,"901":0,"911":0,"912":0,"913":0,"914":0,"917":0,"919":0,"920":0,"923":0,"924":0,"925":0,"926":0,"927":0,"931":0,"932":0,"934":0,"935":0,"939":0,"940":0,"941":0,"943":0,"944":0,"948":0,"961":0,"962":0,"963":0,"964":0,"965":0,"966":0,"968":0,"969":0,"971":0,"972":0,"974":0,"992":0,"993":0,"996":0,"1015":0,"1017":0,"1018":0,"1021":0,"1022":0,"1023":0,"1024":0,"1025":0,"1027":0,"1030":0,"1033":0,"1035":0,"1036":0,"1037":0,"1038":0,"1042":0,"1043":0,"1046":0,"1047":0,"1048":0,"1050":0,"1051":0,"1052":0,"1053":0,"1057":0,"1058":0,"1060":0,"1065":0,"1066":0,"1070":0,"1071":0,"1078":0,"1086":0,"1088":0,"1089":0,"1090":0,"1091":0,"1092":0,"1093":0,"1094":0,"1095":0,"1097":0,"1102":0,"1103":0,"1104":0,"1105":0,"1106":0,"1110":0,"1111":0,"1113":0,"1114":0,"1118":0,"1119":0,"1126":0,"1127":0,"1128":0,"1129":0,"1130":0,"1133":0,"1134":0,"1135":0,"1137":0,"1140":0,"1141":0,"1147":0,"1148":0,"1149":0,"1150":0,"1151":0,"1152":0,"1153":0,"1154":0,"1157":0,"1159":0,"1162":0,"1163":0,"1164":0,"1169":0,"1170":0,"1171":0,"1172":0,"1173":0,"1174":0,"1175":0,"1176":0,"1177":0,"1179":0,"1181":0,"1183":0,"1184":0,"1185":0,"1186":0,"1187":0,"1188":0,"1189":0,"1193":0,"1194":0,"1196":0,"1197":0,"1203":0,"1204":0,"1205":0,"1209":0,"1253":0,"1255":0,"1256":0,"1257":0,"1258":0,"1259":0,"1260":0,"1261":0,"1262":0,"1265":0,"1266":0,"1269":0,"1276":0,"1298":0,"1300":0,"1301":0,"1304":0,"1305":0,"1307":0,"1310":0,"1322":0,"1323":0,"1344":0,"1345":0,"1346":0,"1351":0,"1352":0,"1354":0,"1357":0,"1358":0,"1359":0,"1360":0,"1361":0,"1363":0,"1367":0,"1377":0,"1378":0,"1379":0,"1381":0,"1382":0,"1383":0,"1400":0,"1403":0,"1404":0,"1405":0,"1444":0,"1445":0,"1446":0,"1449":0,"1450":0,"1453":0,"1455":0,"1459":0,"1461":0,"1465":0,"1467":0,"1470":0,"1471":0,"1475":0,"1476":0,"1727":0,"1749":0,"1797":0,"1798":0,"1815":0,"1816":0,"1826":0,"1827":0,"1837":0,"1838":0,"1865":0,"1866":0,"1876":0,"1877":0,"1887":0,"1888":0,"1902":0,"1903":0,"1904":0,"1915":0,"1916":0,"1926":0,"1927":0,"1939":0,"1940":0,"1942":0,"1944":0,"1948":0,"1951":0,"1963":0,"1964":0,"1978":0,"1979":0,"1980":0,"1992":0,"1993":0,"1995":0,"1996":0,"1998":0,"2009":0,"2010":0,"2012":0,"2022":0,"2023":0,"2025":0,"2055":0,"2056":0,"2063":0,"2096":0,"2097":0,"2099":0,"2101":0,"2103":0,"2104":0,"2106":0,"2108":0,"2109":0,"2112":0,"2116":0,"2119":0,"2135":0,"2136":0,"2140":0,"2141":0,"2143":0,"2144":0,"2145":0,"2149":0,"2167":0,"2168":0,"2169":0,"2171":0,"2172":0,"2173":0,"2177":0,"2204":0,"2205":0,"2209":0,"2210":0,"2211":0,"2215":0,"2232":0,"2233":0,"2236":0,"2238":0,"2239":0,"2241":0,"2242":0,"2244":0,"2245":0,"2249":0,"2250":0,"2251":0,"2255":0,"2277":0,"2278":0,"2297":0,"2298":0,"2300":0,"2301":0,"2302":0,"2306":0,"2327":0,"2328":0,"2330":0,"2331":0,"2332":0,"2333":0,"2337":0,"2338":0,"2343":0,"2361":0,"2362":0,"2363":0,"2366":0,"2381":0,"2391":0,"2401":0,"2412":0,"2414":0,"2424":0,"2428":0,"2430":0,"2441":0,"2470":0,"2471":0,"2473":0,"2474":0,"2478":0,"2479":0,"2482":0,"2502":0,"2506":0,"2512":0,"2527":0,"2528":0,"2534":0,"2535":0,"2537":0,"2538":0,"2539":0,"2544":0,"2581":0,"2582":0,"2587":0,"2588":0,"2591":0,"2595":0,"2596":0,"2602":0,"2603":0,"2608":0,"2609":0,"2612":0,"2613":0,"2618":0,"2620":0,"2621":0,"2622":0,"2629":0,"2630":0,"2636":0,"2638":0,"2648":0,"2649":0,"2653":0,"2657":0,"2663":0,"2664":0,"2670":0,"2672":0,"2674":0,"2675":0,"2676":0,"2683":0,"2684":0,"2688":0,"2704":0,"2726":0,"2729":0,"2732":0,"2733":0,"2734":0,"2796":0,"2808":0,"2831":0,"2832":0,"2833":0,"2836":0,"2839":0,"2840":0,"2841":0,"2842":0,"2846":0,"2847":0,"2848":0,"2853":0,"2854":0,"2855":0,"2857":0,"2858":0,"2863":0,"2883":0,"2884":0,"2889":0,"2890":0,"2893":0,"2904":0,"2905":0,"2906":0,"2908":0,"2922":0,"2923":0,"2946":0,"2947":0,"2949":0,"2950":0,"2951":0,"2955":0,"2978":0,"2979":0,"2981":0,"2982":0,"2983":0,"2984":0,"2989":0,"3005":0,"3006":0,"3007":0,"3010":0,"3014":0,"3015":0,"3018":0,"3035":0,"3036":0,"3041":0,"3042":0,"3043":0,"3046":0,"3047":0,"3049":0,"3053":0,"3065":0,"3066":0,"3101":0,"3103":0,"3104":0,"3105":0,"3106":0,"3340":0,"3343":0,"3345":0,"3347":0,"3348":0,"3349":0,"3350":0,"3351":0,"3352":0,"3353":0,"3354":0,"3355":0,"3356":0,"3357":0,"3358":0,"3362":0,"3363":0,"3365":0,"3366":0,"3368":0,"3369":0,"3372":0,"3373":0,"3374":0,"3375":0,"3377":0,"3378":0,"3379":0,"3380":0,"3385":0,"3386":0,"3388":0,"3389":0,"3390":0,"3392":0,"3393":0,"3394":0,"3396":0,"3397":0,"3398":0,"3401":0,"3402":0,"3404":0,"3406":0,"3407":0,"3408":0,"3409":0,"3410":0,"3413":0,"3414":0,"3415":0,"3417":0,"3418":0,"3419":0,"3423":0,"3424":0,"3425":0,"3426":0,"3428":0,"3429":0,"3430":0,"3432":0,"3433":0,"3438":0,"3439":0,"3440":0,"3441":0,"3442":0,"3443":0,"3446":0,"3447":0,"3448":0,"3453":0,"3455":0,"3456":0,"3457":0,"3458":0,"3460":0,"3461":0,"3462":0,"3465":0,"3466":0,"3467":0,"3468":0,"3469":0,"3472":0,"3474":0,"3475":0,"3478":0,"3479":0,"3480":0,"3482":0,"3483":0,"3484":0,"3485":0,"3486":0,"3487":0,"3497":0,"3498":0,"3502":0,"3504":0,"3506":0,"3508":0,"3509":0,"3513":0,"3517":0,"3521":0,"3543":0,"3544":0,"3546":0,"3547":0,"3550":0,"3551":0,"3553":0,"3554":0,"3555":0,"3557":0,"3558":0,"3560":0,"3561":0,"3564":0,"3565":0,"3569":0,"3571":0}; +_yuitest_coverage["build/yui-nodejs/yui-nodejs.js"].functions = {"instanceOf:63":0,"YUI:58":0,"add:180":0,"remove:187":0,"handleLoad:197":0,"getLoader:204":0,"clobber:229":0,"applyConfig:263":0,"_config:310":0,"parseBasePath:384":0,"(anonymous 2):408":0,"_init:320":0,"_setup:508":0,"applyTo:541":0,"add:610":0,"_attach:656":0,"(anonymous 5):829":0,"(anonymous 4):828":0,"(anonymous 3):826":0,"_delayCallback:815":0,"(anonymous 6):943":0,"use:900":0,"_notify:960":0,"process:1013":0,"(anonymous 7):1104":0,"handleLoader:1077":0,"handleBoot:1183":0,"_use:990":0,"namespace:1252":0,"dump:1276":0,"error:1295":0,"guid:1321":0,"stamp:1343":0,"destroy:1376":0,"applyConfig:1444":0,"(anonymous 1):155":0,"_isNative:1797":0,"isArray:1815":0,"isBoolean:1826":0,"isDate:1837":0,"isFunction:1865":0,"isNull:1876":0,"isNumber:1887":0,"isObject:1902":0,"isString:1915":0,"isUndefined:1926":0,"isValue:1939":0,"(anonymous 9):1963":0,"(anonymous 10):1979":0,"sub:1978":0,"(anonymous 11):1992":0,"}:1994":0,"(anonymous 12):2009":0,"}:2011":0,"(anonymous 13):2022":0,"}:2024":0,"type:2055":0,"YArray:2096":0,"dedupe:2135":0,"(anonymous 14):2167":0,"}:2170":0,"hash:2204":0,"(anonymous 15):2232":0,"}:2234":0,"numericSort:2277":0,"(anonymous 16):2297":0,"}:2299":0,"test:2327":0,"Queue:2361":0,"_init:2373":0,"next:2390":0,"last:2400":0,"add:2411":0,"size:2423":0,"(anonymous 17):2473":0,"cached:2470":0,"getLocation:2502":0,"merge:2527":0,"mix:2581":0,"(anonymous 18):2720":0,"F:2729":0,"(anonymous 20):2732":0,"(anonymous 19):2727":0,"owns:2795":0,"keys:2831":0,"values:2883":0,"size:2904":0,"hasValue:2922":0,"each:2946":0,"some:2978":0,"getValue:3005":0,"setValue:3035":0,"isEmpty:3065":0,"(anonymous 22):3105":0,"numberify:3103":0,"parseUA:3101":0,"compareVersions:3543":0,"(anonymous 8):1727":0}; _yuitest_coverage["build/yui-nodejs/yui-nodejs.js"].coveredLines = 826; _yuitest_coverage["build/yui-nodejs/yui-nodejs.js"].coveredFunctions = 98; _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 11); @@ -2193,20 +2193,6 @@ relying on ES5 functionality, even when ES5 functionality is available. **/ /** -<<<<<<< HEAD -Event to wait for before executing the `use()` callback. - -The following events are supported: - - - available - - contentready - - domready - - load - -The event may be specified as a string or as an object hash that provides -additional event configuration, as illustrated in the example below. - -======= * Leverage native JSON stringify if the browser has a native * implementation. In general, this is a good idea. See the Known Issues * section in the JSON user guide for caveats. The default value is true @@ -2235,7 +2221,6 @@ Delay the `use` callback until a specific event has passed (`load`, `domready`, @property delayUntil @type String|Object @since 3.6.0 ->>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4 @example You can use `load` or `domready` strings by default: @@ -2261,7 +2246,7 @@ Or you can delay until a node is available (with `available` or `contentready`): @property {Object|String} delayUntil @since 3.6.0 **/ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1742); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1727); YUI.add('yui-base', function (Y, NAME) { /* @@ -2284,8 +2269,8 @@ YUI.add('yui-base', function (Y, NAME) { * @static */ -_yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 8)", 1742); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1764); +_yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 8)", 1727); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1749); var L = Y.Lang || (Y.Lang = {}), STRING_PROTO = String.prototype, @@ -2334,10 +2319,10 @@ other libraries. @protected @since 3.5.0 **/ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1812); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1797); L._isNative = function (fn) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "_isNative", 1812); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1813); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "_isNative", 1797); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1798); return !!(Y.config.useNativeES5 && fn && NATIVE_FN_REGEX.test(fn)); }; @@ -2355,10 +2340,10 @@ return !!(Y.config.useNativeES5 && fn && NATIVE_FN_REGEX.test(fn)); * @return {boolean} true if o is an array. * @static */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1830); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1815); L.isArray = L._isNative(Array.isArray) ? Array.isArray : function (o) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isArray", 1830); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1831); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isArray", 1815); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1816); return L.type(o) === 'array'; }; @@ -2369,10 +2354,10 @@ return L.type(o) === 'array'; * @param o The object to test. * @return {boolean} true if o is a boolean. */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1841); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1826); L.isBoolean = function(o) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isBoolean", 1841); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1842); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isBoolean", 1826); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1827); return typeof o === 'boolean'; }; @@ -2383,10 +2368,10 @@ return typeof o === 'boolean'; * @param o The object to test. * @return {boolean} true if o is a date. */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1852); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1837); L.isDate = function(o) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isDate", 1852); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1853); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isDate", 1837); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1838); return L.type(o) === 'date' && o.toString() !== 'Invalid Date' && !isNaN(o); }; @@ -2414,10 +2399,10 @@ return L.type(o) === 'date' && o.toString() !== 'Invalid Date' && !isNaN(o); * @param o The object to test. * @return {boolean} true if o is a function. */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1880); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1865); L.isFunction = function(o) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isFunction", 1880); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1881); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isFunction", 1865); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1866); return L.type(o) === 'function'; }; @@ -2428,10 +2413,10 @@ return L.type(o) === 'function'; * @param o The object to test. * @return {boolean} true if o is null. */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1891); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1876); L.isNull = function(o) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isNull", 1891); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1892); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isNull", 1876); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1877); return o === null; }; @@ -2442,10 +2427,10 @@ return o === null; * @param o The object to test. * @return {boolean} true if o is a number. */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1902); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1887); L.isNumber = function(o) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isNumber", 1902); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1903); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isNumber", 1887); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1888); return typeof o === 'number' && isFinite(o); }; @@ -2460,12 +2445,12 @@ return typeof o === 'number' && isFinite(o); * @return {boolean} true if o is an object. * @see isPlainObject */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1917); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1902); L.isObject = function(o, failfn) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isObject", 1917); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1918); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isObject", 1902); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1903); var t = typeof o; - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1919); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1904); return (o && (t === 'object' || (!failfn && (t === 'function' || L.isFunction(o))))) || false; }; @@ -2477,10 +2462,10 @@ return (o && (t === 'object' || * @param o The object to test. * @return {boolean} true if o is a string. */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1930); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1915); L.isString = function(o) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isString", 1930); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1931); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isString", 1915); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1916); return typeof o === 'string'; }; @@ -2491,10 +2476,10 @@ return typeof o === 'string'; * @param o The object to test. * @return {boolean} true if o is undefined. */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1941); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1926); L.isUndefined = function(o) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isUndefined", 1941); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1942); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isUndefined", 1926); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1927); return typeof o === 'undefined'; }; @@ -2507,25 +2492,25 @@ return typeof o === 'undefined'; * @param o The item to test. * @return {boolean} true if it is not null/undefined/NaN || false. */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1954); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1939); L.isValue = function(o) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isValue", 1954); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1955); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "isValue", 1939); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1940); var t = L.type(o); - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1957); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1942); switch (t) { case 'number': - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1959); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1944); return isFinite(o); case 'null': // fallthru case 'undefined': - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1963); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1948); return false; default: - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1966); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1951); return !!t; } }; @@ -2538,10 +2523,10 @@ return !!t; * @static * @since 3.3.0 */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1978); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1963); L.now = Date.now || function () { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 9)", 1978); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1979); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 9)", 1963); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1964); return new Date().getTime(); }; @@ -2556,13 +2541,13 @@ return new Date().getTime(); * @static * @since 3.2.0 */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1993); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1978); L.sub = function(s, o) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "sub", 1993); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1994); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "sub", 1978); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1979); return s.replace ? s.replace(SUBREGEX, function (match, key) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 10)", 1994); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1995); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 10)", 1979); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1980); return L.isUndefined(o[key]) ? match : o[key]; }) : s; }; @@ -2575,19 +2560,19 @@ return L.isUndefined(o[key]) ? match : o[key]; * @param s {string} the string to trim. * @return {string} the trimmed string. */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2007); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1992); L.trim = STRING_PROTO.trim ? function(s) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 11)", 2007); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2008); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 11)", 1992); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1993); return s && s.trim ? s.trim() : s; } : function (s) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 2009); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2010); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 1994); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1995); try { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2011); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1996); return s.replace(TRIMREGEX, ''); } catch (e) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2013); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 1998); return s; } }; @@ -2599,14 +2584,14 @@ return s; * @param s {string} the string to trim. * @return {string} the trimmed string. */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2024); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2009); L.trimLeft = STRING_PROTO.trimLeft ? function (s) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 12)", 2024); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2025); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 12)", 2009); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2010); return s.trimLeft(); } : function (s) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 2026); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2027); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 2011); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2012); return s.replace(/^\s+/, ''); }; @@ -2617,14 +2602,14 @@ return s.replace(/^\s+/, ''); * @param s {string} the string to trim. * @return {string} the trimmed string. */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2037); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2022); L.trimRight = STRING_PROTO.trimRight ? function (s) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 13)", 2037); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2038); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 13)", 2022); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2023); return s.trimRight(); } : function (s) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 2039); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2040); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 2024); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2025); return s.replace(/\s+$/, ''); }; @@ -2655,10 +2640,10 @@ Known issues: @return {string} the detected type. @static **/ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2070); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2055); L.type = function(o) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "type", 2070); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2071); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "type", 2055); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2056); return TYPES[typeof o] || TYPES[TOSTRING.call(o)] || (o ? 'object' : 'null'); }; /** @@ -2666,7 +2651,7 @@ return TYPES[typeof o] || TYPES[TOSTRING.call(o)] || (o ? 'object' : 'null'); @submodule yui-base */ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2078); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2063); var Lang = Y.Lang, Native = Array.prototype, @@ -2700,42 +2685,42 @@ pass `true` as the value of the _force_ parameter. @return {Array} A native array created from _thing_, according to the rules described above. **/ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2111); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2096); function YArray(thing, startIndex, force) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "YArray", 2111); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2112); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "YArray", 2096); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2097); var len, result; - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2114); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2099); startIndex || (startIndex = 0); - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2116); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2101); if (force || YArray.test(thing)) { // IE throws when trying to slice HTMLElement collections. - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2118); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2103); try { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2119); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2104); return Native.slice.call(thing, startIndex); } catch (ex) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2121); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2106); result = []; - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2123); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2108); for (len = thing.length; startIndex < len; ++startIndex) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2124); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2109); result.push(thing[startIndex]); } - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2127); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2112); return result; } } - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2131); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2116); return [thing]; } -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2134); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2119); Y.Array = YArray; /** @@ -2752,29 +2737,29 @@ Using `dedupe()` with non-string values may result in unexpected behavior. @static @since 3.4.0 **/ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2150); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2135); YArray.dedupe = function (array) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "dedupe", 2150); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2151); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "dedupe", 2135); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2136); var hash = {}, results = [], i, item, len; - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2155); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2140); for (i = 0, len = array.length; i < len; ++i) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2156); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2141); item = array[i]; - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2158); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2143); if (!hasOwn.call(hash, item)) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2159); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2144); hash[item] = 1; - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2160); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2145); results.push(item); } } - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2164); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2149); return results; }; @@ -2793,25 +2778,25 @@ the native ES5 `Array.forEach()` method if available. @return {YUI} The YUI instance. @static **/ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2182); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2167); YArray.each = YArray.forEach = Lang._isNative(Native.forEach) ? function (array, fn, thisObj) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 14)", 2182); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2183); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 14)", 2167); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2168); Native.forEach.call(array || [], fn, thisObj || Y); - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2184); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2169); return Y; } : function (array, fn, thisObj) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 2185); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2186); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 2170); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2171); for (var i = 0, len = (array && array.length) || 0; i < len; ++i) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2187); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2172); if (i in array) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2188); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2173); fn.call(thisObj || Y, array[i], i, array); } } - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2192); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2177); return Y; }; @@ -2839,24 +2824,24 @@ values. @return {Object} Hash using the first array as keys and the second as values. @static **/ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2219); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2204); YArray.hash = function (keys, values) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "hash", 2219); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2220); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "hash", 2204); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2205); var hash = {}, vlen = (values && values.length) || 0, i, len; - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2224); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2209); for (i = 0, len = keys.length; i < len; ++i) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2225); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2210); if (i in keys) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2226); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2211); hash[keys[i]] = vlen > i && i in values ? values[i] : true; } } - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2230); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2215); return hash; }; @@ -2874,44 +2859,44 @@ This method wraps the native ES5 `Array.indexOf()` method if available. found. @static **/ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2247); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2232); YArray.indexOf = Lang._isNative(Native.indexOf) ? function (array, value, from) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 15)", 2247); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2248); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 15)", 2232); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2233); return Native.indexOf.call(array, value, from); } : function (array, value, from) { // http://es5.github.com/#x15.4.4.14 - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 2249); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2251); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 2234); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2236); var len = array.length; - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2253); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2238); from = +from || 0; - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2254); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2239); from = (from > 0 || -1) * Math.floor(Math.abs(from)); - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2256); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2241); if (from < 0) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2257); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2242); from += len; - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2259); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2244); if (from < 0) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2260); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2245); from = 0; } } - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2264); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2249); for (; from < len; ++from) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2265); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2250); if (from in array && array[from] === value) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2266); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2251); return from; } } - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2270); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2255); return -1; }; @@ -2934,10 +2919,10 @@ to sort values in numeric order. @return {Number} Difference between _a_ and _b_. @static **/ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2292); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2277); YArray.numericSort = function (a, b) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "numericSort", 2292); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2293); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "numericSort", 2277); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2278); return a - b; }; @@ -2957,23 +2942,23 @@ value from the function will stop the processing of remaining items. items in the array; `false` otherwise. @static **/ -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2312); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2297); YArray.some = Lang._isNative(Native.some) ? function (array, fn, thisObj) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 16)", 2312); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2313); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "(anonymous 16)", 2297); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2298); return Native.some.call(array, fn, thisObj); } : function (array, fn, thisObj) { - _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 2314); -_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2315); + _yuitest_coverfunc("build/yui-nodejs/yui-nodejs.js", "}", 2299); +_yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2300); for (var i = 0, len = array.length; i < len; ++i) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2316); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2301); if (i in array && fn.call(thisObj, array[i], i, array)) { - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2317); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2302); return true; } } - _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2321); + _yuitest_coverline("build/yui-nodejs/yui-nodejs.js", 2306); return false; }; @@ -2995,32 +2980,32 @@ collections, such as `` and ``","elements, are not automatically converted to arrays. To force a conversion,","pass `true` as the value of the _force_ parameter.","","@class Array","@constructor","@param {Any} thing The thing to arrayify.","@param {Number} [startIndex=0] If non-zero and _thing_ is an array or array-like"," collection, a subset of items starting at the specified index will be"," returned.","@param {Boolean} [force=false] If `true`, _thing_ will be treated as an"," array-like collection no matter what.","@return {Array} A native array created from _thing_, according to the rules"," described above.","**/","function YArray(thing, startIndex, force) {"," var len, result;",""," startIndex || (startIndex = 0);",""," if (force || YArray.test(thing)) {"," // IE throws when trying to slice HTMLElement collections."," try {"," return Native.slice.call(thing, startIndex);"," } catch (ex) {"," result = [];",""," for (len = thing.length; startIndex < len; ++startIndex) {"," result.push(thing[startIndex]);"," }",""," return result;"," }"," }",""," return [thing];","}","","Y.Array = YArray;","","/**","Dedupes an array of strings, returning an array that's guaranteed to contain","only one copy of a given string.","","This method differs from `Array.unique()` in that it's optimized for use only","with strings, whereas `unique` may be used with other types (but is slower).","Using `dedupe()` with non-string values may result in unexpected behavior.","","@method dedupe","@param {String[]} array Array of strings to dedupe.","@return {Array} Deduped copy of _array_.","@static","@since 3.4.0","**/","YArray.dedupe = function (array) {"," var hash = {},"," results = [],"," i, item, len;",""," for (i = 0, len = array.length; i < len; ++i) {"," item = array[i];",""," if (!hasOwn.call(hash, item)) {"," hash[item] = 1;"," results.push(item);"," }"," }",""," return results;","};","","/**","Executes the supplied function on each item in the array. This method wraps","the native ES5 `Array.forEach()` method if available.","","@method each","@param {Array} array Array to iterate.","@param {Function} fn Function to execute on each item in the array. The function"," will receive the following arguments:"," @param {Any} fn.item Current array item."," @param {Number} fn.index Current array index."," @param {Array} fn.array Array being iterated.","@param {Object} [thisObj] `this` object to use when calling _fn_.","@return {YUI} The YUI instance.","@static","**/","YArray.each = YArray.forEach = Lang._isNative(Native.forEach) ? function (array, fn, thisObj) {"," Native.forEach.call(array || [], fn, thisObj || Y);"," return Y;","} : function (array, fn, thisObj) {"," for (var i = 0, len = (array && array.length) || 0; i < len; ++i) {"," if (i in array) {"," fn.call(thisObj || Y, array[i], i, array);"," }"," }",""," return Y;","};","","/**","Alias for `each()`.","","@method forEach","@static","**/","","/**","Returns an object using the first array as keys and the second as values. If","the second array is not provided, or if it doesn't contain the same number of","values as the first array, then `true` will be used in place of the missing","values.","","@example",""," Y.Array.hash(['a', 'b', 'c'], ['foo', 'bar']);"," // => {a: 'foo', b: 'bar', c: true}","","@method hash","@param {String[]} keys Array of strings to use as keys.","@param {Array} [values] Array to use as values.","@return {Object} Hash using the first array as keys and the second as values.","@static","**/","YArray.hash = function (keys, values) {"," var hash = {},"," vlen = (values && values.length) || 0,"," i, len;",""," for (i = 0, len = keys.length; i < len; ++i) {"," if (i in keys) {"," hash[keys[i]] = vlen > i && i in values ? values[i] : true;"," }"," }",""," return hash;","};","","/**","Returns the index of the first item in the array that's equal (using a strict","equality check) to the specified _value_, or `-1` if the value isn't found.","","This method wraps the native ES5 `Array.indexOf()` method if available.","","@method indexOf","@param {Array} array Array to search.","@param {Any} value Value to search for.","@param {Number} [from=0] The index at which to begin the search.","@return {Number} Index of the item strictly equal to _value_, or `-1` if not"," found.","@static","**/","YArray.indexOf = Lang._isNative(Native.indexOf) ? function (array, value, from) {"," return Native.indexOf.call(array, value, from);","} : function (array, value, from) {"," // http://es5.github.com/#x15.4.4.14"," var len = array.length;",""," from = +from || 0;"," from = (from > 0 || -1) * Math.floor(Math.abs(from));",""," if (from < 0) {"," from += len;",""," if (from < 0) {"," from = 0;"," }"," }",""," for (; from < len; ++from) {"," if (from in array && array[from] === value) {"," return from;"," }"," }",""," return -1;","};","","/**","Numeric sort convenience function.","","The native `Array.prototype.sort()` function converts values to strings and","sorts them in lexicographic order, which is unsuitable for sorting numeric","values. Provide `Array.numericSort` as a custom sort function when you want","to sort values in numeric order.","","@example",""," [42, 23, 8, 16, 4, 15].sort(Y.Array.numericSort);"," // => [4, 8, 15, 16, 23, 42]","","@method numericSort","@param {Number} a First value to compare.","@param {Number} b Second value to compare.","@return {Number} Difference between _a_ and _b_.","@static","**/","YArray.numericSort = function (a, b) {"," return a - b;","};","","/**","Executes the supplied function on each item in the array. Returning a truthy","value from the function will stop the processing of remaining items.","","@method some","@param {Array} array Array to iterate over.","@param {Function} fn Function to execute on each item. The function will receive"," the following arguments:"," @param {Any} fn.value Current array item."," @param {Number} fn.index Current array index."," @param {Array} fn.array Array being iterated over.","@param {Object} [thisObj] `this` object to use when calling _fn_.","@return {Boolean} `true` if the function returns a truthy value on any of the"," items in the array; `false` otherwise.","@static","**/","YArray.some = Lang._isNative(Native.some) ? function (array, fn, thisObj) {"," return Native.some.call(array, fn, thisObj);","} : function (array, fn, thisObj) {"," for (var i = 0, len = array.length; i < len; ++i) {"," if (i in array && fn.call(thisObj, array[i], i, array)) {"," return true;"," }"," }",""," return false;","};","","/**","Evaluates _obj_ to determine if it's an array, an array-like collection, or","something else. This is useful when working with the function `arguments`","collection and `HTMLElement` collections.","","Note: This implementation doesn't consider elements that are also","collections, such as `` and ``","elements, are not automatically converted to arrays. To force a conversion,","pass `true` as the value of the _force_ parameter.","","@class Array","@constructor","@param {Any} thing The thing to arrayify.","@param {Number} [startIndex=0] If non-zero and _thing_ is an array or array-like"," collection, a subset of items starting at the specified index will be"," returned.","@param {Boolean} [force=false] If `true`, _thing_ will be treated as an"," array-like collection no matter what.","@return {Array} A native array created from _thing_, according to the rules"," described above.","**/","function YArray(thing, startIndex, force) {"," var len, result;",""," startIndex || (startIndex = 0);",""," if (force || YArray.test(thing)) {"," // IE throws when trying to slice HTMLElement collections."," try {"," return Native.slice.call(thing, startIndex);"," } catch (ex) {"," result = [];",""," for (len = thing.length; startIndex < len; ++startIndex) {"," result.push(thing[startIndex]);"," }",""," return result;"," }"," }",""," return [thing];","}","","Y.Array = YArray;","","/**","Dedupes an array of strings, returning an array that's guaranteed to contain","only one copy of a given string.","","This method differs from `Array.unique()` in that it's optimized for use only","with strings, whereas `unique` may be used with other types (but is slower).","Using `dedupe()` with non-string values may result in unexpected behavior.","","@method dedupe","@param {String[]} array Array of strings to dedupe.","@return {Array} Deduped copy of _array_.","@static","@since 3.4.0","**/","YArray.dedupe = function (array) {"," var hash = {},"," results = [],"," i, item, len;",""," for (i = 0, len = array.length; i < len; ++i) {"," item = array[i];",""," if (!hasOwn.call(hash, item)) {"," hash[item] = 1;"," results.push(item);"," }"," }",""," return results;","};","","/**","Executes the supplied function on each item in the array. This method wraps","the native ES5 `Array.forEach()` method if available.","","@method each","@param {Array} array Array to iterate.","@param {Function} fn Function to execute on each item in the array. The function"," will receive the following arguments:"," @param {Any} fn.item Current array item."," @param {Number} fn.index Current array index."," @param {Array} fn.array Array being iterated.","@param {Object} [thisObj] `this` object to use when calling _fn_.","@return {YUI} The YUI instance.","@static","**/","YArray.each = YArray.forEach = Lang._isNative(Native.forEach) ? function (array, fn, thisObj) {"," Native.forEach.call(array || [], fn, thisObj || Y);"," return Y;","} : function (array, fn, thisObj) {"," for (var i = 0, len = (array && array.length) || 0; i < len; ++i) {"," if (i in array) {"," fn.call(thisObj || Y, array[i], i, array);"," }"," }",""," return Y;","};","","/**","Alias for `each()`.","","@method forEach","@static","**/","","/**","Returns an object using the first array as keys and the second as values. If","the second array is not provided, or if it doesn't contain the same number of","values as the first array, then `true` will be used in place of the missing","values.","","@example",""," Y.Array.hash(['a', 'b', 'c'], ['foo', 'bar']);"," // => {a: 'foo', b: 'bar', c: true}","","@method hash","@param {String[]} keys Array of strings to use as keys.","@param {Array} [values] Array to use as values.","@return {Object} Hash using the first array as keys and the second as values.","@static","**/","YArray.hash = function (keys, values) {"," var hash = {},"," vlen = (values && values.length) || 0,"," i, len;",""," for (i = 0, len = keys.length; i < len; ++i) {"," if (i in keys) {"," hash[keys[i]] = vlen > i && i in values ? values[i] : true;"," }"," }",""," return hash;","};","","/**","Returns the index of the first item in the array that's equal (using a strict","equality check) to the specified _value_, or `-1` if the value isn't found.","","This method wraps the native ES5 `Array.indexOf()` method if available.","","@method indexOf","@param {Array} array Array to search.","@param {Any} value Value to search for.","@param {Number} [from=0] The index at which to begin the search.","@return {Number} Index of the item strictly equal to _value_, or `-1` if not"," found.","@static","**/","YArray.indexOf = Lang._isNative(Native.indexOf) ? function (array, value, from) {"," return Native.indexOf.call(array, value, from);","} : function (array, value, from) {"," // http://es5.github.com/#x15.4.4.14"," var len = array.length;",""," from = +from || 0;"," from = (from > 0 || -1) * Math.floor(Math.abs(from));",""," if (from < 0) {"," from += len;",""," if (from < 0) {"," from = 0;"," }"," }",""," for (; from < len; ++from) {"," if (from in array && array[from] === value) {"," return from;"," }"," }",""," return -1;","};","","/**","Numeric sort convenience function.","","The native `Array.prototype.sort()` function converts values to strings and","sorts them in lexicographic order, which is unsuitable for sorting numeric","values. Provide `Array.numericSort` as a custom sort function when you want","to sort values in numeric order.","","@example",""," [42, 23, 8, 16, 4, 15].sort(Y.Array.numericSort);"," // => [4, 8, 15, 16, 23, 42]","","@method numericSort","@param {Number} a First value to compare.","@param {Number} b Second value to compare.","@return {Number} Difference between _a_ and _b_.","@static","**/","YArray.numericSort = function (a, b) {"," return a - b;","};","","/**","Executes the supplied function on each item in the array. Returning a truthy","value from the function will stop the processing of remaining items.","","@method some","@param {Array} array Array to iterate over.","@param {Function} fn Function to execute on each item. The function will receive"," the following arguments:"," @param {Any} fn.value Current array item."," @param {Number} fn.index Current array index."," @param {Array} fn.array Array being iterated over.","@param {Object} [thisObj] `this` object to use when calling _fn_.","@return {Boolean} `true` if the function returns a truthy value on any of the"," items in the array; `false` otherwise.","@static","**/","YArray.some = Lang._isNative(Native.some) ? function (array, fn, thisObj) {"," return Native.some.call(array, fn, thisObj);","} : function (array, fn, thisObj) {"," for (var i = 0, len = array.length; i < len; ++i) {"," if (i in array && fn.call(thisObj, array[i], i, array)) {"," return true;"," }"," }",""," return false;","};","","/**","Evaluates _obj_ to determine if it's an array, an array-like collection, or","something else. This is useful when working with the function `arguments`","collection and `HTMLElement` collections.","","Note: This implementation doesn't consider elements that are also","collections, such as `` and ``, to be array-like. @static **/ -_yuitest_coverline("build/yui/yui.js", 2342); +_yuitest_coverline("build/yui/yui.js", 2327); YArray.test = function (obj) { - _yuitest_coverfunc("build/yui/yui.js", "test", 2342); -_yuitest_coverline("build/yui/yui.js", 2343); + _yuitest_coverfunc("build/yui/yui.js", "test", 2327); +_yuitest_coverline("build/yui/yui.js", 2328); var result = 0; - _yuitest_coverline("build/yui/yui.js", 2345); + _yuitest_coverline("build/yui/yui.js", 2330); if (Lang.isArray(obj)) { - _yuitest_coverline("build/yui/yui.js", 2346); + _yuitest_coverline("build/yui/yui.js", 2331); result = 1; - } else {_yuitest_coverline("build/yui/yui.js", 2347); + } else {_yuitest_coverline("build/yui/yui.js", 2332); if (Lang.isObject(obj)) { - _yuitest_coverline("build/yui/yui.js", 2348); + _yuitest_coverline("build/yui/yui.js", 2333); try { // indexed, but no tagName (element) or scrollTo/document (window. From DOM.isWindow test which we can't use here), // or functions without apply/call (Safari // HTMLElementCollection bug). - _yuitest_coverline("build/yui/yui.js", 2352); + _yuitest_coverline("build/yui/yui.js", 2337); if ('length' in obj && !obj.tagName && !(obj.scrollTo && obj.document) && !obj.apply) { - _yuitest_coverline("build/yui/yui.js", 2353); + _yuitest_coverline("build/yui/yui.js", 2338); result = 2; } } catch (ex) {} }} - _yuitest_coverline("build/yui/yui.js", 2358); + _yuitest_coverline("build/yui/yui.js", 2343); return result; }; /** @@ -3039,16 +3024,16 @@ return result; * @constructor * @param {MIXED} item* 0..n items to seed the queue. */ -_yuitest_coverline("build/yui/yui.js", 2376); +_yuitest_coverline("build/yui/yui.js", 2361); function Queue() { - _yuitest_coverfunc("build/yui/yui.js", "Queue", 2376); -_yuitest_coverline("build/yui/yui.js", 2377); + _yuitest_coverfunc("build/yui/yui.js", "Queue", 2361); +_yuitest_coverline("build/yui/yui.js", 2362); this._init(); - _yuitest_coverline("build/yui/yui.js", 2378); + _yuitest_coverline("build/yui/yui.js", 2363); this.add.apply(this, arguments); } -_yuitest_coverline("build/yui/yui.js", 2381); +_yuitest_coverline("build/yui/yui.js", 2366); Queue.prototype = { /** * Initialize the queue @@ -3064,8 +3049,8 @@ Queue.prototype = { * @type Array * @protected */ - _yuitest_coverfunc("build/yui/yui.js", "_init", 2388); -_yuitest_coverline("build/yui/yui.js", 2396); + _yuitest_coverfunc("build/yui/yui.js", "_init", 2373); +_yuitest_coverline("build/yui/yui.js", 2381); this._q = []; }, @@ -3076,8 +3061,8 @@ this._q = []; * @return {MIXED} the next item in the queue. */ next: function() { - _yuitest_coverfunc("build/yui/yui.js", "next", 2405); -_yuitest_coverline("build/yui/yui.js", 2406); + _yuitest_coverfunc("build/yui/yui.js", "next", 2390); +_yuitest_coverline("build/yui/yui.js", 2391); return this._q.shift(); }, @@ -3088,8 +3073,8 @@ return this._q.shift(); * @return {MIXED} the last item in the queue. */ last: function() { - _yuitest_coverfunc("build/yui/yui.js", "last", 2415); -_yuitest_coverline("build/yui/yui.js", 2416); + _yuitest_coverfunc("build/yui/yui.js", "last", 2400); +_yuitest_coverline("build/yui/yui.js", 2401); return this._q.pop(); }, @@ -3101,11 +3086,11 @@ return this._q.pop(); * @return {object} this queue. */ add: function() { - _yuitest_coverfunc("build/yui/yui.js", "add", 2426); -_yuitest_coverline("build/yui/yui.js", 2427); + _yuitest_coverfunc("build/yui/yui.js", "add", 2411); +_yuitest_coverline("build/yui/yui.js", 2412); this._q.push.apply(this._q, arguments); - _yuitest_coverline("build/yui/yui.js", 2429); + _yuitest_coverline("build/yui/yui.js", 2414); return this; }, @@ -3116,16 +3101,16 @@ return this; * @return {Number} The size. */ size: function() { - _yuitest_coverfunc("build/yui/yui.js", "size", 2438); -_yuitest_coverline("build/yui/yui.js", 2439); + _yuitest_coverfunc("build/yui/yui.js", "size", 2423); +_yuitest_coverline("build/yui/yui.js", 2424); return this._q.length; } }; -_yuitest_coverline("build/yui/yui.js", 2443); +_yuitest_coverline("build/yui/yui.js", 2428); Y.Queue = Queue; -_yuitest_coverline("build/yui/yui.js", 2445); +_yuitest_coverline("build/yui/yui.js", 2430); YUI.Env._loaderQueue = YUI.Env._loaderQueue || new Queue(); /** @@ -3137,7 +3122,7 @@ utilities for the library. @submodule yui-base **/ -_yuitest_coverline("build/yui/yui.js", 2456); +_yuitest_coverline("build/yui/yui.js", 2441); var CACHED_DELIMITER = '__', hasOwn = Object.prototype.hasOwnProperty, @@ -3167,27 +3152,27 @@ string `[object Object]` when used as a cache key. @return {Function} Wrapped function. @for YUI **/ -_yuitest_coverline("build/yui/yui.js", 2485); +_yuitest_coverline("build/yui/yui.js", 2470); Y.cached = function (source, cache, refetch) { - _yuitest_coverfunc("build/yui/yui.js", "cached", 2485); -_yuitest_coverline("build/yui/yui.js", 2486); + _yuitest_coverfunc("build/yui/yui.js", "cached", 2470); +_yuitest_coverline("build/yui/yui.js", 2471); cache || (cache = {}); - _yuitest_coverline("build/yui/yui.js", 2488); + _yuitest_coverline("build/yui/yui.js", 2473); return function (arg) { - _yuitest_coverfunc("build/yui/yui.js", "(anonymous 17)", 2488); -_yuitest_coverline("build/yui/yui.js", 2489); + _yuitest_coverfunc("build/yui/yui.js", "(anonymous 17)", 2473); +_yuitest_coverline("build/yui/yui.js", 2474); var key = arguments.length > 1 ? Array.prototype.join.call(arguments, CACHED_DELIMITER) : String(arg); - _yuitest_coverline("build/yui/yui.js", 2493); + _yuitest_coverline("build/yui/yui.js", 2478); if (!(key in cache) || (refetch && cache[key] == refetch)) { - _yuitest_coverline("build/yui/yui.js", 2494); + _yuitest_coverline("build/yui/yui.js", 2479); cache[key] = source.apply(source, arguments); } - _yuitest_coverline("build/yui/yui.js", 2497); + _yuitest_coverline("build/yui/yui.js", 2482); return cache[key]; }; }; @@ -3208,20 +3193,20 @@ in both Safari and MobileSafari browsers: instance operates. @since 3.5.0 **/ -_yuitest_coverline("build/yui/yui.js", 2517); +_yuitest_coverline("build/yui/yui.js", 2502); Y.getLocation = function () { // It is safer to look this up every time because yui-base is attached to a // YUI instance before a user's config is applied; i.e. `Y.config.win` does // not point the correct window object when this file is loaded. - _yuitest_coverfunc("build/yui/yui.js", "getLocation", 2517); -_yuitest_coverline("build/yui/yui.js", 2521); + _yuitest_coverfunc("build/yui/yui.js", "getLocation", 2502); +_yuitest_coverline("build/yui/yui.js", 2506); var win = Y.config.win; // It is not safe to hold a reference to the `location` object outside the // scope in which it is being used. The WebKit engine used in Safari and // MobileSafari will "disconnect" the `location` object from the `window` // when a page is restored from back/forward history cache. - _yuitest_coverline("build/yui/yui.js", 2527); + _yuitest_coverline("build/yui/yui.js", 2512); return win && win.location; }; @@ -3237,32 +3222,32 @@ use `clone()`. @param {Object} objects* One or more objects to merge. @return {Object} A new merged object. **/ -_yuitest_coverline("build/yui/yui.js", 2542); +_yuitest_coverline("build/yui/yui.js", 2527); Y.merge = function () { - _yuitest_coverfunc("build/yui/yui.js", "merge", 2542); -_yuitest_coverline("build/yui/yui.js", 2543); + _yuitest_coverfunc("build/yui/yui.js", "merge", 2527); +_yuitest_coverline("build/yui/yui.js", 2528); var i = 0, len = arguments.length, result = {}, key, obj; - _yuitest_coverline("build/yui/yui.js", 2549); + _yuitest_coverline("build/yui/yui.js", 2534); for (; i < len; ++i) { - _yuitest_coverline("build/yui/yui.js", 2550); + _yuitest_coverline("build/yui/yui.js", 2535); obj = arguments[i]; - _yuitest_coverline("build/yui/yui.js", 2552); + _yuitest_coverline("build/yui/yui.js", 2537); for (key in obj) { - _yuitest_coverline("build/yui/yui.js", 2553); + _yuitest_coverline("build/yui/yui.js", 2538); if (hasOwn.call(obj, key)) { - _yuitest_coverline("build/yui/yui.js", 2554); + _yuitest_coverline("build/yui/yui.js", 2539); result[key] = obj[key]; } } } - _yuitest_coverline("build/yui/yui.js", 2559); + _yuitest_coverline("build/yui/yui.js", 2544); return result; }; @@ -3300,65 +3285,65 @@ properties are not copied). The following copying modes are available: @return {Function|Object|YUI} The receiver, or the YUI instance if the specified receiver is falsy. **/ -_yuitest_coverline("build/yui/yui.js", 2596); +_yuitest_coverline("build/yui/yui.js", 2581); Y.mix = function(receiver, supplier, overwrite, whitelist, mode, merge) { - _yuitest_coverfunc("build/yui/yui.js", "mix", 2596); -_yuitest_coverline("build/yui/yui.js", 2597); + _yuitest_coverfunc("build/yui/yui.js", "mix", 2581); +_yuitest_coverline("build/yui/yui.js", 2582); var alwaysOverwrite, exists, from, i, key, len, to; // If no supplier is given, we return the receiver. If no receiver is given, // we return Y. Returning Y doesn't make much sense to me, but it's // grandfathered in for backcompat reasons. - _yuitest_coverline("build/yui/yui.js", 2602); + _yuitest_coverline("build/yui/yui.js", 2587); if (!receiver || !supplier) { - _yuitest_coverline("build/yui/yui.js", 2603); + _yuitest_coverline("build/yui/yui.js", 2588); return receiver || Y; } - _yuitest_coverline("build/yui/yui.js", 2606); + _yuitest_coverline("build/yui/yui.js", 2591); if (mode) { // In mode 2 (prototype to prototype and object to object), we recurse // once to do the proto to proto mix. The object to object mix will be // handled later on. - _yuitest_coverline("build/yui/yui.js", 2610); + _yuitest_coverline("build/yui/yui.js", 2595); if (mode === 2) { - _yuitest_coverline("build/yui/yui.js", 2611); + _yuitest_coverline("build/yui/yui.js", 2596); Y.mix(receiver.prototype, supplier.prototype, overwrite, whitelist, 0, merge); } // Depending on which mode is specified, we may be copying from or to // the prototypes of the supplier and receiver. - _yuitest_coverline("build/yui/yui.js", 2617); + _yuitest_coverline("build/yui/yui.js", 2602); from = mode === 1 || mode === 3 ? supplier.prototype : supplier; - _yuitest_coverline("build/yui/yui.js", 2618); + _yuitest_coverline("build/yui/yui.js", 2603); to = mode === 1 || mode === 4 ? receiver.prototype : receiver; // If either the supplier or receiver doesn't actually have a // prototype property, then we could end up with an undefined `from` // or `to`. If that happens, we abort and return the receiver. - _yuitest_coverline("build/yui/yui.js", 2623); + _yuitest_coverline("build/yui/yui.js", 2608); if (!from || !to) { - _yuitest_coverline("build/yui/yui.js", 2624); + _yuitest_coverline("build/yui/yui.js", 2609); return receiver; } } else { - _yuitest_coverline("build/yui/yui.js", 2627); + _yuitest_coverline("build/yui/yui.js", 2612); from = supplier; - _yuitest_coverline("build/yui/yui.js", 2628); + _yuitest_coverline("build/yui/yui.js", 2613); to = receiver; } // If `overwrite` is truthy and `merge` is falsy, then we can skip a // property existence check on each iteration and save some time. - _yuitest_coverline("build/yui/yui.js", 2633); + _yuitest_coverline("build/yui/yui.js", 2618); alwaysOverwrite = overwrite && !merge; - _yuitest_coverline("build/yui/yui.js", 2635); + _yuitest_coverline("build/yui/yui.js", 2620); if (whitelist) { - _yuitest_coverline("build/yui/yui.js", 2636); + _yuitest_coverline("build/yui/yui.js", 2621); for (i = 0, len = whitelist.length; i < len; ++i) { - _yuitest_coverline("build/yui/yui.js", 2637); + _yuitest_coverline("build/yui/yui.js", 2622); key = whitelist[i]; // We call `Object.prototype.hasOwnProperty` instead of calling @@ -3366,19 +3351,19 @@ key = whitelist[i]; // `hasOwnProperty` method may have been overridden or removed. // Also, some native objects don't implement a `hasOwnProperty` // method. - _yuitest_coverline("build/yui/yui.js", 2644); + _yuitest_coverline("build/yui/yui.js", 2629); if (!hasOwn.call(from, key)) { - _yuitest_coverline("build/yui/yui.js", 2645); + _yuitest_coverline("build/yui/yui.js", 2630); continue; } // The `key in to` check here is (sadly) intentional for backwards // compatibility reasons. It prevents undesired shadowing of // prototype members on `to`. - _yuitest_coverline("build/yui/yui.js", 2651); + _yuitest_coverline("build/yui/yui.js", 2636); exists = alwaysOverwrite ? false : key in to; - _yuitest_coverline("build/yui/yui.js", 2653); + _yuitest_coverline("build/yui/yui.js", 2638); if (merge && exists && isObject(to[key], true) && isObject(from[key], true)) { // If we're in merge mode, and the key is present on both @@ -3389,45 +3374,45 @@ if (merge && exists && isObject(to[key], true) // Note: It's intentional that the whitelist isn't passed to the // recursive call here. This is legacy behavior that lots of // code still depends on. - _yuitest_coverline("build/yui/yui.js", 2663); + _yuitest_coverline("build/yui/yui.js", 2648); Y.mix(to[key], from[key], overwrite, null, 0, merge); - } else {_yuitest_coverline("build/yui/yui.js", 2664); + } else {_yuitest_coverline("build/yui/yui.js", 2649); if (overwrite || !exists) { // We're not in merge mode, so we'll only copy the `from` value // to the `to` value if we're in overwrite mode or if the // current key doesn't exist on the `to` object. - _yuitest_coverline("build/yui/yui.js", 2668); + _yuitest_coverline("build/yui/yui.js", 2653); to[key] = from[key]; }} } } else { - _yuitest_coverline("build/yui/yui.js", 2672); + _yuitest_coverline("build/yui/yui.js", 2657); for (key in from) { // The code duplication here is for runtime performance reasons. // Combining whitelist and non-whitelist operations into a single // loop or breaking the shared logic out into a function both result // in worse performance, and Y.mix is critical enough that the byte // tradeoff is worth it. - _yuitest_coverline("build/yui/yui.js", 2678); + _yuitest_coverline("build/yui/yui.js", 2663); if (!hasOwn.call(from, key)) { - _yuitest_coverline("build/yui/yui.js", 2679); + _yuitest_coverline("build/yui/yui.js", 2664); continue; } // The `key in to` check here is (sadly) intentional for backwards // compatibility reasons. It prevents undesired shadowing of // prototype members on `to`. - _yuitest_coverline("build/yui/yui.js", 2685); + _yuitest_coverline("build/yui/yui.js", 2670); exists = alwaysOverwrite ? false : key in to; - _yuitest_coverline("build/yui/yui.js", 2687); + _yuitest_coverline("build/yui/yui.js", 2672); if (merge && exists && isObject(to[key], true) && isObject(from[key], true)) { - _yuitest_coverline("build/yui/yui.js", 2689); + _yuitest_coverline("build/yui/yui.js", 2674); Y.mix(to[key], from[key], overwrite, null, 0, merge); - } else {_yuitest_coverline("build/yui/yui.js", 2690); + } else {_yuitest_coverline("build/yui/yui.js", 2675); if (overwrite || !exists) { - _yuitest_coverline("build/yui/yui.js", 2691); + _yuitest_coverline("build/yui/yui.js", 2676); to[key] = from[key]; }} } @@ -3435,14 +3420,14 @@ to[key] = from[key]; // If this is an IE browser with the JScript enumeration bug, force // enumeration of the buggy properties by making a recursive call with // the buggy properties as the whitelist. - _yuitest_coverline("build/yui/yui.js", 2698); + _yuitest_coverline("build/yui/yui.js", 2683); if (Y.Object._hasEnumBug) { - _yuitest_coverline("build/yui/yui.js", 2699); + _yuitest_coverline("build/yui/yui.js", 2684); Y.mix(to, from, overwrite, Y.Object._forceEnum, mode, merge); } } - _yuitest_coverline("build/yui/yui.js", 2703); + _yuitest_coverline("build/yui/yui.js", 2688); return receiver; }; /** @@ -3459,7 +3444,7 @@ return receiver; * @class Object */ -_yuitest_coverline("build/yui/yui.js", 2719); +_yuitest_coverline("build/yui/yui.js", 2704); var Lang = Y.Lang, hasOwn = Object.prototype.hasOwnProperty, @@ -3482,22 +3467,22 @@ O = Y.Object = Lang._isNative(Object.create) ? function (obj) { // support Object.create()'s second argument (properties). Once we have a // safe fallback for the properties arg, we can stop wrapping // Object.create(). - _yuitest_coverfunc("build/yui/yui.js", "(anonymous 18)", 2735); -_yuitest_coverline("build/yui/yui.js", 2741); + _yuitest_coverfunc("build/yui/yui.js", "(anonymous 18)", 2720); +_yuitest_coverline("build/yui/yui.js", 2726); return Object.create(obj); } : (function () { // Reusable constructor function for the Object.create() shim. - _yuitest_coverfunc("build/yui/yui.js", "(anonymous 19)", 2742); -_yuitest_coverline("build/yui/yui.js", 2744); + _yuitest_coverfunc("build/yui/yui.js", "(anonymous 19)", 2727); +_yuitest_coverline("build/yui/yui.js", 2729); function F() {} // The actual shim. - _yuitest_coverline("build/yui/yui.js", 2747); + _yuitest_coverline("build/yui/yui.js", 2732); return function (obj) { - _yuitest_coverfunc("build/yui/yui.js", "(anonymous 20)", 2747); -_yuitest_coverline("build/yui/yui.js", 2748); + _yuitest_coverfunc("build/yui/yui.js", "(anonymous 20)", 2732); +_yuitest_coverline("build/yui/yui.js", 2733); F.prototype = obj; - _yuitest_coverline("build/yui/yui.js", 2749); + _yuitest_coverline("build/yui/yui.js", 2734); return new F(); }; }()), @@ -3560,8 +3545,8 @@ hasProtoEnumBug = O._hasProtoEnumBug = (function () {}).propertyIsEnumerable('pr * @static */ owns = O.owns = function (obj, key) { - _yuitest_coverfunc("build/yui/yui.js", "owns", 2810); -_yuitest_coverline("build/yui/yui.js", 2811); + _yuitest_coverfunc("build/yui/yui.js", "owns", 2795); +_yuitest_coverline("build/yui/yui.js", 2796); return !!obj && hasOwn.call(obj, key); }; // <-- End of var declarations. @@ -3574,7 +3559,7 @@ return !!obj && hasOwn.call(obj, key); * @return {Boolean} `true` if _key_ exists on _obj_, `false` otherwise. * @static */ -_yuitest_coverline("build/yui/yui.js", 2823); +_yuitest_coverline("build/yui/yui.js", 2808); O.hasKey = owns; /** @@ -3598,56 +3583,56 @@ O.hasKey = owns; * @return {String[]} Array of keys. * @static */ -_yuitest_coverline("build/yui/yui.js", 2846); +_yuitest_coverline("build/yui/yui.js", 2831); O.keys = Lang._isNative(Object.keys) ? Object.keys : function (obj) { - _yuitest_coverfunc("build/yui/yui.js", "keys", 2846); -_yuitest_coverline("build/yui/yui.js", 2847); + _yuitest_coverfunc("build/yui/yui.js", "keys", 2831); +_yuitest_coverline("build/yui/yui.js", 2832); if (!Lang.isObject(obj)) { - _yuitest_coverline("build/yui/yui.js", 2848); + _yuitest_coverline("build/yui/yui.js", 2833); throw new TypeError('Object.keys called on a non-object'); } - _yuitest_coverline("build/yui/yui.js", 2851); + _yuitest_coverline("build/yui/yui.js", 2836); var keys = [], i, key, len; - _yuitest_coverline("build/yui/yui.js", 2854); + _yuitest_coverline("build/yui/yui.js", 2839); if (hasProtoEnumBug && typeof obj === 'function') { - _yuitest_coverline("build/yui/yui.js", 2855); + _yuitest_coverline("build/yui/yui.js", 2840); for (key in obj) { - _yuitest_coverline("build/yui/yui.js", 2856); + _yuitest_coverline("build/yui/yui.js", 2841); if (owns(obj, key) && key !== 'prototype') { - _yuitest_coverline("build/yui/yui.js", 2857); + _yuitest_coverline("build/yui/yui.js", 2842); keys.push(key); } } } else { - _yuitest_coverline("build/yui/yui.js", 2861); + _yuitest_coverline("build/yui/yui.js", 2846); for (key in obj) { - _yuitest_coverline("build/yui/yui.js", 2862); + _yuitest_coverline("build/yui/yui.js", 2847); if (owns(obj, key)) { - _yuitest_coverline("build/yui/yui.js", 2863); + _yuitest_coverline("build/yui/yui.js", 2848); keys.push(key); } } } - _yuitest_coverline("build/yui/yui.js", 2868); + _yuitest_coverline("build/yui/yui.js", 2853); if (hasEnumBug) { - _yuitest_coverline("build/yui/yui.js", 2869); + _yuitest_coverline("build/yui/yui.js", 2854); for (i = 0, len = forceEnum.length; i < len; ++i) { - _yuitest_coverline("build/yui/yui.js", 2870); + _yuitest_coverline("build/yui/yui.js", 2855); key = forceEnum[i]; - _yuitest_coverline("build/yui/yui.js", 2872); + _yuitest_coverline("build/yui/yui.js", 2857); if (owns(obj, key)) { - _yuitest_coverline("build/yui/yui.js", 2873); + _yuitest_coverline("build/yui/yui.js", 2858); keys.push(key); } } } - _yuitest_coverline("build/yui/yui.js", 2878); + _yuitest_coverline("build/yui/yui.js", 2863); return keys; }; @@ -3668,22 +3653,22 @@ return keys; * @return {Array} Array of values. * @static */ -_yuitest_coverline("build/yui/yui.js", 2898); +_yuitest_coverline("build/yui/yui.js", 2883); O.values = function (obj) { - _yuitest_coverfunc("build/yui/yui.js", "values", 2898); -_yuitest_coverline("build/yui/yui.js", 2899); + _yuitest_coverfunc("build/yui/yui.js", "values", 2883); +_yuitest_coverline("build/yui/yui.js", 2884); var keys = O.keys(obj), i = 0, len = keys.length, values = []; - _yuitest_coverline("build/yui/yui.js", 2904); + _yuitest_coverline("build/yui/yui.js", 2889); for (; i < len; ++i) { - _yuitest_coverline("build/yui/yui.js", 2905); + _yuitest_coverline("build/yui/yui.js", 2890); values.push(obj[keys[i]]); } - _yuitest_coverline("build/yui/yui.js", 2908); + _yuitest_coverline("build/yui/yui.js", 2893); return values; }; @@ -3695,15 +3680,15 @@ return values; * @return {Number} The object's size. * @static */ -_yuitest_coverline("build/yui/yui.js", 2919); +_yuitest_coverline("build/yui/yui.js", 2904); O.size = function (obj) { - _yuitest_coverfunc("build/yui/yui.js", "size", 2919); -_yuitest_coverline("build/yui/yui.js", 2920); + _yuitest_coverfunc("build/yui/yui.js", "size", 2904); +_yuitest_coverline("build/yui/yui.js", 2905); try { - _yuitest_coverline("build/yui/yui.js", 2921); + _yuitest_coverline("build/yui/yui.js", 2906); return O.keys(obj).length; } catch (ex) { - _yuitest_coverline("build/yui/yui.js", 2923); + _yuitest_coverline("build/yui/yui.js", 2908); return 0; // Legacy behavior for non-objects. } }; @@ -3718,10 +3703,10 @@ return 0; // Legacy behavior for non-objects. * @return {Boolean} `true` if _obj_ contains _value_, `false` otherwise. * @static */ -_yuitest_coverline("build/yui/yui.js", 2937); +_yuitest_coverline("build/yui/yui.js", 2922); O.hasValue = function (obj, value) { - _yuitest_coverfunc("build/yui/yui.js", "hasValue", 2937); -_yuitest_coverline("build/yui/yui.js", 2938); + _yuitest_coverfunc("build/yui/yui.js", "hasValue", 2922); +_yuitest_coverline("build/yui/yui.js", 2923); return Y.Array.indexOf(O.values(obj), value) > -1; }; @@ -3745,22 +3730,22 @@ return Y.Array.indexOf(O.values(obj), value) > -1; * @chainable * @static */ -_yuitest_coverline("build/yui/yui.js", 2961); +_yuitest_coverline("build/yui/yui.js", 2946); O.each = function (obj, fn, thisObj, proto) { - _yuitest_coverfunc("build/yui/yui.js", "each", 2961); -_yuitest_coverline("build/yui/yui.js", 2962); + _yuitest_coverfunc("build/yui/yui.js", "each", 2946); +_yuitest_coverline("build/yui/yui.js", 2947); var key; - _yuitest_coverline("build/yui/yui.js", 2964); + _yuitest_coverline("build/yui/yui.js", 2949); for (key in obj) { - _yuitest_coverline("build/yui/yui.js", 2965); + _yuitest_coverline("build/yui/yui.js", 2950); if (proto || owns(obj, key)) { - _yuitest_coverline("build/yui/yui.js", 2966); + _yuitest_coverline("build/yui/yui.js", 2951); fn.call(thisObj || Y, obj[key], key, obj); } } - _yuitest_coverline("build/yui/yui.js", 2970); + _yuitest_coverline("build/yui/yui.js", 2955); return Y; }; @@ -3784,25 +3769,25 @@ return Y; * `false` otherwise. * @static */ -_yuitest_coverline("build/yui/yui.js", 2993); +_yuitest_coverline("build/yui/yui.js", 2978); O.some = function (obj, fn, thisObj, proto) { - _yuitest_coverfunc("build/yui/yui.js", "some", 2993); -_yuitest_coverline("build/yui/yui.js", 2994); + _yuitest_coverfunc("build/yui/yui.js", "some", 2978); +_yuitest_coverline("build/yui/yui.js", 2979); var key; - _yuitest_coverline("build/yui/yui.js", 2996); + _yuitest_coverline("build/yui/yui.js", 2981); for (key in obj) { - _yuitest_coverline("build/yui/yui.js", 2997); + _yuitest_coverline("build/yui/yui.js", 2982); if (proto || owns(obj, key)) { - _yuitest_coverline("build/yui/yui.js", 2998); + _yuitest_coverline("build/yui/yui.js", 2983); if (fn.call(thisObj || Y, obj[key], key, obj)) { - _yuitest_coverline("build/yui/yui.js", 2999); + _yuitest_coverline("build/yui/yui.js", 2984); return true; } } } - _yuitest_coverline("build/yui/yui.js", 3004); + _yuitest_coverline("build/yui/yui.js", 2989); return false; }; @@ -3819,27 +3804,27 @@ return false; * undefined if the source is not an object. Returns the source object * if an empty path is provided. */ -_yuitest_coverline("build/yui/yui.js", 3020); +_yuitest_coverline("build/yui/yui.js", 3005); O.getValue = function(o, path) { - _yuitest_coverfunc("build/yui/yui.js", "getValue", 3020); -_yuitest_coverline("build/yui/yui.js", 3021); + _yuitest_coverfunc("build/yui/yui.js", "getValue", 3005); +_yuitest_coverline("build/yui/yui.js", 3006); if (!Lang.isObject(o)) { - _yuitest_coverline("build/yui/yui.js", 3022); + _yuitest_coverline("build/yui/yui.js", 3007); return UNDEFINED; } - _yuitest_coverline("build/yui/yui.js", 3025); + _yuitest_coverline("build/yui/yui.js", 3010); var i, p = Y.Array(path), l = p.length; - _yuitest_coverline("build/yui/yui.js", 3029); + _yuitest_coverline("build/yui/yui.js", 3014); for (i = 0; o !== UNDEFINED && i < l; i++) { - _yuitest_coverline("build/yui/yui.js", 3030); + _yuitest_coverline("build/yui/yui.js", 3015); o = o[p[i]]; } - _yuitest_coverline("build/yui/yui.js", 3033); + _yuitest_coverline("build/yui/yui.js", 3018); return o; }; @@ -3857,34 +3842,34 @@ return o; * @return {Object} The modified object, with the new sub value set, or * undefined, if the path was invalid. */ -_yuitest_coverline("build/yui/yui.js", 3050); +_yuitest_coverline("build/yui/yui.js", 3035); O.setValue = function(o, path, val) { - _yuitest_coverfunc("build/yui/yui.js", "setValue", 3050); -_yuitest_coverline("build/yui/yui.js", 3051); + _yuitest_coverfunc("build/yui/yui.js", "setValue", 3035); +_yuitest_coverline("build/yui/yui.js", 3036); var i, p = Y.Array(path), leafIdx = p.length - 1, ref = o; - _yuitest_coverline("build/yui/yui.js", 3056); + _yuitest_coverline("build/yui/yui.js", 3041); if (leafIdx >= 0) { - _yuitest_coverline("build/yui/yui.js", 3057); + _yuitest_coverline("build/yui/yui.js", 3042); for (i = 0; ref !== UNDEFINED && i < leafIdx; i++) { - _yuitest_coverline("build/yui/yui.js", 3058); + _yuitest_coverline("build/yui/yui.js", 3043); ref = ref[p[i]]; } - _yuitest_coverline("build/yui/yui.js", 3061); + _yuitest_coverline("build/yui/yui.js", 3046); if (ref !== UNDEFINED) { - _yuitest_coverline("build/yui/yui.js", 3062); + _yuitest_coverline("build/yui/yui.js", 3047); ref[p[i]] = val; } else { - _yuitest_coverline("build/yui/yui.js", 3064); + _yuitest_coverline("build/yui/yui.js", 3049); return UNDEFINED; } } - _yuitest_coverline("build/yui/yui.js", 3068); + _yuitest_coverline("build/yui/yui.js", 3053); return o; }; @@ -3897,10 +3882,10 @@ return o; * @static * @since 3.2.0 */ -_yuitest_coverline("build/yui/yui.js", 3080); +_yuitest_coverline("build/yui/yui.js", 3065); O.isEmpty = function (obj) { - _yuitest_coverfunc("build/yui/yui.js", "isEmpty", 3080); -_yuitest_coverline("build/yui/yui.js", 3081); + _yuitest_coverfunc("build/yui/yui.js", "isEmpty", 3065); +_yuitest_coverline("build/yui/yui.js", 3066); return !O.keys(Object(obj)).length; }; /** @@ -3936,19 +3921,19 @@ return !O.keys(Object(obj)).length; * @param {String} [subUA=navigator.userAgent] UA string to parse * @return {Object} The Y.UA object */ -_yuitest_coverline("build/yui/yui.js", 3116); +_yuitest_coverline("build/yui/yui.js", 3101); YUI.Env.parseUA = function(subUA) { - _yuitest_coverfunc("build/yui/yui.js", "parseUA", 3116); -_yuitest_coverline("build/yui/yui.js", 3118); + _yuitest_coverfunc("build/yui/yui.js", "parseUA", 3101); +_yuitest_coverline("build/yui/yui.js", 3103); var numberify = function(s) { - _yuitest_coverfunc("build/yui/yui.js", "numberify", 3118); -_yuitest_coverline("build/yui/yui.js", 3119); + _yuitest_coverfunc("build/yui/yui.js", "numberify", 3103); +_yuitest_coverline("build/yui/yui.js", 3104); var c = 0; - _yuitest_coverline("build/yui/yui.js", 3120); + _yuitest_coverline("build/yui/yui.js", 3105); return parseFloat(s.replace(/\./g, function() { - _yuitest_coverfunc("build/yui/yui.js", "(anonymous 22)", 3120); -_yuitest_coverline("build/yui/yui.js", 3121); + _yuitest_coverfunc("build/yui/yui.js", "(anonymous 22)", 3105); +_yuitest_coverline("build/yui/yui.js", 3106); return (c++ === 1) ? '' : '.'; })); }, @@ -4183,250 +4168,250 @@ return (c++ === 1) ? '' : '.'; * @type String * @static */ - _yuitest_coverline("build/yui/yui.js", 3355); + _yuitest_coverline("build/yui/yui.js", 3340); o.userAgent = ua; - _yuitest_coverline("build/yui/yui.js", 3358); + _yuitest_coverline("build/yui/yui.js", 3343); o.secure = href && (href.toLowerCase().indexOf('https') === 0); - _yuitest_coverline("build/yui/yui.js", 3360); + _yuitest_coverline("build/yui/yui.js", 3345); if (ua) { - _yuitest_coverline("build/yui/yui.js", 3362); + _yuitest_coverline("build/yui/yui.js", 3347); if ((/windows|win32/i).test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3363); + _yuitest_coverline("build/yui/yui.js", 3348); o.os = 'windows'; - } else {_yuitest_coverline("build/yui/yui.js", 3364); + } else {_yuitest_coverline("build/yui/yui.js", 3349); if ((/macintosh|mac_powerpc/i).test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3365); + _yuitest_coverline("build/yui/yui.js", 3350); o.os = 'macintosh'; - } else {_yuitest_coverline("build/yui/yui.js", 3366); + } else {_yuitest_coverline("build/yui/yui.js", 3351); if ((/android/i).test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3367); + _yuitest_coverline("build/yui/yui.js", 3352); o.os = 'android'; - } else {_yuitest_coverline("build/yui/yui.js", 3368); + } else {_yuitest_coverline("build/yui/yui.js", 3353); if ((/symbos/i).test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3369); + _yuitest_coverline("build/yui/yui.js", 3354); o.os = 'symbos'; - } else {_yuitest_coverline("build/yui/yui.js", 3370); + } else {_yuitest_coverline("build/yui/yui.js", 3355); if ((/linux/i).test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3371); + _yuitest_coverline("build/yui/yui.js", 3356); o.os = 'linux'; - } else {_yuitest_coverline("build/yui/yui.js", 3372); + } else {_yuitest_coverline("build/yui/yui.js", 3357); if ((/rhino/i).test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3373); + _yuitest_coverline("build/yui/yui.js", 3358); o.os = 'rhino'; }}}}}} // Modern KHTML browsers should qualify as Safari X-Grade - _yuitest_coverline("build/yui/yui.js", 3377); + _yuitest_coverline("build/yui/yui.js", 3362); if ((/KHTML/).test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3378); + _yuitest_coverline("build/yui/yui.js", 3363); o.webkit = 1; } - _yuitest_coverline("build/yui/yui.js", 3380); + _yuitest_coverline("build/yui/yui.js", 3365); if ((/IEMobile|XBLWP7/).test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3381); + _yuitest_coverline("build/yui/yui.js", 3366); o.mobile = 'windows'; } - _yuitest_coverline("build/yui/yui.js", 3383); + _yuitest_coverline("build/yui/yui.js", 3368); if ((/Fennec/).test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3384); + _yuitest_coverline("build/yui/yui.js", 3369); o.mobile = 'gecko'; } // Modern WebKit browsers are at least X-Grade - _yuitest_coverline("build/yui/yui.js", 3387); + _yuitest_coverline("build/yui/yui.js", 3372); m = ua.match(/AppleWebKit\/([^\s]*)/); - _yuitest_coverline("build/yui/yui.js", 3388); + _yuitest_coverline("build/yui/yui.js", 3373); if (m && m[1]) { - _yuitest_coverline("build/yui/yui.js", 3389); + _yuitest_coverline("build/yui/yui.js", 3374); o.webkit = numberify(m[1]); - _yuitest_coverline("build/yui/yui.js", 3390); + _yuitest_coverline("build/yui/yui.js", 3375); o.safari = o.webkit; - _yuitest_coverline("build/yui/yui.js", 3392); + _yuitest_coverline("build/yui/yui.js", 3377); if (/PhantomJS/.test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3393); + _yuitest_coverline("build/yui/yui.js", 3378); m = ua.match(/PhantomJS\/([^\s]*)/); - _yuitest_coverline("build/yui/yui.js", 3394); + _yuitest_coverline("build/yui/yui.js", 3379); if (m && m[1]) { - _yuitest_coverline("build/yui/yui.js", 3395); + _yuitest_coverline("build/yui/yui.js", 3380); o.phantomjs = numberify(m[1]); } } // Mobile browser check - _yuitest_coverline("build/yui/yui.js", 3400); + _yuitest_coverline("build/yui/yui.js", 3385); if (/ Mobile\//.test(ua) || (/iPad|iPod|iPhone/).test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3401); + _yuitest_coverline("build/yui/yui.js", 3386); o.mobile = 'Apple'; // iPhone or iPod Touch - _yuitest_coverline("build/yui/yui.js", 3403); + _yuitest_coverline("build/yui/yui.js", 3388); m = ua.match(/OS ([^\s]*)/); - _yuitest_coverline("build/yui/yui.js", 3404); + _yuitest_coverline("build/yui/yui.js", 3389); if (m && m[1]) { - _yuitest_coverline("build/yui/yui.js", 3405); + _yuitest_coverline("build/yui/yui.js", 3390); m = numberify(m[1].replace('_', '.')); } - _yuitest_coverline("build/yui/yui.js", 3407); + _yuitest_coverline("build/yui/yui.js", 3392); o.ios = m; - _yuitest_coverline("build/yui/yui.js", 3408); + _yuitest_coverline("build/yui/yui.js", 3393); o.os = 'ios'; - _yuitest_coverline("build/yui/yui.js", 3409); + _yuitest_coverline("build/yui/yui.js", 3394); o.ipad = o.ipod = o.iphone = 0; - _yuitest_coverline("build/yui/yui.js", 3411); + _yuitest_coverline("build/yui/yui.js", 3396); m = ua.match(/iPad|iPod|iPhone/); - _yuitest_coverline("build/yui/yui.js", 3412); + _yuitest_coverline("build/yui/yui.js", 3397); if (m && m[0]) { - _yuitest_coverline("build/yui/yui.js", 3413); + _yuitest_coverline("build/yui/yui.js", 3398); o[m[0].toLowerCase()] = o.ios; } } else { - _yuitest_coverline("build/yui/yui.js", 3416); + _yuitest_coverline("build/yui/yui.js", 3401); m = ua.match(/NokiaN[^\/]*|webOS\/\d\.\d/); - _yuitest_coverline("build/yui/yui.js", 3417); + _yuitest_coverline("build/yui/yui.js", 3402); if (m) { // Nokia N-series, webOS, ex: NokiaN95 - _yuitest_coverline("build/yui/yui.js", 3419); + _yuitest_coverline("build/yui/yui.js", 3404); o.mobile = m[0]; } - _yuitest_coverline("build/yui/yui.js", 3421); + _yuitest_coverline("build/yui/yui.js", 3406); if (/webOS/.test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3422); + _yuitest_coverline("build/yui/yui.js", 3407); o.mobile = 'WebOS'; - _yuitest_coverline("build/yui/yui.js", 3423); + _yuitest_coverline("build/yui/yui.js", 3408); m = ua.match(/webOS\/([^\s]*);/); - _yuitest_coverline("build/yui/yui.js", 3424); + _yuitest_coverline("build/yui/yui.js", 3409); if (m && m[1]) { - _yuitest_coverline("build/yui/yui.js", 3425); + _yuitest_coverline("build/yui/yui.js", 3410); o.webos = numberify(m[1]); } } - _yuitest_coverline("build/yui/yui.js", 3428); + _yuitest_coverline("build/yui/yui.js", 3413); if (/ Android/.test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3429); + _yuitest_coverline("build/yui/yui.js", 3414); if (/Mobile/.test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3430); + _yuitest_coverline("build/yui/yui.js", 3415); o.mobile = 'Android'; } - _yuitest_coverline("build/yui/yui.js", 3432); + _yuitest_coverline("build/yui/yui.js", 3417); m = ua.match(/Android ([^\s]*);/); - _yuitest_coverline("build/yui/yui.js", 3433); + _yuitest_coverline("build/yui/yui.js", 3418); if (m && m[1]) { - _yuitest_coverline("build/yui/yui.js", 3434); + _yuitest_coverline("build/yui/yui.js", 3419); o.android = numberify(m[1]); } } - _yuitest_coverline("build/yui/yui.js", 3438); + _yuitest_coverline("build/yui/yui.js", 3423); if (/Silk/.test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3439); + _yuitest_coverline("build/yui/yui.js", 3424); m = ua.match(/Silk\/([^\s]*)\)/); - _yuitest_coverline("build/yui/yui.js", 3440); + _yuitest_coverline("build/yui/yui.js", 3425); if (m && m[1]) { - _yuitest_coverline("build/yui/yui.js", 3441); + _yuitest_coverline("build/yui/yui.js", 3426); o.silk = numberify(m[1]); } - _yuitest_coverline("build/yui/yui.js", 3443); + _yuitest_coverline("build/yui/yui.js", 3428); if (!o.android) { - _yuitest_coverline("build/yui/yui.js", 3444); + _yuitest_coverline("build/yui/yui.js", 3429); o.android = 2.34; //Hack for desktop mode in Kindle - _yuitest_coverline("build/yui/yui.js", 3445); + _yuitest_coverline("build/yui/yui.js", 3430); o.os = 'Android'; } - _yuitest_coverline("build/yui/yui.js", 3447); + _yuitest_coverline("build/yui/yui.js", 3432); if (/Accelerated=true/.test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3448); + _yuitest_coverline("build/yui/yui.js", 3433); o.accel = true; } } } - _yuitest_coverline("build/yui/yui.js", 3453); + _yuitest_coverline("build/yui/yui.js", 3438); m = ua.match(/(Chrome|CrMo|CriOS)\/([^\s]*)/); - _yuitest_coverline("build/yui/yui.js", 3454); + _yuitest_coverline("build/yui/yui.js", 3439); if (m && m[1] && m[2]) { - _yuitest_coverline("build/yui/yui.js", 3455); + _yuitest_coverline("build/yui/yui.js", 3440); o.chrome = numberify(m[2]); // Chrome - _yuitest_coverline("build/yui/yui.js", 3456); + _yuitest_coverline("build/yui/yui.js", 3441); o.safari = 0; //Reset safari back to 0 - _yuitest_coverline("build/yui/yui.js", 3457); + _yuitest_coverline("build/yui/yui.js", 3442); if (m[1] === 'CrMo') { - _yuitest_coverline("build/yui/yui.js", 3458); + _yuitest_coverline("build/yui/yui.js", 3443); o.mobile = 'chrome'; } } else { - _yuitest_coverline("build/yui/yui.js", 3461); + _yuitest_coverline("build/yui/yui.js", 3446); m = ua.match(/AdobeAIR\/([^\s]*)/); - _yuitest_coverline("build/yui/yui.js", 3462); + _yuitest_coverline("build/yui/yui.js", 3447); if (m) { - _yuitest_coverline("build/yui/yui.js", 3463); + _yuitest_coverline("build/yui/yui.js", 3448); o.air = m[0]; // Adobe AIR 1.0 or better } } } - _yuitest_coverline("build/yui/yui.js", 3468); + _yuitest_coverline("build/yui/yui.js", 3453); if (!o.webkit) { // not webkit // @todo check Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1316; fi; U; ssr) - _yuitest_coverline("build/yui/yui.js", 3470); + _yuitest_coverline("build/yui/yui.js", 3455); if (/Opera/.test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3471); + _yuitest_coverline("build/yui/yui.js", 3456); m = ua.match(/Opera[\s\/]([^\s]*)/); - _yuitest_coverline("build/yui/yui.js", 3472); + _yuitest_coverline("build/yui/yui.js", 3457); if (m && m[1]) { - _yuitest_coverline("build/yui/yui.js", 3473); + _yuitest_coverline("build/yui/yui.js", 3458); o.opera = numberify(m[1]); } - _yuitest_coverline("build/yui/yui.js", 3475); + _yuitest_coverline("build/yui/yui.js", 3460); m = ua.match(/Version\/([^\s]*)/); - _yuitest_coverline("build/yui/yui.js", 3476); + _yuitest_coverline("build/yui/yui.js", 3461); if (m && m[1]) { - _yuitest_coverline("build/yui/yui.js", 3477); + _yuitest_coverline("build/yui/yui.js", 3462); o.opera = numberify(m[1]); // opera 10+ } - _yuitest_coverline("build/yui/yui.js", 3480); + _yuitest_coverline("build/yui/yui.js", 3465); if (/Opera Mobi/.test(ua)) { - _yuitest_coverline("build/yui/yui.js", 3481); + _yuitest_coverline("build/yui/yui.js", 3466); o.mobile = 'opera'; - _yuitest_coverline("build/yui/yui.js", 3482); + _yuitest_coverline("build/yui/yui.js", 3467); m = ua.replace('Opera Mobi', '').match(/Opera ([^\s]*)/); - _yuitest_coverline("build/yui/yui.js", 3483); + _yuitest_coverline("build/yui/yui.js", 3468); if (m && m[1]) { - _yuitest_coverline("build/yui/yui.js", 3484); + _yuitest_coverline("build/yui/yui.js", 3469); o.opera = numberify(m[1]); } } - _yuitest_coverline("build/yui/yui.js", 3487); + _yuitest_coverline("build/yui/yui.js", 3472); m = ua.match(/Opera Mini[^;]*/); - _yuitest_coverline("build/yui/yui.js", 3489); + _yuitest_coverline("build/yui/yui.js", 3474); if (m) { - _yuitest_coverline("build/yui/yui.js", 3490); + _yuitest_coverline("build/yui/yui.js", 3475); o.mobile = m[0]; // ex: Opera Mini/2.0.4509/1316 } } else { // not opera or webkit - _yuitest_coverline("build/yui/yui.js", 3493); + _yuitest_coverline("build/yui/yui.js", 3478); m = ua.match(/MSIE\s([^;]*)/); - _yuitest_coverline("build/yui/yui.js", 3494); + _yuitest_coverline("build/yui/yui.js", 3479); if (m && m[1]) { - _yuitest_coverline("build/yui/yui.js", 3495); + _yuitest_coverline("build/yui/yui.js", 3480); o.ie = numberify(m[1]); } else { // not opera, webkit, or ie - _yuitest_coverline("build/yui/yui.js", 3497); + _yuitest_coverline("build/yui/yui.js", 3482); m = ua.match(/Gecko\/([^\s]*)/); - _yuitest_coverline("build/yui/yui.js", 3498); + _yuitest_coverline("build/yui/yui.js", 3483); if (m) { - _yuitest_coverline("build/yui/yui.js", 3499); + _yuitest_coverline("build/yui/yui.js", 3484); o.gecko = 1; // Gecko detected, look for revision - _yuitest_coverline("build/yui/yui.js", 3500); + _yuitest_coverline("build/yui/yui.js", 3485); m = ua.match(/rv:([^\s\)]*)/); - _yuitest_coverline("build/yui/yui.js", 3501); + _yuitest_coverline("build/yui/yui.js", 3486); if (m && m[1]) { - _yuitest_coverline("build/yui/yui.js", 3502); + _yuitest_coverline("build/yui/yui.js", 3487); o.gecko = numberify(m[1]); } } @@ -4437,40 +4422,40 @@ o.gecko = numberify(m[1]); //Check for known properties to tell if touch events are enabled on this device or if //the number of MSPointer touchpoints on this device is greater than 0. - _yuitest_coverline("build/yui/yui.js", 3512); + _yuitest_coverline("build/yui/yui.js", 3497); if (win && nav && !(o.chrome && o.chrome < 6)) { - _yuitest_coverline("build/yui/yui.js", 3513); + _yuitest_coverline("build/yui/yui.js", 3498); o.touchEnabled = (("ontouchstart" in win) || (("msMaxTouchPoints" in nav) && (nav.msMaxTouchPoints > 0))); } //It was a parsed UA, do not assign the global value. - _yuitest_coverline("build/yui/yui.js", 3517); + _yuitest_coverline("build/yui/yui.js", 3502); if (!subUA) { - _yuitest_coverline("build/yui/yui.js", 3519); + _yuitest_coverline("build/yui/yui.js", 3504); if (typeof process === 'object') { - _yuitest_coverline("build/yui/yui.js", 3521); + _yuitest_coverline("build/yui/yui.js", 3506); if (process.versions && process.versions.node) { //NodeJS - _yuitest_coverline("build/yui/yui.js", 3523); + _yuitest_coverline("build/yui/yui.js", 3508); o.os = process.platform; - _yuitest_coverline("build/yui/yui.js", 3524); + _yuitest_coverline("build/yui/yui.js", 3509); o.nodejs = numberify(process.versions.node); } } - _yuitest_coverline("build/yui/yui.js", 3528); + _yuitest_coverline("build/yui/yui.js", 3513); YUI.Env.UA = o; } - _yuitest_coverline("build/yui/yui.js", 3532); + _yuitest_coverline("build/yui/yui.js", 3517); return o; }; -_yuitest_coverline("build/yui/yui.js", 3536); +_yuitest_coverline("build/yui/yui.js", 3521); Y.UA = YUI.Env.UA || YUI.Env.parseUA(); /** @@ -4493,52 +4478,52 @@ non-numeric characters, like `"535.8.beta"`, may produce unexpected results. @return -1 if _a_ is lower than _b_, 0 if they're equivalent, 1 if _a_ is higher than _b_. **/ -_yuitest_coverline("build/yui/yui.js", 3558); +_yuitest_coverline("build/yui/yui.js", 3543); Y.UA.compareVersions = function (a, b) { - _yuitest_coverfunc("build/yui/yui.js", "compareVersions", 3558); -_yuitest_coverline("build/yui/yui.js", 3559); + _yuitest_coverfunc("build/yui/yui.js", "compareVersions", 3543); +_yuitest_coverline("build/yui/yui.js", 3544); var aPart, aParts, bPart, bParts, i, len; - _yuitest_coverline("build/yui/yui.js", 3561); + _yuitest_coverline("build/yui/yui.js", 3546); if (a === b) { - _yuitest_coverline("build/yui/yui.js", 3562); + _yuitest_coverline("build/yui/yui.js", 3547); return 0; } - _yuitest_coverline("build/yui/yui.js", 3565); + _yuitest_coverline("build/yui/yui.js", 3550); aParts = (a + '').split('.'); - _yuitest_coverline("build/yui/yui.js", 3566); + _yuitest_coverline("build/yui/yui.js", 3551); bParts = (b + '').split('.'); - _yuitest_coverline("build/yui/yui.js", 3568); + _yuitest_coverline("build/yui/yui.js", 3553); for (i = 0, len = Math.max(aParts.length, bParts.length); i < len; ++i) { - _yuitest_coverline("build/yui/yui.js", 3569); + _yuitest_coverline("build/yui/yui.js", 3554); aPart = parseInt(aParts[i], 10); - _yuitest_coverline("build/yui/yui.js", 3570); + _yuitest_coverline("build/yui/yui.js", 3555); bPart = parseInt(bParts[i], 10); - _yuitest_coverline("build/yui/yui.js", 3572); + _yuitest_coverline("build/yui/yui.js", 3557); isNaN(aPart) && (aPart = 0); - _yuitest_coverline("build/yui/yui.js", 3573); + _yuitest_coverline("build/yui/yui.js", 3558); isNaN(bPart) && (bPart = 0); - _yuitest_coverline("build/yui/yui.js", 3575); + _yuitest_coverline("build/yui/yui.js", 3560); if (aPart < bPart) { - _yuitest_coverline("build/yui/yui.js", 3576); + _yuitest_coverline("build/yui/yui.js", 3561); return -1; } - _yuitest_coverline("build/yui/yui.js", 3579); + _yuitest_coverline("build/yui/yui.js", 3564); if (aPart > bPart) { - _yuitest_coverline("build/yui/yui.js", 3580); + _yuitest_coverline("build/yui/yui.js", 3565); return 1; } } - _yuitest_coverline("build/yui/yui.js", 3584); + _yuitest_coverline("build/yui/yui.js", 3569); return 0; }; -_yuitest_coverline("build/yui/yui.js", 3586); +_yuitest_coverline("build/yui/yui.js", 3571); YUI.Env.aliases = { "anim": ["anim-base","anim-color","anim-curve","anim-easing","anim-node-plugin","anim-scroll","anim-xy"], "anim-shape-transform": ["anim-shape"], diff --git a/build/yui/yui-debug.js b/build/yui/yui-debug.js index c437461fd50..efb49cc1449 100644 --- a/build/yui/yui-debug.js +++ b/build/yui/yui-debug.js @@ -2010,20 +2010,6 @@ relying on ES5 functionality, even when ES5 functionality is available. **/ /** -<<<<<<< HEAD -Event to wait for before executing the `use()` callback. - -The following events are supported: - - - available - - contentready - - domready - - load - -The event may be specified as a string or as an object hash that provides -additional event configuration, as illustrated in the example below. - -======= * Leverage native JSON stringify if the browser has a native * implementation. In general, this is a good idea. See the Known Issues * section in the JSON user guide for caveats. The default value is true @@ -2052,7 +2038,6 @@ Delay the `use` callback until a specific event has passed (`load`, `domready`, @property delayUntil @type String|Object @since 3.6.0 ->>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4 @example You can use `load` or `domready` strings by default: diff --git a/build/yui/yui.js b/build/yui/yui.js index 85f9226440f..8bacbcaf860 100644 --- a/build/yui/yui.js +++ b/build/yui/yui.js @@ -1671,20 +1671,6 @@ relying on ES5 functionality, even when ES5 functionality is available. **/ /** -<<<<<<< HEAD -Event to wait for before executing the `use()` callback. - -The following events are supported: - - - available - - contentready - - domready - - load - -The event may be specified as a string or as an object hash that provides -additional event configuration, as illustrated in the example below. - -======= * Leverage native JSON stringify if the browser has a native * implementation. In general, this is a good idea. See the Known Issues * section in the JSON user guide for caveats. The default value is true @@ -1713,7 +1699,6 @@ Delay the `use` callback until a specific event has passed (`load`, `domready`, @property delayUntil @type String|Object @since 3.6.0 ->>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4 @example You can use `load` or `domready` strings by default: diff --git a/src/simpleyui/js/concat.js b/src/simpleyui/js/concat.js index f6e85daf6a6..46d320820d8 100644 --- a/src/simpleyui/js/concat.js +++ b/src/simpleyui/js/concat.js @@ -2010,20 +2010,6 @@ relying on ES5 functionality, even when ES5 functionality is available. **/ /** -<<<<<<< HEAD -Event to wait for before executing the `use()` callback. - -The following events are supported: - - - available - - contentready - - domready - - load - -The event may be specified as a string or as an object hash that provides -additional event configuration, as illustrated in the example below. - -======= * Leverage native JSON stringify if the browser has a native * implementation. In general, this is a good idea. See the Known Issues * section in the JSON user guide for caveats. The default value is true @@ -2052,7 +2038,6 @@ Delay the `use` callback until a specific event has passed (`load`, `domready`, @property delayUntil @type String|Object @since 3.6.0 ->>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4 @example You can use `load` or `domready` strings by default: diff --git a/src/yui/js/yui.js b/src/yui/js/yui.js index f8a0d0dee71..053d80ac70e 100644 --- a/src/yui/js/yui.js +++ b/src/yui/js/yui.js @@ -2010,20 +2010,6 @@ relying on ES5 functionality, even when ES5 functionality is available. **/ /** -<<<<<<< HEAD -Event to wait for before executing the `use()` callback. - -The following events are supported: - - - available - - contentready - - domready - - load - -The event may be specified as a string or as an object hash that provides -additional event configuration, as illustrated in the example below. - -======= * Leverage native JSON stringify if the browser has a native * implementation. In general, this is a good idea. See the Known Issues * section in the JSON user guide for caveats. The default value is true @@ -2052,7 +2038,6 @@ Delay the `use` callback until a specific event has passed (`load`, `domready`, @property delayUntil @type String|Object @since 3.6.0 ->>>>>>> 1b3b9bce26c91c9be5440b38b03d2a95fbf83ba4 @example You can use `load` or `domready` strings by default: