~free.ekanayaka/lazr-js/update-gallery-form

« back to all changes in this revision

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

  • Committer: Sidnei da Silva
  • Date: 2010-05-07 16:54:12 UTC
  • mfrom: (166.8.16 3.1.1)
  • Revision ID: sidnei.da.silva@canonical.com-20100507165412-odo3abigpalv0419
- Merge yui-3.1.1

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.0
6
 
build: 2026
 
5
version: 3.1.1
 
6
build: 47
7
7
*/
8
8
YUI.add('dataschema-base', function(Y) {
9
9
 
69
69
Y.namespace("Parsers");
70
70
 
71
71
 
72
 
}, '3.1.0' ,{requires:['base']});
 
72
}, '3.1.1' ,{requires:['base']});
73
73
YUI.add('dataschema-json', function(Y) {
74
74
 
75
75
/**
366
366
Y.DataSchema.JSON = Y.mix(SchemaJSON, Y.DataSchema.Base);
367
367
 
368
368
 
369
 
}, '3.1.0' ,{requires:['json', 'dataschema-base']});
 
369
}, '3.1.1' ,{requires:['json', 'dataschema-base']});
370
370
YUI.add('dataschema-xml', function(Y) {
371
371
 
372
372
/**
550
550
Y.DataSchema.XML = Y.mix(SchemaXML, Y.DataSchema.Base);
551
551
 
552
552
 
553
 
}, '3.1.0' ,{requires:['dataschema-base']});
 
553
}, '3.1.1' ,{requires:['dataschema-base']});
554
554
YUI.add('dataschema-array', function(Y) {
555
555
 
556
556
/**
649
649
Y.DataSchema.Array = Y.mix(SchemaArray, Y.DataSchema.Base);
650
650
 
651
651
 
652
 
}, '3.1.0' ,{requires:['dataschema-base']});
 
652
}, '3.1.1' ,{requires:['dataschema-base']});
653
653
YUI.add('dataschema-text', function(Y) {
654
654
 
655
655
/**
757
757
Y.DataSchema.Text = Y.mix(SchemaText, Y.DataSchema.Base);
758
758
 
759
759
 
760
 
}, '3.1.0' ,{requires:['dataschema-base']});
761
 
 
762
 
 
763
 
YUI.add('dataschema', function(Y){}, '3.1.0' ,{use:['dataschema-base','dataschema-json','dataschema-xml','dataschema-array','dataschema-text']});
 
760
}, '3.1.1' ,{requires:['dataschema-base']});
 
761
 
 
762
 
 
763
YUI.add('dataschema', function(Y){}, '3.1.1' ,{use:['dataschema-base','dataschema-json','dataschema-xml','dataschema-array','dataschema-text']});
764
764