Lines Matching refs:prototype

70 DrawioFile.prototype.allChangesSavedKey = 'allChangesSaved';
75 DrawioFile.prototype.savingSpinnerKey = 'saving';
80 DrawioFile.prototype.savingStatusKey = 'saving';
85 DrawioFile.prototype.autosaveDelay = 1500;
91 DrawioFile.prototype.maxAutosaveDelay = 30000;
98 DrawioFile.prototype.optimisticSyncDelay = 300;
103 DrawioFile.prototype.autosaveThread = null;
108 DrawioFile.prototype.lastAutosave = null;
113 DrawioFile.prototype.lastSaved = null;
118 DrawioFile.prototype.lastChanged = null;
123 DrawioFile.prototype.opened = null;
128 DrawioFile.prototype.modified = false;
133 DrawioFile.prototype.shadowModified = false;
138 DrawioFile.prototype.data = null;
143 DrawioFile.prototype.shadowData = null;
148 DrawioFile.prototype.shadowPages = null;
153 DrawioFile.prototype.changeListenerEnabled = true;
158 DrawioFile.prototype.lastAutosaveRevision = null;
164 DrawioFile.prototype.maxAutosaveRevisionDelay = 300000;
169 DrawioFile.prototype.inConflictState = false;
174 DrawioFile.prototype.invalidChecksum = false;
179 DrawioFile.prototype.errorReportsEnabled = false;
184 DrawioFile.prototype.ageStart = null;
189 DrawioFile.prototype.getSize = function()
197 DrawioFile.prototype.synchronizeFile = function(success, error)
222 DrawioFile.prototype.updateFile = function(success, error, abort, shadow)
276 DrawioFile.prototype.mergeFile = function(file, success, error, diffShadow)
412 DrawioFile.prototype.getAnonymizedXmlForPages = function(pages)
445 DrawioFile.prototype.compressReportData = function(data, limit, max)
464 DrawioFile.prototype.checksumError = function(error, patches, details, etag, functionName)
558 DrawioFile.prototype.sendErrorReport = function(title, details, error, max)
609 DrawioFile.prototype.reloadFile = function(success, error)
675 DrawioFile.prototype.copyFile = function(success, error)
684 DrawioFile.prototype.ignorePatches = function(patches)
699 DrawioFile.prototype.patch = function(patches, resolver, undoable)
803 DrawioFile.prototype.save = function(revision, success, error, unloading, overwrite, manual)
859 DrawioFile.prototype.updateFileData = function()
870 DrawioFile.prototype.isCompressedStorage = function()
881 DrawioFile.prototype.isCompressed = function()
901 DrawioFile.prototype.saveAs = function(filename, success, error) { };
909 DrawioFile.prototype.saveFile = function(title, revision, success, error) { };
914 DrawioFile.prototype.getPublicUrl = function(fn)
922 DrawioFile.prototype.isRestricted = function()
933 DrawioFile.prototype.isModified = function()
944 DrawioFile.prototype.getShadowModified = function()
955 DrawioFile.prototype.setShadowModified = function(value)
966 DrawioFile.prototype.setModified = function(value)
976 DrawioFile.prototype.isAutosaveOptional = function()
987 DrawioFile.prototype.isAutosave = function()
998 DrawioFile.prototype.isRenamable = function()
1009 DrawioFile.prototype.rename = function(title, success, error) { };
1017 DrawioFile.prototype.isMovable = function()
1028 DrawioFile.prototype.isTrashed = function()
1039 DrawioFile.prototype.move = function(folderId, success, error) { };
1047 DrawioFile.prototype.share = function()
1056 DrawioFile.prototype.getHash = function()
1064 DrawioFile.prototype.getId = function()
1072 DrawioFile.prototype.isEditable = function()
1081 DrawioFile.prototype.getUi = function()
1089 DrawioFile.prototype.getTitle = function()
1097 DrawioFile.prototype.setData = function(data)
1105 DrawioFile.prototype.getData = function()
1113 DrawioFile.prototype.open = function()
1159 DrawioFile.prototype.isSyncSupported = function()
1167 DrawioFile.prototype.isRevisionHistorySupported = function()
1175 DrawioFile.prototype.getRevisions = function(success, error)
1184 DrawioFile.prototype.loadDescriptor = function(success, error)
1193 DrawioFile.prototype.loadPatchDescriptor = function(success, error)
1204 DrawioFile.prototype.patchDescriptor = function(desc, patch)
1213 DrawioFile.prototype.startSync = function()
1231 DrawioFile.prototype.isConflict = function()
1239 DrawioFile.prototype.getChannelId = function()
1248 DrawioFile.prototype.getChannelKey = function(desc)
1256 DrawioFile.prototype.getCurrentUser = function()
1265 DrawioFile.prototype.getLatestVersion = function(success, error)
1273 DrawioFile.prototype.getLastModifiedDate = function()
1281 DrawioFile.prototype.setCurrentRevisionId = function(id)
1289 DrawioFile.prototype.getCurrentRevisionId = function()
1297 DrawioFile.prototype.setCurrentEtag = function(etag)
1305 DrawioFile.prototype.getCurrentEtag = function()
1313 DrawioFile.prototype.getDescriptor = function()
1321 DrawioFile.prototype.setDescriptor = function() { };
1326 DrawioFile.prototype.setDescriptorRevisionId = function(desc, id)
1334 DrawioFile.prototype.getDescriptorRevisionId = function(desc)
1342 DrawioFile.prototype.setDescriptorEtag = function(desc, etag) { };
1347 DrawioFile.prototype.getDescriptorEtag = function(desc)
1363 DrawioFile.prototype.getDescriptorSecret = function(desc)
1371 DrawioFile.prototype.installListeners = function()
1409 DrawioFile.prototype.addAllSavedStatus = function(status)
1433 DrawioFile.prototype.saveDraft = function()
1463 DrawioFile.prototype.removeDraft = function()
1482 DrawioFile.prototype.addUnsavedStatus = function(err)
1559 DrawioFile.prototype.addConflictStatus = function(fn, message)
1595 DrawioFile.prototype.setConflictStatus = function(message)
1605 DrawioFile.prototype.showRefreshDialog = function(success, error, message)
1645 DrawioFile.prototype.showCopyDialog = function(success, error, overwrite)
1666 DrawioFile.prototype.showConflictDialog = function(overwrite, synchronize)
1682 DrawioFile.prototype.redirectToNewApp = function(error, details)
1757 DrawioFile.prototype.handleFileSuccess = function(saved)
1800 DrawioFile.prototype.handleFileError = function(err, manual)
1841 DrawioFile.prototype.handleConflictError = function(err, manual)
1908 DrawioFile.prototype.getErrorMessage = function(err)
1923 DrawioFile.prototype.isOverdue = function()
1931 DrawioFile.prototype.fileChanged = function()
1989 DrawioFile.prototype.isOptimisticSync = function()
1997 DrawioFile.prototype.createSecret = function(success)
2020 DrawioFile.prototype.fileSaving = function()
2033 DrawioFile.prototype.sendFileChanges = function()
2060 DrawioFile.prototype.fileSaved = function(savedData, lastDesc, success, error, token)
2136 DrawioFile.prototype.autosave = function(delay, maxDelay, success, error)
2204 DrawioFile.prototype.isAutosaveNow = function()
2212 DrawioFile.prototype.autosaveCompleted = function() { };
2217 DrawioFile.prototype.clearAutosave = function()
2230 DrawioFile.prototype.isAutosaveRevision = function()
2243 DrawioFile.prototype.descriptorChanged = function()
2254 DrawioFile.prototype.contentChanged = function()
2262 DrawioFile.prototype.close = function(unloading)
2278 DrawioFile.prototype.hasSameExtension = function(title, newTitle)
2295 DrawioFile.prototype.removeListeners = function()
2309 DrawioFile.prototype.destroy = function()
2325 DrawioFile.prototype.commentsSupported = function()
2333 DrawioFile.prototype.commentsRefreshNeeded = function()
2341 DrawioFile.prototype.commentsSaveNeeded = function()
2349 DrawioFile.prototype.getComments = function(success, error)
2357 DrawioFile.prototype.addComment = function(comment, success, error)
2365 DrawioFile.prototype.canReplyToReplies = function()
2373 DrawioFile.prototype.canComment = function()
2381 DrawioFile.prototype.newComment = function(content, user)