Updated dists.

This commit is contained in:
Alan Kligman 2013-07-29 17:58:55 -04:00
parent aeccbd4d3f
commit 0256c2fece
3 changed files with 37 additions and 8 deletions

21
dist/idbfs.js vendored
View File

@ -6753,9 +6753,6 @@ define('src/file-system',['require','lodash','when','src/path','src/path','src/p
callback(new EFileSystemError('unknown error'));
}
);
};
FileSystem.prototype.readdir = function readdir(path, callback) {
};
FileSystem.prototype.stat = function stat(path, callback) {
var that = this;
@ -7061,7 +7058,10 @@ define('src/file-system',['require','lodash','when','src/path','src/path','src/p
}
);
};
FileSystem.prototype.utime = function utime(path, atime, mtime, callback) {
FileSystem.prototype.readdir = function readdir(path, callback) {
};
FileSystem.prototype.utimes = function utimes(path, atime, mtime, callback) {
};
FileSystem.prototype.rename = function rename(oldpath, newpath, callback) {
@ -7073,6 +7073,19 @@ define('src/file-system',['require','lodash','when','src/path','src/path','src/p
FileSystem.prototype.ftruncate = function ftruncate(fd, length, callback) {
};
FileSystem.prototype.symlink = function symlink(fd, length, callback) {
};
FileSystem.prototype.readlink = function readlink(fd, length, callback) {
};
FileSystem.prototype.realpath = function realpath(fd, length, callback) {
};
FileSystem.prototype.lstat = function lstat(fd, length, callback) {
};
return {
FileSystem: FileSystem,

3
dist/idbfs.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -953,9 +953,6 @@ define(function(require) {
callback(new EFileSystemError('unknown error'));
}
);
};
FileSystem.prototype.readdir = function readdir(path, callback) {
};
FileSystem.prototype.stat = function stat(path, callback) {
var that = this;
@ -1261,7 +1258,10 @@ define(function(require) {
}
);
};
FileSystem.prototype.utime = function utime(path, atime, mtime, callback) {
FileSystem.prototype.readdir = function readdir(path, callback) {
};
FileSystem.prototype.utimes = function utimes(path, atime, mtime, callback) {
};
FileSystem.prototype.rename = function rename(oldpath, newpath, callback) {
@ -1273,6 +1273,19 @@ define(function(require) {
FileSystem.prototype.ftruncate = function ftruncate(fd, length, callback) {
};
FileSystem.prototype.symlink = function symlink(fd, length, callback) {
};
FileSystem.prototype.readlink = function readlink(fd, length, callback) {
};
FileSystem.prototype.realpath = function realpath(fd, length, callback) {
};
FileSystem.prototype.lstat = function lstat(fd, length, callback) {
};
return {
FileSystem: FileSystem,