Initial commit

This commit is contained in:
易焱
2021-03-13 18:42:01 +08:00
commit d9a3c376d5
3243 changed files with 627198 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
/**
* @fileOverview 完全版本。
*/
define([
'../base',
// widgets
'../widgets/filednd',
'../widgets/filepaste',
'../widgets/filepicker',
'../widgets/image',
'../widgets/queue',
'../widgets/runtime',
'../widgets/upload',
'../widgets/validator',
'../widgets/md5',
// runtimes
// html5
'../runtime/html5/blob',
'../runtime/html5/dnd',
'../runtime/html5/filepaste',
'../runtime/html5/filepicker',
'../runtime/html5/imagemeta/exif',
'../runtime/html5/androidpatch',
'../runtime/html5/image',
'../runtime/html5/transport',
'../runtime/html5/md5',
// flash
'../runtime/flash/filepicker',
'../runtime/flash/image',
'../runtime/flash/transport',
'../runtime/flash/blob',
'../runtime/flash/md5'
], function( Base ) {
return Base;
});
@@ -0,0 +1,24 @@
/**
* @fileOverview 只有flash实现的文件版本。
*/
define([
'../base',
// widgets
'../widgets/filepicker',
'../widgets/image',
'../widgets/queue',
'../widgets/runtime',
'../widgets/upload',
'../widgets/validator',
// runtimes
// flash
'../runtime/flash/filepicker',
'../runtime/flash/image',
'../runtime/flash/blob',
'../runtime/flash/transport'
], function( Base ) {
return Base;
});
@@ -0,0 +1,28 @@
/**
* @fileOverview 只有html5实现的文件版本。
*/
define([
'../base',
// widgets
'../widgets/filednd',
'../widgets/filepaste',
'../widgets/filepicker',
'../widgets/image',
'../widgets/queue',
'../widgets/runtime',
'../widgets/upload',
'../widgets/validator',
// runtimes
// html5
'../runtime/html5/blob',
'../runtime/html5/dnd',
'../runtime/html5/filepaste',
'../runtime/html5/filepicker',
'../runtime/html5/imagemeta/exif',
'../runtime/html5/image',
'../runtime/html5/transport'
], function( Base ) {
return Base;
});
@@ -0,0 +1,30 @@
/**
* @fileOverview 没有图像处理的版本。
*/
define([
'../base',
// widgets
'../widgets/filednd',
'../widgets/filepaste',
'../widgets/filepicker',
'../widgets/queue',
'../widgets/runtime',
'../widgets/upload',
'../widgets/validator',
// runtimes
// html5
'../runtime/html5/blob',
'../runtime/html5/dnd',
'../runtime/html5/filepaste',
'../runtime/html5/filepicker',
'../runtime/html5/transport',
// flash
'../runtime/flash/filepicker',
'../runtime/flash/transport',
'../runtime/flash/blob'
], function( Base ) {
return Base;
});