Lines Matching refs:desc

97 		var vSettings = curFile.desc.viewerSettings;
1332 return this.desc.id != null;
1341 return this.desc.id == null;
1404 var lastDesc = this.desc;
1406 this.desc.secret = secret;
1407 this.desc.key = this.desc.key? this.desc.key : Editor.guid(32);
1408 this.desc.channel = this.desc.channel? this.desc.channel : Editor.guid(32);
1409 this.desc.etagP = this.desc.etagP? this.desc.etagP : Editor.guid(32);
1410 this.desc.title = this.desc.title? this.desc.title : macroData.diagramDisplayName;
1412 …ui.remoteInvoke('saveDraftWithFileDesc', [savedData, this.desc], null, mxUtils.bind(this, function…
1434 this.desc = resp;
1474 mxUtils.bind(this, function(err, desc) argument
1491 this.sync.fileConflict(desc, mxUtils.bind(this, function()
1584 this.desc.title = title;
1586 ui.remoteInvoke('setFileDescriptor', [this.desc], null, mxUtils.bind(this, function(desc) argument
1588 this.desc = desc;
1598 success(desc);
1608 return this.desc.title || macroData.diagramDisplayName;
1624 return this.desc.id;
1632 return this.desc.id != null;
1648 ui.remoteInvoke('getDraftFileContent', null, null, mxUtils.bind(this, function(data, desc) argument
1650 success(new EmbedFile(ui, data, desc));
1659 var chan = this.desc.channel;
1674 return this.desc.key;
1682 return new Date(this.desc.modifiedDate);
1690 return this.desc;
1696 EmbedFile.prototype.setDescriptor = function(desc) argument
1698 this.desc = desc;
1704 EmbedFile.prototype.getDescriptorSecret = function(desc) argument
1706 return desc.secret;
1712 EmbedFile.prototype.setDescriptorRevisionId = function(desc, id) argument
1714 desc.headRevisionId = id;
1720 EmbedFile.prototype.getDescriptorRevisionId = function(desc) argument
1722 return desc.headRevisionId;
1728 EmbedFile.prototype.getDescriptorEtag = function(desc) argument
1730 return desc.etag;
1736 EmbedFile.prototype.setDescriptorEtag = function(desc, etag) argument
1738 desc.etag = etag;
1744 EmbedFile.prototype.patchDescriptor = function(desc, patch) argument
1748 desc.headRevisionId = patch.headRevisionId;
1749 desc.modifiedDate = patch.modifiedDate;
1774 var desc = curFile.getDescriptor();
1775 var isNewFile = desc == null || desc.key == null;
1801 if (desc != null)
1803 desc.viewerSettings = {
1843 ui.remoteInvoke('setFileDescriptor', [desc], null, doActions, doActions);
1874 file.loadDescriptor(function(desc) argument
1876 file.desc = desc;
1879 if (file.desc)
1883 if (file.desc.title && file.desc.title != macroData.diagramDisplayName)
1885 macroData.diagramDisplayName = file.desc.title;
1889 if (file.desc.viewerSettings != null)