diff -r 322d0feea350 -r 89ef5ed3c48b src/cm/media/js/lib/yui/yui_3.10.3/build/base-base/base-base-debug.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cm/media/js/lib/yui/yui_3.10.3/build/base-base/base-base-debug.js Tue Jul 16 14:29:46 2013 +0200 @@ -0,0 +1,177 @@ +/* +YUI 3.10.3 (build 2fb5187) +Copyright 2013 Yahoo! Inc. All rights reserved. +Licensed under the BSD License. +http://yuilibrary.com/license/ +*/ + +YUI.add('base-base', function (Y, NAME) { + + /** + * The base module provides the Base class, which objects requiring attribute and custom event support can extend. + * The module also provides two ways to reuse code - It augments Base with the Plugin.Host interface which provides + * plugin support and also provides the BaseCore.build method which provides a way to build custom classes using extensions. + * + * @module base + */ + + /** + * The base-base submodule provides the Base class without the Plugin support, provided by Plugin.Host, + * and without the extension support provided by BaseCore.build. + * + * @module base + * @submodule base-base + */ + + var AttributeCore = Y.AttributeCore, + AttributeExtras = Y.AttributeExtras, + BaseCore = Y.BaseCore, + BaseObservable = Y.BaseObservable; + + /** + *

+ * A base class which objects requiring attributes and custom event support can + * extend. Base also handles the chaining of initializer and destructor methods across + * the hierarchy as part of object construction and destruction. Additionally, attributes configured + * through the static ATTRS property for each class + * in the hierarchy will be initialized by Base. + *

+ * + *

+ * The static NAME property of each class extending + * from Base will be used as the identifier for the class, and is used by Base to prefix + * all events fired by instances of that class. + *

+ * + * @class Base + * @constructor + * @uses BaseCore + * @uses BaseObservable + * @uses AttributeCore + * @uses AttributeObservable + * @uses AttributeExtras + * @uses EventTarget + * + * @param {Object} config Object with configuration property name/value pairs. The object can be + * used to provide default values for the objects published attributes. + * + *

+ * The config object can also contain the following non-attribute properties, providing a convenient + * way to configure events listeners and plugins for the instance, as part of the constructor call: + *

+ * + *
+ *
on
+ *
An event name to listener function map, to register event listeners for the "on" moment of the event. + * A constructor convenience property for the on method.
+ *
after
+ *
An event name to listener function map, to register event listeners for the "after" moment of the event. + * A constructor convenience property for the after method.
+ *
bubbleTargets
+ *
An object, or array of objects, to register as bubble targets for bubbled events fired by this instance. + * A constructor convenience property for the addTarget method.
+ *
plugins
+ *
A plugin, or array of plugins to be plugged into the instance (see PluginHost's plug method for signature details). + * A constructor convenience property for the plug method.
+ *
+ */ + function Base() { + BaseCore.apply(this, arguments); + BaseObservable.apply(this, arguments); + AttributeExtras.apply(this, arguments); + } + + /** + * The list of properties which can be configured for + * each attribute (e.g. setter, getter, writeOnce, readOnly etc.) + * + * @property _ATTR_CFG + * @type Array + * @static + * @private + */ + Base._ATTR_CFG = BaseCore._ATTR_CFG.concat(BaseObservable._ATTR_CFG); + + /** + * The array of non-attribute configuration properties supported by this class. + * + * `Base` supports "on", "after", "plugins" and "bubbleTargets" properties, + * which are not set up as attributes. + * + * This property is primarily required so that when + * `_allowAdHocAttrs` is enabled by + * a class, non-attribute configurations don't get added as ad-hoc attributes. + * + * @property _NON_ATTRS_CFG + * @type Array + * @static + * @private + */ + Base._NON_ATTRS_CFG = BaseCore._NON_ATTRS_CFG.concat(BaseObservable._NON_ATTRS_CFG); + + /** + *

+ * The string to be used to identify instances of + * this class, for example in prefixing events. + *

+ *

+ * Classes extending Base, should define their own + * static NAME property, which should be camelCase by + * convention (e.g. MyClass.NAME = "myClass";). + *

+ * @property NAME + * @type String + * @static + */ + Base.NAME = 'base'; + + /** + * The default set of attributes which will be available for instances of this class, and + * their configuration. In addition to the configuration properties listed by + * Attribute's addAttr method, the attribute + * can also be configured with a "cloneDefaultValue" property, which defines how the statically + * defined value field should be protected ("shallow", "deep" and false are supported values). + * + * By default if the value is an object literal or an array it will be "shallow" cloned, to + * protect the default value. + * + * @property ATTRS + * @type Object + * @static + */ + Base.ATTRS = AttributeCore.protectAttrs(BaseCore.ATTRS); + + /** + Provides a way to safely modify a `Y.Base` subclass' static `ATTRS` after + the class has been defined or created. + + Base-based classes cache information about the class hierarchy in order to + efficiently create instances. This cache includes includes the aggregated + `ATTRS` configs. If the static `ATTRS` configs need to be modified after the + class has been defined or create, then use this method which will make sure + to clear any cached data before making any modifications. + + @method modifyAttrs + @param {Function} [ctor] The constructor function whose `ATTRS` should be + modified. If a `ctor` function is not specified, then `this` is assumed + to be the constructor which hosts the `ATTRS`. + @param {Object} configs The collection of `ATTRS` configs to mix with the + existing attribute configurations. + @static + @since 3.10.0 + **/ + Base.modifyAttrs = BaseCore.modifyAttrs; + + Y.mix(Base, BaseCore, false, null, 1); + Y.mix(Base, AttributeExtras, false, null, 1); + + // Needs to be `true`, to overwrite methods from `BaseCore`. + Y.mix(Base, BaseObservable, true, null, 1); + + // Fix constructor + Base.prototype.constructor = Base; + + Y.Base = Base; + + +}, '3.10.3', {"requires": ["attribute-base", "base-core", "base-observable"]});