Lines Matching refs:StorageFile

13 StorageFile = function(ui, data, title)  class
21 mxUtils.extend(StorageFile, DrawioFile);
26 StorageFile.prototype.autosaveDelay = 2000;
31 StorageFile.prototype.maxAutosaveDelay = 20000;
36 StorageFile.prototype.type = 'F';
44 StorageFile.prototype.getMode = function()
52 StorageFile.prototype.isAutosaveOptional = function()
63 StorageFile.prototype.getHash = function()
74 StorageFile.prototype.getTitle = function()
85 StorageFile.prototype.isRenamable = function()
96 StorageFile.prototype.save = function(revision, success, error)
107 StorageFile.prototype.saveAs = function(title, success, error)
119 StorageFile.insertFile = function(ui, title, data, success, error)
125 var file = new StorageFile(ui, data, title);
144 StorageFile.getFileContent(ui, title, function(data)
159 StorageFile.getFileContent = function(ui, title, success, error)
184 StorageFile.getFileInfo = function(ui, title, success, error)
212 StorageFile.prototype.saveFile = function(title, revision, success, error)
282 StorageFile.getFileInfo(this.ui, title, mxUtils.bind(this, function(data)
303 StorageFile.prototype.rename = function(title, success, error)
309 StorageFile.getFileInfo(this.ui, title, mxUtils.bind(this, function(data)
347 StorageFile.prototype.open = function()
358 StorageFile.prototype.getLatestVersion = function(success, error)
360 StorageFile.getFileContent(this.ui, this.title, mxUtils.bind(this, function(data)
362 success(new StorageFile(this.ui, data, this.title));
369 StorageFile.prototype.destroy = function()
386 StorageFile.listLocalStorageFiles = function(type)
422 StorageFile.migrate = function(db)
424 var lsFilesInfo = StorageFile.listLocalStorageFiles();
448 StorageFile.listFiles = function(ui, type, success, error)
470 success(StorageFile.listLocalStorageFiles(type));
485 StorageFile.deleteFile = function(ui, title, success, error)