Lines Matching refs:error

197 DrawioFile.prototype.synchronizeFile = function(success, error)  argument
201 if (error != null)
203 error({message: mxResources.get('busy')});
210 this.sync.fileChanged(success, error);
214 this.updateFile(success, error);
222 DrawioFile.prototype.updateFile = function(success, error, abort, shadow) argument
228 if (error != null)
230 error();
243 if (error != null)
245 error();
252 this.mergeFile(latestFile, success, error, shadow);
256 this.reloadFile(success, error);
263 if (error != null)
265 error(e);
268 }), error);
276 DrawioFile.prototype.mergeFile = function(file, success, error, diffShadow) argument
333 this.checksumError(error, patches,
378 if (error != null)
380 error(e);
464 DrawioFile.prototype.checksumError = function(error, patches, details, etag, functionName) argument
476 if (error != null)
478 error();
558 DrawioFile.prototype.sendErrorReport = function(title, details, error, max) argument
580 var stack = (error != null) ? error.stack : new Error().stack;
595 ((error != null) ? ('\n\nError: ' + error.message) : '') +
609 DrawioFile.prototype.reloadFile = function(success, error) argument
665 if (error != null)
667 error(e);
675 DrawioFile.prototype.copyFile = function(success, error) argument
803 DrawioFile.prototype.save = function(revision, success, error, unloading, overwrite, manual) argument
809 if (error != null)
811 error({message: mxResources.get('readOnly')});
820 if (error != null)
822 error({message: mxResources.get('checksum')});
842 if (error != null)
844 error(e);
901 DrawioFile.prototype.saveAs = function(filename, success, error) { }; argument
909 DrawioFile.prototype.saveFile = function(title, revision, success, error) { }; argument
1009 DrawioFile.prototype.rename = function(title, success, error) { }; argument
1039 DrawioFile.prototype.move = function(folderId, success, error) { }; argument
1175 DrawioFile.prototype.getRevisions = function(success, error) argument
1184 DrawioFile.prototype.loadDescriptor = function(success, error) argument
1193 DrawioFile.prototype.loadPatchDescriptor = function(success, error) argument
1198 }), error);
1265 DrawioFile.prototype.getLatestVersion = function(success, error) argument
1605 DrawioFile.prototype.showRefreshDialog = function(success, error, message) argument
1616 this.reloadFile(success, error);
1624 this.showRefreshDialog(success, error);
1631 this.copyFile(success, error);
1634 this.reloadFile(success, error);
1645 DrawioFile.prototype.showCopyDialog = function(success, error, overwrite) argument
1655 this.copyFile(success, error);
1682 DrawioFile.prototype.redirectToNewApp = function(error, details) argument
1715 if (error == null && this.isModified())
1728 if (error != null)
1735 error();
1743 error();
1848 var error = mxUtils.bind(this, function(err2)
1859 this.save(true, success, error, null, true, (isRepoFile &&
1875 this.save(true, success, error, null, null, (isRepoFile &&
1878 }), error);
1884 this.showCopyDialog(success, error, overwrite);
1888 this.showRefreshDialog(success, error, this.getErrorMessage(err));
1900 this.synchronizeFile(success, error);
1910 var msg = (err != null) ? ((err.error != null) ? err.error.message : err.message) : null;
2060 DrawioFile.prototype.fileSaved = function(savedData, lastDesc, success, error, token) argument
2091 lastDesc, success, error, token);
2100 if (error != null)
2102 error(e);
2136 DrawioFile.prototype.autosave = function(delay, maxDelay, success, error) argument
2177 if (error != null)
2179 error(resp);
2349 DrawioFile.prototype.getComments = function(success, error) argument
2357 DrawioFile.prototype.addComment = function(comment, success, error) argument