Skip to content

Commit

Permalink
added connectioncore and updated connection metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Moore committed Aug 6, 2009
1 parent 84887ca commit c7c1696
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 5 deletions.
10 changes: 9 additions & 1 deletion build/yuiloader/yuiloader-debug.js
Expand Up @@ -1933,7 +1933,15 @@ YAHOO.register("get", YAHOO.util.Get, {version: "@VERSION@", build: "@BUILD@"});
'connection': {
'type': 'js',
'path': 'connection/connection-min.js',
'requires': ['event']
'requires': ['event'],
'supersedes': ['connectioncore'],
},

'connectioncore': {
'type': 'js',
'path': 'connection/connection_core-min.js',
'requires': ['event'],
'pkg': 'connection'
},

'container': {
Expand Down
2 changes: 1 addition & 1 deletion build/yuiloader/yuiloader-min.js

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion build/yuiloader/yuiloader.js
Expand Up @@ -1933,7 +1933,15 @@ YAHOO.register("get", YAHOO.util.Get, {version: "@VERSION@", build: "@BUILD@"});
'connection': {
'type': 'js',
'path': 'connection/connection-min.js',
'requires': ['event']
'requires': ['event'],
'supersedes': ['connectioncore'],
},

'connectioncore': {
'type': 'js',
'path': 'connection/connection_core-min.js',
'requires': ['event'],
'pkg': 'connection'
},

'container': {
Expand Down
2 changes: 1 addition & 1 deletion sandbox/yuiloader/insert.html
Expand Up @@ -75,7 +75,7 @@

var loader = new YAHOO.util.YUILoader();
loader.insert({
require: ["tabview", "treeview"],
require: ["tabview", "treeview", "connectioncore", "connection"],
// require: ["uploader"],
//require: ["datatable", "dragdrop"],
//require: ["charts", "simpleeditor"],
Expand Down
1 change: 1 addition & 0 deletions src/yuiloader/README
Expand Up @@ -4,6 +4,7 @@ yuiloader - Release Notes
* Fixed uploader -min file resolution.
* added datemath module, updated calendar metadata accordingly.
* added event-simulate module, which was extracted from yuitest.
* connection split into connectioncore and connection rollup.

2.7.0
* Combo filtering fixed.
Expand Down
10 changes: 9 additions & 1 deletion src/yuiloader/js/yuiloader.js
Expand Up @@ -115,7 +115,15 @@
'connection': {
'type': 'js',
'path': 'connection/connection-min.js',
'requires': ['event']
'requires': ['event'],
'supersedes': ['connectioncore'],
},

'connectioncore': {
'type': 'js',
'path': 'connection/connection_core-min.js',
'requires': ['event'],
'pkg': 'connection'
},

'container': {
Expand Down

0 comments on commit c7c1696

Please sign in to comment.