~ted/lazr-js/annoying-debug-message

« back to all changes in this revision

Viewing changes to src-js/lazrjs/yui/datasource/datasource.js

  • Committer: Launchpad Patch Queue Manager
  • Date: 2010-08-23 19:48:21 UTC
  • mfrom: (173.2.15 yui-3.1.2)
  • Revision ID: launchpad@pqm.canonical.com-20100823194821-a1npffz5qodt3ejf
[r=beuno] Land YUI 3.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
3
3
Code licensed under the BSD License:
4
4
http://developer.yahoo.com/yui/license.html
5
 
version: 3.1.1
6
 
build: 47
 
5
version: 3.1.2
 
6
build: 56
7
7
*/
8
8
YUI.add('datasource-local', function(Y) {
9
9
 
340
340
Y.namespace("DataSource").Local = DSLocal;
341
341
 
342
342
 
343
 
}, '3.1.1' ,{requires:['base']});
 
343
}, '3.1.2' ,{requires:['base']});
344
344
YUI.add('datasource-io', function(Y) {
345
345
 
346
346
/**
486
486
    
487
487
 
488
488
 
489
 
}, '3.1.1' ,{requires:['datasource-local', 'io']});
 
489
}, '3.1.2' ,{requires:['datasource-local', 'io']});
490
490
YUI.add('datasource-get', function(Y) {
491
491
 
492
492
/**
680
680
YUI.namespace("Env.DataSource.callbacks");
681
681
 
682
682
 
683
 
}, '3.1.1' ,{requires:['datasource-local', 'get']});
 
683
}, '3.1.2' ,{requires:['datasource-local', 'get']});
684
684
YUI.add('datasource-function', function(Y) {
685
685
 
686
686
/**
787
787
    
788
788
 
789
789
 
790
 
}, '3.1.1' ,{requires:['datasource-local']});
 
790
}, '3.1.2' ,{requires:['datasource-local']});
791
791
YUI.add('datasource-cache', function(Y) {
792
792
 
793
793
/**
915
915
Y.namespace('Plugin').DataSourceCache = DataSourceCache;
916
916
 
917
917
 
918
 
}, '3.1.1' ,{requires:['datasource-local', 'cache']});
 
918
}, '3.1.2' ,{requires:['datasource-local', 'cache']});
919
919
YUI.add('datasource-jsonschema', function(Y) {
920
920
 
921
921
/**
1020
1020
Y.namespace('Plugin').DataSourceJSONSchema = DataSourceJSONSchema;
1021
1021
 
1022
1022
 
1023
 
}, '3.1.1' ,{requires:['plugin', 'datasource-local', 'dataschema-json']});
 
1023
}, '3.1.2' ,{requires:['plugin', 'datasource-local', 'dataschema-json']});
1024
1024
YUI.add('datasource-xmlschema', function(Y) {
1025
1025
 
1026
1026
/**
1125
1125
Y.namespace('Plugin').DataSourceXMLSchema = DataSourceXMLSchema;
1126
1126
 
1127
1127
 
1128
 
}, '3.1.1' ,{requires:['plugin', 'datasource-local', 'dataschema-xml']});
 
1128
}, '3.1.2' ,{requires:['plugin', 'datasource-local', 'dataschema-xml']});
1129
1129
YUI.add('datasource-arrayschema', function(Y) {
1130
1130
 
1131
1131
/**
1230
1230
Y.namespace('Plugin').DataSourceArraySchema = DataSourceArraySchema;
1231
1231
 
1232
1232
 
1233
 
}, '3.1.1' ,{requires:['plugin', 'datasource-local', 'dataschema-array']});
 
1233
}, '3.1.2' ,{requires:['plugin', 'datasource-local', 'dataschema-array']});
1234
1234
YUI.add('datasource-textschema', function(Y) {
1235
1235
 
1236
1236
/**
1335
1335
Y.namespace('Plugin').DataSourceTextSchema = DataSourceTextSchema;
1336
1336
 
1337
1337
 
1338
 
}, '3.1.1' ,{requires:['plugin', 'datasource-local', 'dataschema-text']});
 
1338
}, '3.1.2' ,{requires:['plugin', 'datasource-local', 'dataschema-text']});
1339
1339
YUI.add('datasource-polling', function(Y) {
1340
1340
 
1341
1341
/**
1426
1426
Y.augment(Y.DataSource.Local, Pollable);
1427
1427
 
1428
1428
 
1429
 
}, '3.1.1' ,{requires:['datasource-local']});
1430
 
 
1431
 
 
1432
 
YUI.add('datasource', function(Y){}, '3.1.1' ,{use:['datasource-local','datasource-io','datasource-get','datasource-function','datasource-cache','datasource-jsonschema','datasource-xmlschema','datasource-arrayschema','datasource-textschema','datasource-polling']});
 
1429
}, '3.1.2' ,{requires:['datasource-local']});
 
1430
 
 
1431
 
 
1432
YUI.add('datasource', function(Y){}, '3.1.2' ,{use:['datasource-local','datasource-io','datasource-get','datasource-function','datasource-cache','datasource-jsonschema','datasource-xmlschema','datasource-arrayschema','datasource-textschema','datasource-polling']});
1433
1433