yui-rails 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,15 @@
1
+ ### 0.4.0 - 2013-03-26
2
+
3
+ * Upgrade to YUI 3.9.1 (Benjamin Fleischer)
4
+
1
5
  ### 0.3.0 - 2013-02-26
2
6
 
3
- * Update asset pipeline check
4
- * add rake yui_rails:version
5
- * add tests
6
- * update code to update YUI library version from the CDN
7
- * Add Benjamin Fleischer to authors
7
+ * (Benjamin Fleischer)
8
+ * Update asset pipeline check
9
+ * Add rake yui_rails:version
10
+ * Add tests
11
+ * Update code to update YUI library version from the CDN
12
+ * Add Benjamin Fleischer to authors
8
13
 
9
14
  ### Version 0.2.0
10
15
  * Upgrade to YUI 3.8.1 (Benjamin Fleischer)
@@ -1,8 +1,8 @@
1
1
  module YUI
2
2
  module Rails
3
3
 
4
- VERSION = '0.3.0'
5
- YUI_VERSION = '3.8.1'
4
+ VERSION = '0.4.0'
5
+ YUI_VERSION = '3.9.1'
6
6
 
7
7
  end
8
8
  end
@@ -105,3 +105,10 @@ Connecting to database specified by database.yml
105
105
  Served asset /yui.js - 200 OK (16ms)
106
106
  Started GET "/assets/yui-min.js" for 127.0.0.1 at 2013-02-28 13:30:25 -0600
107
107
  Served asset /yui-min.js - 200 OK (5ms)
108
+ Started GET "/assets/yui-min.js" for 127.0.0.1 at 2013-03-29 09:20:24 -0500
109
+ Connecting to database specified by database.yml
110
+ Compiled yui-min.js (0ms) (pid 71098)
111
+ Served asset /yui-min.js - 200 OK (12ms)
112
+ Started GET "/assets/yui.js" for 127.0.0.1 at 2013-03-29 09:20:25 -0500
113
+ Compiled yui.js (2ms) (pid 71098)
114
+ Served asset /yui.js - 200 OK (49ms)
@@ -1,4 +1,4 @@
1
- /* YUI 3.8.1 (build 5795) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
1
+ /* YUI 3.9.1 (build 5852) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
2
2
  /**
3
3
  The YUI module contains the components required for building the YUI seed file.
4
4
  This includes the script loading mechanism, a simple queue, and the core
@@ -9,6 +9,7 @@ utilities for the library.
9
9
  @submodule yui-base
10
10
  **/
11
11
 
12
+ /*jshint eqeqeq: false*/
12
13
  if (typeof YUI != 'undefined') {
13
14
  YUI._YUI = YUI;
14
15
  }
@@ -156,7 +157,7 @@ available.
156
157
  (function() {
157
158
 
158
159
  var proto, prop,
159
- VERSION = '3.8.1',
160
+ VERSION = '3.9.1',
160
161
  PERIOD = '.',
161
162
  BASE = 'http://yui.yahooapis.com/',
162
163
  /*
@@ -506,7 +507,7 @@ proto = {
506
507
  @method _setup
507
508
  @private
508
509
  **/
509
- _setup: function(o) {
510
+ _setup: function() {
510
511
  var i, Y = this,
511
512
  core = [],
512
513
  mods = YUI.Env.mods,
@@ -910,7 +911,6 @@ with any configuration info required for the module.
910
911
  callback = args[args.length - 1],
911
912
  Y = this,
912
913
  i = 0,
913
- a = [],
914
914
  name,
915
915
  Env = Y.Env,
916
916
  provisioned = true;
@@ -1002,7 +1002,7 @@ with any configuration info required for the module.
1002
1002
  this._attach(['yui-base']);
1003
1003
  }
1004
1004
 
1005
- var len, loader, handleBoot, handleRLS,
1005
+ var len, loader, handleBoot,
1006
1006
  Y = this,
1007
1007
  G_ENV = YUI.Env,
1008
1008
  mods = G_ENV.mods,
@@ -1495,6 +1495,30 @@ Y.log('Fetching loader: ' + config.base + config.loaderPath, 'info', 'yui');
1495
1495
  // Support the CommonJS method for exporting our single global
1496
1496
  if (typeof exports == 'object') {
1497
1497
  exports.YUI = YUI;
1498
+ /**
1499
+ * Set a method to be called when `Get.script` is called in Node.js
1500
+ * `Get` will open the file, then pass it's content and it's path
1501
+ * to this method before attaching it. Commonly used for code coverage
1502
+ * instrumentation. <strong>Calling this multiple times will only
1503
+ * attach the last hook method</strong>. This method is only
1504
+ * available in Node.js.
1505
+ * @method setLoadHook
1506
+ * @static
1507
+ * @param {Function} fn The function to set
1508
+ * @param {String} fn.data The content of the file
1509
+ * @param {String} fn.path The file path of the file
1510
+ */
1511
+ YUI.setLoadHook = function(fn) {
1512
+ YUI._getLoadHook = fn;
1513
+ };
1514
+ /**
1515
+ * Load hook for `Y.Get.script` in Node.js, see `YUI.setLoadHook`
1516
+ * @method _getLoadHook
1517
+ * @private
1518
+ * @param {String} data The content of the file
1519
+ * @param {String} path The file path of the file
1520
+ */
1521
+ YUI._getLoadHook = null;
1498
1522
  }
1499
1523
 
1500
1524
  }());
@@ -2011,18 +2035,34 @@ relying on ES5 functionality, even when ES5 functionality is available.
2011
2035
  **/
2012
2036
 
2013
2037
  /**
2014
- Event to wait for before executing the `use()` callback.
2015
-
2016
- The following events are supported:
2017
-
2018
- - available
2019
- - contentready
2020
- - domready
2021
- - load
2038
+ * Leverage native JSON stringify if the browser has a native
2039
+ * implementation. In general, this is a good idea. See the Known Issues
2040
+ * section in the JSON user guide for caveats. The default value is true
2041
+ * for browsers with native JSON support.
2042
+ *
2043
+ * @property useNativeJSONStringify
2044
+ * @type Boolean
2045
+ * @default true
2046
+ * @since 3.8.0
2047
+ */
2022
2048
 
2023
- The event may be specified as a string or as an object hash that provides
2024
- additional event configuration, as illustrated in the example below.
2049
+ /**
2050
+ * Leverage native JSON parse if the browser has a native implementation.
2051
+ * In general, this is a good idea. See the Known Issues section in the
2052
+ * JSON user guide for caveats. The default value is true for browsers with
2053
+ * native JSON support.
2054
+ *
2055
+ * @property useNativeJSONParse
2056
+ * @type Boolean
2057
+ * @default true
2058
+ * @since 3.8.0
2059
+ */
2025
2060
 
2061
+ /**
2062
+ Delay the `use` callback until a specific event has passed (`load`, `domready`, `contentready` or `available`)
2063
+ @property delayUntil
2064
+ @type String|Object
2065
+ @since 3.6.0
2026
2066
  @example
2027
2067
 
2028
2068
  You can use `load` or `domready` strings by default:
@@ -2420,6 +2460,7 @@ pass `true` as the value of the _force_ parameter.
2420
2460
  function YArray(thing, startIndex, force) {
2421
2461
  var len, result;
2422
2462
 
2463
+ /*jshint expr: true*/
2423
2464
  startIndex || (startIndex = 0);
2424
2465
 
2425
2466
  if (force || YArray.test(thing)) {
@@ -2792,13 +2833,15 @@ string `[object Object]` when used as a cache key.
2792
2833
  @for YUI
2793
2834
  **/
2794
2835
  Y.cached = function (source, cache, refetch) {
2836
+ /*jshint expr: true*/
2795
2837
  cache || (cache = {});
2796
2838
 
2797
2839
  return function (arg) {
2798
2840
  var key = arguments.length > 1 ?
2799
2841
  Array.prototype.join.call(arguments, CACHED_DELIMITER) :
2800
2842
  String(arg);
2801
-
2843
+
2844
+ /*jshint eqeqeq: false*/
2802
2845
  if (!(key in cache) || (refetch && cache[key] == refetch)) {
2803
2846
  cache[key] = source.apply(source, arguments);
2804
2847
  }
@@ -3878,6 +3921,7 @@ Y.UA.compareVersions = function (a, b) {
3878
3921
  aPart = parseInt(aParts[i], 10);
3879
3922
  bPart = parseInt(bParts[i], 10);
3880
3923
 
3924
+ /*jshint expr: true*/
3881
3925
  isNaN(aPart) && (aPart = 0);
3882
3926
  isNaN(bPart) && (bPart = 0);
3883
3927
 
@@ -3899,15 +3943,17 @@ YUI.Env.aliases = {
3899
3943
  "attribute": ["attribute-base","attribute-complex"],
3900
3944
  "attribute-events": ["attribute-observable"],
3901
3945
  "autocomplete": ["autocomplete-base","autocomplete-sources","autocomplete-list","autocomplete-plugin"],
3946
+ "axes": ["axis-numeric","axis-category","axis-time","axis-stacked"],
3947
+ "axes-base": ["axis-numeric-base","axis-category-base","axis-time-base","axis-stacked-base"],
3902
3948
  "base": ["base-base","base-pluginhost","base-build"],
3903
3949
  "cache": ["cache-base","cache-offline","cache-plugin"],
3950
+ "charts": ["charts-base"],
3904
3951
  "collection": ["array-extras","arraylist","arraylist-add","arraylist-filter","array-invoke"],
3905
3952
  "color": ["color-base","color-hsl","color-harmony"],
3906
3953
  "controller": ["router"],
3907
3954
  "dataschema": ["dataschema-base","dataschema-json","dataschema-xml","dataschema-array","dataschema-text"],
3908
3955
  "datasource": ["datasource-local","datasource-io","datasource-get","datasource-function","datasource-cache","datasource-jsonschema","datasource-xmlschema","datasource-arrayschema","datasource-textschema","datasource-polling"],
3909
3956
  "datatable": ["datatable-core","datatable-table","datatable-head","datatable-body","datatable-base","datatable-column-widths","datatable-message","datatable-mutable","datatable-sort","datatable-datasource"],
3910
- "datatable-deprecated": ["datatable-base-deprecated","datatable-datasource-deprecated","datatable-sort-deprecated","datatable-scroll-deprecated"],
3911
3957
  "datatype": ["datatype-date","datatype-number","datatype-xml"],
3912
3958
  "datatype-date": ["datatype-date-parse","datatype-date-format","datatype-date-math"],
3913
3959
  "datatype-number": ["datatype-number-parse","datatype-number-format"],
@@ -3936,7 +3982,7 @@ YUI.Env.aliases = {
3936
3982
  };
3937
3983
 
3938
3984
 
3939
- }, '3.8.1', {
3985
+ }, '3.9.1', {
3940
3986
  "use": [
3941
3987
  "yui-base",
3942
3988
  "get",
@@ -4958,7 +5004,7 @@ Transaction.prototype = {
4958
5004
  _getInsertBefore: function (req) {
4959
5005
  var doc = req.doc,
4960
5006
  el = req.insertBefore,
4961
- cache, cachedNode, docStamp;
5007
+ cache, docStamp;
4962
5008
 
4963
5009
  if (el) {
4964
5010
  return typeof el === 'string' ? doc.getElementById(el) : el;
@@ -5088,11 +5134,12 @@ Transaction.prototype = {
5088
5134
 
5089
5135
  if (ua.ie >= 10) {
5090
5136
 
5091
- // We currently need to introduce a timeout for IE10, since it
5137
+ // We currently need to introduce a timeout for IE10, since it
5092
5138
  // calls onerror/onload synchronously for 304s - messing up existing
5093
- // program flow.
5139
+ // program flow.
5094
5140
 
5095
5141
  // Remove this block if the following bug gets fixed by GA
5142
+ /*jshint maxlen: 1500 */
5096
5143
  // https://connect.microsoft.com/IE/feedback/details/763871/dynamically-loaded-scripts-with-304s-responses-interrupt-the-currently-executing-js-thread-onload
5097
5144
  node.onerror = function() { setTimeout(onError, 0); };
5098
5145
  node.onload = function() { setTimeout(onLoad, 0); };
@@ -5238,7 +5285,7 @@ Transaction.prototype = {
5238
5285
  };
5239
5286
 
5240
5287
 
5241
- }, '3.8.1', {"requires": ["yui-base"]});
5288
+ }, '3.9.1', {"requires": ["yui-base"]});
5242
5289
  YUI.add('features', function (Y, NAME) {
5243
5290
 
5244
5291
  var feature_tests = {};
@@ -5255,21 +5302,21 @@ Contains the core of YUI's feature test architecture.
5255
5302
  */
5256
5303
 
5257
5304
  Y.mix(Y.namespace('Features'), {
5258
-
5305
+
5259
5306
  /**
5260
5307
  * Object hash of all registered feature tests
5261
5308
  * @property tests
5262
5309
  * @type Object
5263
5310
  */
5264
5311
  tests: feature_tests,
5265
-
5312
+
5266
5313
  /**
5267
5314
  * Add a test to the system
5268
- *
5315
+ *
5269
5316
  * ```
5270
5317
  * Y.Features.add("load", "1", {});
5271
5318
  * ```
5272
- *
5319
+ *
5273
5320
  * @method add
5274
5321
  * @param {String} cat The category, right now only 'load' is supported
5275
5322
  * @param {String} name The number sequence of the test, how it's reported in the URL or config: 1, 2, 3
@@ -5355,6 +5402,7 @@ Y.mix(Y.namespace('Features'), {
5355
5402
  // caps=1:1;2:0;3:1;
5356
5403
 
5357
5404
  /* This file is auto-generated by (yogi loader --yes --mix --start ../) */
5405
+ /*jshint maxlen:900, eqeqeq: false */
5358
5406
  var add = Y.Features.add;
5359
5407
  // app-transitions-native
5360
5408
  add('load', '0', {
@@ -5530,14 +5578,64 @@ add('load', '13', {
5530
5578
  "trigger": "io-base",
5531
5579
  "ua": "nodejs"
5532
5580
  });
5533
- // scrollview-base-ie
5581
+ // json-parse-shim
5534
5582
  add('load', '14', {
5583
+ "name": "json-parse-shim",
5584
+ "test": function (Y) {
5585
+ var _JSON = Y.config.global.JSON,
5586
+ Native = Object.prototype.toString.call(_JSON) === '[object JSON]' && _JSON,
5587
+ nativeSupport = Y.config.useNativeJSONParse !== false && !!Native;
5588
+
5589
+ function workingNative( k, v ) {
5590
+ return k === "ok" ? true : v;
5591
+ }
5592
+
5593
+ // Double check basic functionality. This is mainly to catch early broken
5594
+ // implementations of the JSON API in Firefox 3.1 beta1 and beta2
5595
+ if ( nativeSupport ) {
5596
+ try {
5597
+ nativeSupport = ( Native.parse( '{"ok":false}', workingNative ) ).ok;
5598
+ }
5599
+ catch ( e ) {
5600
+ nativeSupport = false;
5601
+ }
5602
+ }
5603
+
5604
+ return !nativeSupport;
5605
+ },
5606
+ "trigger": "json-parse"
5607
+ });
5608
+ // json-stringify-shim
5609
+ add('load', '15', {
5610
+ "name": "json-stringify-shim",
5611
+ "test": function (Y) {
5612
+ var _JSON = Y.config.global.JSON,
5613
+ Native = Object.prototype.toString.call(_JSON) === '[object JSON]' && _JSON,
5614
+ nativeSupport = Y.config.useNativeJSONStringify !== false && !!Native;
5615
+
5616
+ // Double check basic native functionality. This is primarily to catch broken
5617
+ // early JSON API implementations in Firefox 3.1 beta1 and beta2.
5618
+ if ( nativeSupport ) {
5619
+ try {
5620
+ nativeSupport = ( '0' === Native.stringify(0) );
5621
+ } catch ( e ) {
5622
+ nativeSupport = false;
5623
+ }
5624
+ }
5625
+
5626
+
5627
+ return !nativeSupport;
5628
+ },
5629
+ "trigger": "json-stringify"
5630
+ });
5631
+ // scrollview-base-ie
5632
+ add('load', '16', {
5535
5633
  "name": "scrollview-base-ie",
5536
5634
  "trigger": "scrollview-base",
5537
5635
  "ua": "ie"
5538
5636
  });
5539
5637
  // selector-css2
5540
- add('load', '15', {
5638
+ add('load', '17', {
5541
5639
  "name": "selector-css2",
5542
5640
  "test": function (Y) {
5543
5641
  var DOCUMENT = Y.config.doc,
@@ -5548,7 +5646,7 @@ add('load', '15', {
5548
5646
  "trigger": "selector"
5549
5647
  });
5550
5648
  // transition-timer
5551
- add('load', '16', {
5649
+ add('load', '18', {
5552
5650
  "name": "transition-timer",
5553
5651
  "test": function (Y) {
5554
5652
  var DOCUMENT = Y.config.doc,
@@ -5564,27 +5662,39 @@ add('load', '16', {
5564
5662
  "trigger": "transition"
5565
5663
  });
5566
5664
  // widget-base-ie
5567
- add('load', '17', {
5665
+ add('load', '19', {
5568
5666
  "name": "widget-base-ie",
5569
5667
  "trigger": "widget-base",
5570
5668
  "ua": "ie"
5571
5669
  });
5670
+ // yql-jsonp
5671
+ add('load', '20', {
5672
+ "name": "yql-jsonp",
5673
+ "test": function (Y) {
5674
+ /* Only load the JSONP module when not in nodejs or winjs
5675
+ TODO Make the winjs module a CORS module
5676
+ */
5677
+ return (!Y.UA.nodejs && !Y.UA.winjs);
5678
+ },
5679
+ "trigger": "yql",
5680
+ "when": "after"
5681
+ });
5572
5682
  // yql-nodejs
5573
- add('load', '18', {
5683
+ add('load', '21', {
5574
5684
  "name": "yql-nodejs",
5575
5685
  "trigger": "yql",
5576
5686
  "ua": "nodejs",
5577
5687
  "when": "after"
5578
5688
  });
5579
5689
  // yql-winjs
5580
- add('load', '19', {
5690
+ add('load', '22', {
5581
5691
  "name": "yql-winjs",
5582
5692
  "trigger": "yql",
5583
5693
  "ua": "winjs",
5584
5694
  "when": "after"
5585
5695
  });
5586
5696
 
5587
- }, '3.8.1', {"requires": ["yui-base"]});
5697
+ }, '3.9.1', {"requires": ["yui-base"]});
5588
5698
  YUI.add('intl-base', function (Y, NAME) {
5589
5699
 
5590
5700
  /**
@@ -5672,12 +5782,13 @@ Y.mix(Y.namespace('Intl'), {
5672
5782
  });
5673
5783
 
5674
5784
 
5675
- }, '3.8.1', {"requires": ["yui-base"]});
5785
+ }, '3.9.1', {"requires": ["yui-base"]});
5676
5786
  YUI.add('yui-log', function (Y, NAME) {
5677
5787
 
5678
5788
  /**
5679
5789
  * Provides console log capability and exposes a custom event for
5680
- * console implementations. This module is a `core` YUI module, <a href="../classes/YUI.html#method_log">it's documentation is located under the YUI class</a>.
5790
+ * console implementations. This module is a `core` YUI module,
5791
+ * <a href="../classes/YUI.html#method_log">it's documentation is located under the YUI class</a>.
5681
5792
  *
5682
5793
  * @module yui
5683
5794
  * @submodule yui-log
@@ -5736,17 +5847,17 @@ INSTANCE.log = function(msg, cat, src, silent) {
5736
5847
  m = (src) ? src + ': ' + msg : msg;
5737
5848
  if (Y.Lang.isFunction(c.logFn)) {
5738
5849
  c.logFn.call(Y, msg, cat, src);
5739
- } else if (typeof console != UNDEFINED && console.log) {
5850
+ } else if (typeof console !== UNDEFINED && console.log) {
5740
5851
  f = (cat && console[cat] && (cat in LEVELS)) ? cat : 'log';
5741
5852
  console[f](m);
5742
- } else if (typeof opera != UNDEFINED) {
5853
+ } else if (typeof opera !== UNDEFINED) {
5743
5854
  opera.postError(m);
5744
5855
  }
5745
5856
  }
5746
5857
 
5747
5858
  if (publisher && !silent) {
5748
5859
 
5749
- if (publisher == Y && (!publisher.getEvent(LOGEVENT))) {
5860
+ if (publisher === Y && (!publisher.getEvent(LOGEVENT))) {
5750
5861
  publisher.publish(LOGEVENT, {
5751
5862
  broadcast: 2
5752
5863
  });
@@ -5782,11 +5893,12 @@ INSTANCE.message = function() {
5782
5893
  };
5783
5894
 
5784
5895
 
5785
- }, '3.8.1', {"requires": ["yui-base"]});
5896
+ }, '3.9.1', {"requires": ["yui-base"]});
5786
5897
  YUI.add('yui-later', function (Y, NAME) {
5787
5898
 
5788
5899
  /**
5789
- * Provides a setTimeout/setInterval wrapper. This module is a `core` YUI module, <a href="../classes/YUI.html#method_later">it's documentation is located under the YUI class</a>.
5900
+ * Provides a setTimeout/setInterval wrapper. This module is a `core` YUI module,
5901
+ * <a href="../classes/YUI.html#method_later">it's documentation is located under the YUI class</a>.
5790
5902
  *
5791
5903
  * @module yui
5792
5904
  * @submodule yui-later
@@ -5859,7 +5971,7 @@ Y.Lang.later = Y.later;
5859
5971
 
5860
5972
 
5861
5973
 
5862
- }, '3.8.1', {"requires": ["yui-base"]});
5974
+ }, '3.9.1', {"requires": ["yui-base"]});
5863
5975
  YUI.add('loader-base', function (Y, NAME) {
5864
5976
 
5865
5977
  /**
@@ -5875,7 +5987,7 @@ if (!YUI.Env[Y.version]) {
5875
5987
  BUILD = '/build/',
5876
5988
  ROOT = VERSION + BUILD,
5877
5989
  CDN_BASE = Y.Env.base,
5878
- GALLERY_VERSION = 'gallery-2013.01.16-21-05',
5990
+ GALLERY_VERSION = 'gallery-2013.02.27-21-03',
5879
5991
  TNT = '2in3',
5880
5992
  TNT_VERSION = '4',
5881
5993
  YUI2_VERSION = '2.9.0',
@@ -6751,9 +6863,13 @@ Y.Loader.prototype = {
6751
6863
  }
6752
6864
  }
6753
6865
  } else if (i === 'gallery') {
6754
- this.groups.gallery.update(val, o);
6866
+ if (this.groups.gallery.update) {
6867
+ this.groups.gallery.update(val, o);
6868
+ }
6755
6869
  } else if (i === 'yui2' || i === '2in3') {
6756
- this.groups.yui2.update(o['2in3'], o.yui2, o);
6870
+ if (this.groups.yui2.update) {
6871
+ this.groups.yui2.update(o['2in3'], o.yui2, o);
6872
+ }
6757
6873
  } else {
6758
6874
  self[i] = val;
6759
6875
  }
@@ -8068,16 +8184,18 @@ Y.log('Undefined module: ' + mname + ', matched a pattern: ' +
8068
8184
  /**
8069
8185
  * The default Loader onTimeout handler, calls this.onTimeout with a payload
8070
8186
  * @method _onTimeout
8187
+ * @param {Get.Transaction} transaction The Transaction object from `Y.Get`
8071
8188
  * @private
8072
8189
  */
8073
- _onTimeout: function() {
8190
+ _onTimeout: function(transaction) {
8074
8191
  Y.log('loader timeout: ' + Y.id, 'error', 'loader');
8075
8192
  var f = this.onTimeout;
8076
8193
  if (f) {
8077
8194
  f.call(this.context, {
8078
8195
  msg: 'timeout',
8079
8196
  data: this.data,
8080
- success: false
8197
+ success: false,
8198
+ transaction: transaction
8081
8199
  });
8082
8200
  }
8083
8201
  },
@@ -8579,49 +8697,51 @@ Y.log('Undefined module: ' + mname + ', matched a pattern: ' +
8579
8697
 
8580
8698
 
8581
8699
  for (j in resCombos) {
8582
- base = j;
8583
- comboSep = resCombos[base].comboSep || self.comboSep;
8584
- maxURLLength = resCombos[base].maxURLLength || self.maxURLLength;
8585
- Y.log('Using maxURLLength of ' + maxURLLength, 'info', 'loader');
8586
- for (type in resCombos[base]) {
8587
- if (type === JS || type === CSS) {
8588
- urls = resCombos[base][type];
8589
- mods = resCombos[base][type + 'Mods'];
8590
- len = urls.length;
8591
- tmpBase = base + urls.join(comboSep);
8592
- baseLen = tmpBase.length;
8593
- if (maxURLLength <= base.length) {
8594
- Y.log('maxURLLength (' + maxURLLength + ') is lower than the comboBase length (' + base.length + '), resetting to default (' + MAX_URL_LENGTH + ')', 'error', 'loader');
8595
- maxURLLength = MAX_URL_LENGTH;
8596
- }
8700
+ if (resCombos.hasOwnProperty(j)) {
8701
+ base = j;
8702
+ comboSep = resCombos[base].comboSep || self.comboSep;
8703
+ maxURLLength = resCombos[base].maxURLLength || self.maxURLLength;
8704
+ Y.log('Using maxURLLength of ' + maxURLLength, 'info', 'loader');
8705
+ for (type in resCombos[base]) {
8706
+ if (type === JS || type === CSS) {
8707
+ urls = resCombos[base][type];
8708
+ mods = resCombos[base][type + 'Mods'];
8709
+ len = urls.length;
8710
+ tmpBase = base + urls.join(comboSep);
8711
+ baseLen = tmpBase.length;
8712
+ if (maxURLLength <= base.length) {
8713
+ Y.log('maxURLLength (' + maxURLLength + ') is lower than the comboBase length (' + base.length + '), resetting to default (' + MAX_URL_LENGTH + ')', 'error', 'loader');
8714
+ maxURLLength = MAX_URL_LENGTH;
8715
+ }
8597
8716
 
8598
- if (len) {
8599
- if (baseLen > maxURLLength) {
8600
- Y.log('Exceeded maxURLLength (' + maxURLLength + ') for ' + type + ', splitting', 'info', 'loader');
8601
- u = [];
8602
- for (s = 0; s < len; s++) {
8603
- u.push(urls[s]);
8604
- tmpBase = base + u.join(comboSep);
8717
+ if (len) {
8718
+ if (baseLen > maxURLLength) {
8719
+ Y.log('Exceeded maxURLLength (' + maxURLLength + ') for ' + type + ', splitting', 'info', 'loader');
8720
+ u = [];
8721
+ for (s = 0; s < len; s++) {
8722
+ u.push(urls[s]);
8723
+ tmpBase = base + u.join(comboSep);
8605
8724
 
8606
- if (tmpBase.length > maxURLLength) {
8607
- m = u.pop();
8725
+ if (tmpBase.length > maxURLLength) {
8726
+ m = u.pop();
8727
+ tmpBase = base + u.join(comboSep);
8728
+ resolved[type].push(self._filter(tmpBase, null, resCombos[base].group));
8729
+ u = [];
8730
+ if (m) {
8731
+ u.push(m);
8732
+ }
8733
+ }
8734
+ }
8735
+ if (u.length) {
8608
8736
  tmpBase = base + u.join(comboSep);
8609
8737
  resolved[type].push(self._filter(tmpBase, null, resCombos[base].group));
8610
- u = [];
8611
- if (m) {
8612
- u.push(m);
8613
- }
8614
8738
  }
8615
- }
8616
- if (u.length) {
8617
- tmpBase = base + u.join(comboSep);
8739
+ } else {
8618
8740
  resolved[type].push(self._filter(tmpBase, null, resCombos[base].group));
8619
8741
  }
8620
- } else {
8621
- resolved[type].push(self._filter(tmpBase, null, resCombos[base].group));
8622
8742
  }
8743
+ resolved[type + 'Mods'] = resolved[type + 'Mods'].concat(mods);
8623
8744
  }
8624
- resolved[type + 'Mods'] = resolved[type + 'Mods'].concat(mods);
8625
8745
  }
8626
8746
  }
8627
8747
  }
@@ -8670,7 +8790,7 @@ Y.log('Undefined module: ' + mname + ', matched a pattern: ' +
8670
8790
 
8671
8791
 
8672
8792
 
8673
- }, '3.8.1', {"requires": ["get", "features"]});
8793
+ }, '3.9.1', {"requires": ["get", "features"]});
8674
8794
  YUI.add('loader-rollup', function (Y, NAME) {
8675
8795
 
8676
8796
  /**
@@ -8772,11 +8892,13 @@ Y.Loader.prototype._rollup = function() {
8772
8892
  };
8773
8893
 
8774
8894
 
8775
- }, '3.8.1', {"requires": ["loader-base"]});
8895
+ }, '3.9.1', {"requires": ["loader-base"]});
8776
8896
  YUI.add('loader-yui3', function (Y, NAME) {
8777
8897
 
8778
8898
  /* This file is auto-generated by (yogi loader --yes --mix --start ../) */
8779
8899
 
8900
+ /*jshint maxlen:900, eqeqeq: false */
8901
+
8780
8902
  /**
8781
8903
  * YUI 3 module metadata
8782
8904
  * @module loader
@@ -9033,7 +9155,8 @@ Y.mix(YUI.Env[Y.version].modules, {
9033
9155
  "autocomplete-sources"
9034
9156
  ],
9035
9157
  "lang": [
9036
- "en"
9158
+ "en",
9159
+ "es"
9037
9160
  ],
9038
9161
  "requires": [
9039
9162
  "autocomplete-base",
@@ -9088,6 +9211,85 @@ Y.mix(YUI.Env[Y.version].modules, {
9088
9211
  "autocomplete-base"
9089
9212
  ]
9090
9213
  },
9214
+ "axes": {
9215
+ "use": [
9216
+ "axis-numeric",
9217
+ "axis-category",
9218
+ "axis-time",
9219
+ "axis-stacked"
9220
+ ]
9221
+ },
9222
+ "axes-base": {
9223
+ "use": [
9224
+ "axis-numeric-base",
9225
+ "axis-category-base",
9226
+ "axis-time-base",
9227
+ "axis-stacked-base"
9228
+ ]
9229
+ },
9230
+ "axis": {
9231
+ "requires": [
9232
+ "dom",
9233
+ "widget",
9234
+ "widget-position",
9235
+ "widget-stack",
9236
+ "graphics",
9237
+ "axis-base"
9238
+ ]
9239
+ },
9240
+ "axis-base": {
9241
+ "requires": [
9242
+ "classnamemanager",
9243
+ "datatype-number",
9244
+ "datatype-date",
9245
+ "base",
9246
+ "event-custom"
9247
+ ]
9248
+ },
9249
+ "axis-category": {
9250
+ "requires": [
9251
+ "axis",
9252
+ "axis-category-base"
9253
+ ]
9254
+ },
9255
+ "axis-category-base": {
9256
+ "requires": [
9257
+ "axis-base"
9258
+ ]
9259
+ },
9260
+ "axis-numeric": {
9261
+ "requires": [
9262
+ "axis",
9263
+ "axis-numeric-base"
9264
+ ]
9265
+ },
9266
+ "axis-numeric-base": {
9267
+ "requires": [
9268
+ "axis-base"
9269
+ ]
9270
+ },
9271
+ "axis-stacked": {
9272
+ "requires": [
9273
+ "axis-numeric",
9274
+ "axis-stacked-base"
9275
+ ]
9276
+ },
9277
+ "axis-stacked-base": {
9278
+ "requires": [
9279
+ "axis-numeric-base"
9280
+ ]
9281
+ },
9282
+ "axis-time": {
9283
+ "requires": [
9284
+ "axis",
9285
+ "axis-time-base"
9286
+ ]
9287
+ },
9288
+ "axis-time-base": {
9289
+ "requires": [
9290
+ "axis-base"
9291
+ ]
9292
+ },
9091
9293
  "base": {
9092
9294
  "use": [
9093
9295
  "base-base",
@@ -9213,7 +9415,6 @@ Y.mix(YUI.Env[Y.version].modules, {
9213
9415
  ],
9214
9416
  "requires": [
9215
9417
  "widget",
9216
- "substitute",
9217
9418
  "datatype-date",
9218
9419
  "datatype-date-math",
9219
9420
  "cssgrids"
@@ -9225,28 +9426,41 @@ Y.mix(YUI.Env[Y.version].modules, {
9225
9426
  "plugin",
9226
9427
  "classnamemanager",
9227
9428
  "datatype-date",
9228
- "node",
9229
- "substitute"
9429
+ "node"
9230
9430
  ],
9231
9431
  "skinnable": true
9232
9432
  },
9233
9433
  "charts": {
9234
- "requires": [
9434
+ "use": [
9235
9435
  "charts-base"
9236
9436
  ]
9237
9437
  },
9238
9438
  "charts-base": {
9239
9439
  "requires": [
9240
9440
  "dom",
9241
- "datatype-number",
9242
- "datatype-date",
9243
- "event-custom",
9244
9441
  "event-mouseenter",
9245
9442
  "event-touch",
9246
- "widget",
9247
- "widget-position",
9248
- "widget-stack",
9249
- "graphics"
9443
+ "graphics-group",
9444
+ "axes",
9445
+ "series-pie",
9446
+ "series-line",
9447
+ "series-marker",
9448
+ "series-area",
9449
+ "series-spline",
9450
+ "series-column",
9451
+ "series-bar",
9452
+ "series-areaspline",
9453
+ "series-combo",
9454
+ "series-combospline",
9455
+ "series-line-stacked",
9456
+ "series-marker-stacked",
9457
+ "series-area-stacked",
9458
+ "series-spline-stacked",
9459
+ "series-column-stacked",
9460
+ "series-bar-stacked",
9461
+ "series-areaspline-stacked",
9462
+ "series-combo-stacked",
9463
+ "series-combospline-stacked"
9250
9464
  ]
9251
9465
  },
9252
9466
  "charts-legend": {
@@ -9379,6 +9593,17 @@ Y.mix(YUI.Env[Y.version].modules, {
9379
9593
  ],
9380
9594
  "type": "css"
9381
9595
  },
9596
+ "cssgrids-responsive": {
9597
+ "optional": [
9598
+ "cssreset",
9599
+ "cssfonts"
9600
+ ],
9601
+ "requires": [
9602
+ "cssgrids",
9603
+ "cssgrids-responsive-base"
9604
+ ],
9605
+ "type": "css"
9606
+ },
9382
9607
  "cssgrids-units": {
9383
9608
  "optional": [
9384
9609
  "cssreset",
@@ -9389,6 +9614,12 @@ Y.mix(YUI.Env[Y.version].modules, {
9389
9614
  ],
9390
9615
  "type": "css"
9391
9616
  },
9617
+ "cssnormalize": {
9618
+ "type": "css"
9619
+ },
9620
+ "cssnormalize-context": {
9621
+ "type": "css"
9622
+ },
9392
9623
  "cssreset": {
9393
9624
  "type": "css"
9394
9625
  },
@@ -9532,15 +9763,6 @@ Y.mix(YUI.Env[Y.version].modules, {
9532
9763
  ],
9533
9764
  "skinnable": true
9534
9765
  },
9535
- "datatable-base-deprecated": {
9536
- "requires": [
9537
- "recordset-base",
9538
- "widget",
9539
- "substitute",
9540
- "event-mouseenter"
9541
- ],
9542
- "skinnable": true
9543
- },
9544
9766
  "datatable-body": {
9545
9767
  "requires": [
9546
9768
  "datatable-core",
@@ -9567,19 +9789,12 @@ Y.mix(YUI.Env[Y.version].modules, {
9567
9789
  "datasource-local"
9568
9790
  ]
9569
9791
  },
9570
- "datatable-datasource-deprecated": {
9792
+ "datatable-formatters": {
9571
9793
  "requires": [
9572
- "datatable-base-deprecated",
9573
- "plugin",
9574
- "datasource-local"
9575
- ]
9576
- },
9577
- "datatable-deprecated": {
9578
- "use": [
9579
- "datatable-base-deprecated",
9580
- "datatable-datasource-deprecated",
9581
- "datatable-sort-deprecated",
9582
- "datatable-scroll-deprecated"
9794
+ "datatable-body",
9795
+ "datatype-number-format",
9796
+ "datatype-date-format",
9797
+ "escape"
9583
9798
  ]
9584
9799
  },
9585
9800
  "datatable-head": {
@@ -9591,7 +9806,9 @@ Y.mix(YUI.Env[Y.version].modules, {
9591
9806
  },
9592
9807
  "datatable-message": {
9593
9808
  "lang": [
9594
- "en"
9809
+ "en",
9810
+ "fr",
9811
+ "es"
9595
9812
  ],
9596
9813
  "requires": [
9597
9814
  "datatable-base"
@@ -9611,31 +9828,17 @@ Y.mix(YUI.Env[Y.version].modules, {
9611
9828
  ],
9612
9829
  "skinnable": true
9613
9830
  },
9614
- "datatable-scroll-deprecated": {
9615
- "requires": [
9616
- "datatable-base-deprecated",
9617
- "plugin"
9618
- ]
9619
- },
9620
9831
  "datatable-sort": {
9621
9832
  "lang": [
9622
- "en"
9833
+ "en",
9834
+ "fr",
9835
+ "es"
9623
9836
  ],
9624
9837
  "requires": [
9625
9838
  "datatable-base"
9626
9839
  ],
9627
9840
  "skinnable": true
9628
9841
  },
9629
- "datatable-sort-deprecated": {
9630
- "lang": [
9631
- "en"
9632
- ],
9633
- "requires": [
9634
- "datatable-base-deprecated",
9635
- "plugin",
9636
- "recordset-sort"
9637
- ]
9638
- },
9639
9842
  "datatable-table": {
9640
9843
  "requires": [
9641
9844
  "datatable-core",
@@ -10264,6 +10467,11 @@ Y.mix(YUI.Env[Y.version].modules, {
10264
10467
  "trigger": "graphics"
10265
10468
  }
10266
10469
  },
10470
+ "graphics-group": {
10471
+ "requires": [
10472
+ "graphics"
10473
+ ]
10474
+ },
10267
10475
  "graphics-svg": {
10268
10476
  "condition": {
10269
10477
  "name": "graphics-svg",
@@ -10326,9 +10534,7 @@ Y.mix(YUI.Env[Y.version].modules, {
10326
10534
  ]
10327
10535
  },
10328
10536
  "handlebars-base": {
10329
- "requires": [
10330
- "escape"
10331
- ]
10537
+ "requires": []
10332
10538
  },
10333
10539
  "handlebars-compiler": {
10334
10540
  "requires": [
@@ -10482,11 +10688,69 @@ Y.mix(YUI.Env[Y.version].modules, {
10482
10688
  "yui-base"
10483
10689
  ]
10484
10690
  },
10691
+ "json-parse-shim": {
10692
+ "condition": {
10693
+ "name": "json-parse-shim",
10694
+ "test": function (Y) {
10695
+ var _JSON = Y.config.global.JSON,
10696
+ Native = Object.prototype.toString.call(_JSON) === '[object JSON]' && _JSON,
10697
+ nativeSupport = Y.config.useNativeJSONParse !== false && !!Native;
10698
+
10699
+ function workingNative( k, v ) {
10700
+ return k === "ok" ? true : v;
10701
+ }
10702
+
10703
+ // Double check basic functionality. This is mainly to catch early broken
10704
+ // implementations of the JSON API in Firefox 3.1 beta1 and beta2
10705
+ if ( nativeSupport ) {
10706
+ try {
10707
+ nativeSupport = ( Native.parse( '{"ok":false}', workingNative ) ).ok;
10708
+ }
10709
+ catch ( e ) {
10710
+ nativeSupport = false;
10711
+ }
10712
+ }
10713
+
10714
+ return !nativeSupport;
10715
+ },
10716
+ "trigger": "json-parse"
10717
+ },
10718
+ "requires": [
10719
+ "json-parse"
10720
+ ]
10721
+ },
10485
10722
  "json-stringify": {
10486
10723
  "requires": [
10487
10724
  "yui-base"
10488
10725
  ]
10489
10726
  },
10727
+ "json-stringify-shim": {
10728
+ "condition": {
10729
+ "name": "json-stringify-shim",
10730
+ "test": function (Y) {
10731
+ var _JSON = Y.config.global.JSON,
10732
+ Native = Object.prototype.toString.call(_JSON) === '[object JSON]' && _JSON,
10733
+ nativeSupport = Y.config.useNativeJSONStringify !== false && !!Native;
10734
+
10735
+ // Double check basic native functionality. This is primarily to catch broken
10736
+ // early JSON API implementations in Firefox 3.1 beta1 and beta2.
10737
+ if ( nativeSupport ) {
10738
+ try {
10739
+ nativeSupport = ( '0' === Native.stringify(0) );
10740
+ } catch ( e ) {
10741
+ nativeSupport = false;
10742
+ }
10743
+ }
10744
+
10745
+
10746
+ return !nativeSupport;
10747
+ },
10748
+ "trigger": "json-stringify"
10749
+ },
10750
+ "requires": [
10751
+ "json-stringify"
10752
+ ]
10753
+ },
10490
10754
  "jsonp": {
10491
10755
  "requires": [
10492
10756
  "get",
@@ -10750,6 +11014,11 @@ Y.mix(YUI.Env[Y.version].modules, {
10750
11014
  "yui-base"
10751
11015
  ]
10752
11016
  },
11017
+ "promise": {
11018
+ "requires": [
11019
+ "timers"
11020
+ ]
11021
+ },
10753
11022
  "querystring": {
10754
11023
  "use": [
10755
11024
  "querystring-parse",
@@ -10950,6 +11219,163 @@ Y.mix(YUI.Env[Y.version].modules, {
10950
11219
  "dom-base"
10951
11220
  ]
10952
11221
  },
11222
+ "series-area": {
11223
+ "requires": [
11224
+ "series-cartesian",
11225
+ "series-fill-util"
11226
+ ]
11227
+ },
11228
+ "series-area-stacked": {
11229
+ "requires": [
11230
+ "series-stacked",
11231
+ "series-area"
11232
+ ]
11233
+ },
11234
+ "series-areaspline": {
11235
+ "requires": [
11236
+ "series-area",
11237
+ "series-curve-util"
11238
+ ]
11239
+ },
11240
+ "series-areaspline-stacked": {
11241
+ "requires": [
11242
+ "series-stacked",
11243
+ "series-areaspline"
11244
+ ]
11245
+ },
11246
+ "series-bar": {
11247
+ "requires": [
11248
+ "series-marker",
11249
+ "series-histogram-base"
11250
+ ]
11251
+ },
11252
+ "series-bar-stacked": {
11253
+ "requires": [
11254
+ "series-stacked",
11255
+ "series-bar"
11256
+ ]
11257
+ },
11258
+ "series-base": {
11259
+ "requires": [
11260
+ "graphics",
11261
+ "axis-base"
11262
+ ]
11263
+ },
11264
+ "series-candlestick": {
11265
+ "requires": [
11266
+ "series-range"
11267
+ ]
11268
+ },
11269
+ "series-cartesian": {
11270
+ "requires": [
11271
+ "series-base"
11272
+ ]
11273
+ },
11274
+ "series-column": {
11275
+ "requires": [
11276
+ "series-marker",
11277
+ "series-histogram-base"
11278
+ ]
11279
+ },
11280
+ "series-column-stacked": {
11281
+ "requires": [
11282
+ "series-stacked",
11283
+ "series-column"
11284
+ ]
11285
+ },
11286
+ "series-combo": {
11287
+ "requires": [
11288
+ "series-cartesian",
11289
+ "series-line-util",
11290
+ "series-plot-util",
11291
+ "series-fill-util"
11292
+ ]
11293
+ },
11294
+ "series-combo-stacked": {
11295
+ "requires": [
11296
+ "series-stacked",
11297
+ "series-combo"
11298
+ ]
11299
+ },
11300
+ "series-combospline": {
11301
+ "requires": [
11302
+ "series-combo",
11303
+ "series-curve-util"
11304
+ ]
11305
+ },
11306
+ "series-combospline-stacked": {
11307
+ "requires": [
11308
+ "series-combo-stacked",
11309
+ "series-curve-util"
11310
+ ]
11311
+ },
11312
+ "series-curve-util": {},
11313
+ "series-fill-util": {},
11314
+ "series-histogram-base": {
11315
+ "requires": [
11316
+ "series-cartesian",
11317
+ "series-plot-util"
11318
+ ]
11319
+ },
11320
+ "series-line": {
11321
+ "requires": [
11322
+ "series-cartesian",
11323
+ "series-line-util"
11324
+ ]
11325
+ },
11326
+ "series-line-stacked": {
11327
+ "requires": [
11328
+ "series-stacked",
11329
+ "series-line"
11330
+ ]
11331
+ },
11332
+ "series-line-util": {},
11333
+ "series-marker": {
11334
+ "requires": [
11335
+ "series-cartesian",
11336
+ "series-plot-util"
11337
+ ]
11338
+ },
11339
+ "series-marker-stacked": {
11340
+ "requires": [
11341
+ "series-stacked",
11342
+ "series-marker"
11343
+ ]
11344
+ },
11345
+ "series-ohlc": {
11346
+ "requires": [
11347
+ "series-range"
11348
+ ]
11349
+ },
11350
+ "series-pie": {
11351
+ "requires": [
11352
+ "series-base",
11353
+ "series-plot-util"
11354
+ ]
11355
+ },
11356
+ "series-plot-util": {},
11357
+ "series-range": {
11358
+ "requires": [
11359
+ "series-cartesian"
11360
+ ]
11361
+ },
11362
+ "series-spline": {
11363
+ "requires": [
11364
+ "series-line",
11365
+ "series-curve-util"
11366
+ ]
11367
+ },
11368
+ "series-spline-stacked": {
11369
+ "requires": [
11370
+ "series-stacked",
11371
+ "series-spline"
11372
+ ]
11373
+ },
11374
+ "series-stacked": {
11375
+ "requires": [
11376
+ "axis-stacked"
11377
+ ]
11378
+ },
10953
11379
  "shim-plugin": {
10954
11380
  "requires": [
10955
11381
  "node-style",
@@ -11098,6 +11524,11 @@ Y.mix(YUI.Env[Y.version].modules, {
11098
11524
  "text-data-wordbreak"
11099
11525
  ]
11100
11526
  },
11527
+ "timers": {
11528
+ "requires": [
11529
+ "yui-base"
11530
+ ]
11531
+ },
11101
11532
  "transition": {
11102
11533
  "requires": [
11103
11534
  "node-style"
@@ -11123,25 +11554,45 @@ Y.mix(YUI.Env[Y.version].modules, {
11123
11554
  "transition"
11124
11555
  ]
11125
11556
  },
11126
- "uploader": {
11557
+ "tree": {
11127
11558
  "requires": [
11128
- "uploader-html5",
11129
- "uploader-flash"
11559
+ "base-build",
11560
+ "tree-node"
11130
11561
  ]
11131
11562
  },
11132
- "uploader-deprecated": {
11563
+ "tree-labelable": {
11133
11564
  "requires": [
11134
- "event-custom",
11135
- "node",
11136
- "base",
11137
- "swf"
11565
+ "tree"
11566
+ ]
11567
+ },
11568
+ "tree-lazy": {
11569
+ "requires": [
11570
+ "base-pluginhost",
11571
+ "plugin",
11572
+ "tree"
11573
+ ]
11574
+ },
11575
+ "tree-node": {},
11576
+ "tree-openable": {
11577
+ "requires": [
11578
+ "tree"
11579
+ ]
11580
+ },
11581
+ "tree-selectable": {
11582
+ "requires": [
11583
+ "tree"
11584
+ ]
11585
+ },
11586
+ "uploader": {
11587
+ "requires": [
11588
+ "uploader-html5",
11589
+ "uploader-flash"
11138
11590
  ]
11139
11591
  },
11140
11592
  "uploader-flash": {
11141
11593
  "requires": [
11142
11594
  "swf",
11143
11595
  "widget",
11144
- "substitute",
11145
11596
  "base",
11146
11597
  "cssbutton",
11147
11598
  "node",
@@ -11154,7 +11605,6 @@ Y.mix(YUI.Env[Y.version].modules, {
11154
11605
  "requires": [
11155
11606
  "widget",
11156
11607
  "node-event-simulate",
11157
- "substitute",
11158
11608
  "file-html5",
11159
11609
  "uploader-queue"
11160
11610
  ]
@@ -11300,6 +11750,22 @@ Y.mix(YUI.Env[Y.version].modules, {
11300
11750
  ]
11301
11751
  },
11302
11752
  "yql": {
11753
+ "requires": [
11754
+ "oop"
11755
+ ]
11756
+ },
11757
+ "yql-jsonp": {
11758
+ "condition": {
11759
+ "name": "yql-jsonp",
11760
+ "test": function (Y) {
11761
+ /* Only load the JSONP module when not in nodejs or winjs
11762
+ TODO Make the winjs module a CORS module
11763
+ */
11764
+ return (!Y.UA.nodejs && !Y.UA.winjs);
11765
+ },
11766
+ "trigger": "yql",
11767
+ "when": "after"
11768
+ },
11303
11769
  "requires": [
11304
11770
  "jsonp",
11305
11771
  "jsonp-url"
@@ -11339,11 +11805,11 @@ Y.mix(YUI.Env[Y.version].modules, {
11339
11805
  ]
11340
11806
  }
11341
11807
  });
11342
- YUI.Env[Y.version].md5 = 'd050a2294f84d3996bb46f592448f782';
11808
+ YUI.Env[Y.version].md5 = '660f328e92276f36e9abfafb02169183';
11343
11809
 
11344
11810
 
11345
- }, '3.8.1', {"requires": ["loader-base"]});
11346
- YUI.add('yui', function (Y, NAME) {}, '3.8.1', {
11811
+ }, '3.9.1', {"requires": ["loader-base"]});
11812
+ YUI.add('yui', function (Y, NAME) {}, '3.9.1', {
11347
11813
  "use": [
11348
11814
  "yui-base",
11349
11815
  "get",