mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-23 16:51:00 +08:00
Remove unused
This commit is contained in:
@ -669,16 +669,6 @@
|
||||
});
|
||||
};
|
||||
|
||||
var _processSaveResult = function(result, message) {
|
||||
_sendCommand({
|
||||
command: 'processSaveResult',
|
||||
data: {
|
||||
result: result,
|
||||
message: message
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
// TODO: remove processRightsChange, use denyEditingRights
|
||||
var _processRightsChange = function(enabled, message) {
|
||||
_sendCommand({
|
||||
@ -903,7 +893,6 @@
|
||||
|
||||
return {
|
||||
showMessage : _showMessage,
|
||||
processSaveResult : _processSaveResult,
|
||||
processRightsChange : _processRightsChange,
|
||||
denyEditingRights : _denyEditingRights,
|
||||
refreshHistory : _refreshHistory,
|
||||
|
||||
@ -59,10 +59,6 @@ if (window.Common === undefined) {
|
||||
$me.trigger('applyeditrights', data);
|
||||
},
|
||||
|
||||
'processSaveResult': function(data) {
|
||||
$me.trigger('processsaveresult', data);
|
||||
},
|
||||
|
||||
'processRightsChange': function(data) {
|
||||
$me.trigger('processrightschange', data);
|
||||
},
|
||||
|
||||
@ -605,16 +605,6 @@ define([
|
||||
}
|
||||
},
|
||||
|
||||
onProcessSaveResult: function(data) {
|
||||
this.api.asc_OnSaveEnd(data.result);
|
||||
if (data && data.result === false) {
|
||||
Common.UI.error({
|
||||
title: this.criticalErrorTitle,
|
||||
msg : _.isEmpty(data.message) ? this.errorProcessSaveResult : data.message
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
onProcessRightsChange: function(data) {
|
||||
if (data && data.enabled === false) {
|
||||
var me = this,
|
||||
@ -1538,7 +1528,6 @@ define([
|
||||
Common.component.Analytics.initialize('UA-12442749-13', 'Document Editor');
|
||||
|
||||
Common.Gateway.on('applyeditrights', _.bind(me.onApplyEditRights, me));
|
||||
Common.Gateway.on('processsaveresult', _.bind(me.onProcessSaveResult, me));
|
||||
Common.Gateway.on('processrightschange', _.bind(me.onProcessRightsChange, me));
|
||||
Common.Gateway.on('processmouse', _.bind(me.onProcessMouse, me));
|
||||
Common.Gateway.on('refreshhistory', _.bind(me.onRefreshHistory, me));
|
||||
|
||||
@ -1005,7 +1005,7 @@
|
||||
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.",
|
||||
"DE.Controllers.Main.errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
|
||||
"DE.Controllers.Main.errorPasswordIsNotCorrect": "The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
|
||||
"DE.Controllers.Main.errorProcessSaveResult": "Saving failed.",
|
||||
"del_DE.Controllers.Main.errorProcessSaveResult": "Saving failed.",
|
||||
"DE.Controllers.Main.errorSaveWatermark": "This file contains a watermark image linked to another domain.<br>To make it visible in PDF, update the watermark image so it links from the same domain as your document, or upload it from your computer.",
|
||||
"DE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"DE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.",
|
||||
|
||||
@ -533,7 +533,7 @@
|
||||
"criticalErrorTitle": "Error",
|
||||
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your administrator.",
|
||||
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
|
||||
"errorProcessSaveResult": "Saving failed.",
|
||||
"del_errorProcessSaveResult": "Saving failed.",
|
||||
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
||||
@ -402,7 +402,6 @@ class MainController extends Component {
|
||||
Common.Notifications.trigger('api:disconnect');
|
||||
}
|
||||
|
||||
Common.Gateway.on('processsaveresult', this.onProcessSaveResult.bind(this));
|
||||
Common.Gateway.on('processrightschange', this.onProcessRightsChange.bind(this));
|
||||
Common.Gateway.on('downloadas', this.onDownloadAs.bind(this));
|
||||
Common.Gateway.on('requestclose', this.onRequestClose.bind(this));
|
||||
@ -1236,20 +1235,6 @@ class MainController extends Component {
|
||||
else Common.Notifications.trigger('openPdfDropdownList', obj);
|
||||
}
|
||||
|
||||
onProcessSaveResult (data) {
|
||||
this.api.asc_OnSaveEnd(data.result);
|
||||
|
||||
if (data && data.result === false) {
|
||||
const { t } = this.props;
|
||||
const _t = t('Main', {returnObjects:true});
|
||||
|
||||
f7.dialog.alert(
|
||||
(!data.message) ? _t.errorProcessSaveResult : data.message,
|
||||
_t.criticalErrorTitle
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
onProcessRightsChange (data) {
|
||||
if (data && data.enabled === false) {
|
||||
const appOptions = this.props.storeAppOptions;
|
||||
|
||||
@ -520,16 +520,6 @@ define([
|
||||
}
|
||||
},
|
||||
|
||||
onProcessSaveResult: function(data) {
|
||||
this.api.asc_OnSaveEnd(data.result);
|
||||
if (data && data.result === false) {
|
||||
Common.UI.error({
|
||||
title: this.criticalErrorTitle,
|
||||
msg : _.isEmpty(data.message) ? this.errorProcessSaveResult : data.message
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
onProcessRightsChange: function(data) {
|
||||
if (data && data.enabled === false) {
|
||||
var me = this,
|
||||
@ -1157,7 +1147,6 @@ define([
|
||||
Common.component.Analytics.initialize('UA-12442749-13', 'Document Editor');
|
||||
|
||||
Common.Gateway.on('applyeditrights', _.bind(me.onApplyEditRights, me));
|
||||
Common.Gateway.on('processsaveresult', _.bind(me.onProcessSaveResult, me));
|
||||
Common.Gateway.on('processrightschange', _.bind(me.onProcessRightsChange, me));
|
||||
Common.Gateway.on('processmouse', _.bind(me.onProcessMouse, me));
|
||||
Common.Gateway.on('downloadas', _.bind(me.onDownloadAs, me));
|
||||
|
||||
@ -1074,7 +1074,7 @@
|
||||
"PDFE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"PDFE.Controllers.Main.errorPasswordIsNotCorrect": "The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
|
||||
"PDFE.Controllers.Main.errorPDFFormsLocked": "The action cannot be performed as it causes changes in locked forms.",
|
||||
"PDFE.Controllers.Main.errorProcessSaveResult": "Saving failed.",
|
||||
"del_PDFE.Controllers.Main.errorProcessSaveResult": "Saving failed.",
|
||||
"PDFE.Controllers.Main.errorSaveWatermark": "This file contains a watermark image linked to another domain.<br>To make it visible in PDF, update the watermark image so it links from the same domain as your document, or upload it from your computer.",
|
||||
"PDFE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"PDFE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.",
|
||||
|
||||
@ -550,16 +550,6 @@ define([
|
||||
}
|
||||
},
|
||||
|
||||
onProcessSaveResult: function(data) {
|
||||
this.api.asc_OnSaveEnd(data.result);
|
||||
if (data && data.result === false) {
|
||||
Common.UI.error({
|
||||
title: this.criticalErrorTitle,
|
||||
msg : _.isEmpty(data.message) ? this.errorProcessSaveResult : data.message
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
onProcessRightsChange: function(data) {
|
||||
if (data && data.enabled === false) {
|
||||
var me = this,
|
||||
@ -1112,7 +1102,6 @@ define([
|
||||
Common.component.Analytics.initialize('UA-12442749-13', 'Presentation Editor');
|
||||
|
||||
Common.Gateway.on('applyeditrights', _.bind(me.onApplyEditRights, me));
|
||||
Common.Gateway.on('processsaveresult', _.bind(me.onProcessSaveResult, me));
|
||||
Common.Gateway.on('processrightschange', _.bind(me.onProcessRightsChange, me));
|
||||
Common.Gateway.on('processmouse', _.bind(me.onProcessMouse, me));
|
||||
Common.Gateway.on('downloadas', _.bind(me.onDownloadAs, me));
|
||||
|
||||
@ -1087,7 +1087,7 @@
|
||||
"PE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
|
||||
"PE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
|
||||
"PE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"PE.Controllers.Main.errorProcessSaveResult": "Saving failed.",
|
||||
"del_PE.Controllers.Main.errorProcessSaveResult": "Saving failed.",
|
||||
"PE.Controllers.Main.errorSaveWatermark": "This file contains a watermark image linked to another domain.<br>To make it visible in PDF, update the watermark image so it links from the same domain as your document, or upload it from your computer.",
|
||||
"PE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"PE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.",
|
||||
|
||||
@ -93,7 +93,7 @@
|
||||
"criticalErrorTitle": "Error",
|
||||
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
|
||||
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
|
||||
"errorProcessSaveResult": "Saving failed.",
|
||||
"del_errorProcessSaveResult": "Saving failed.",
|
||||
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
||||
@ -584,7 +584,6 @@ class MainController extends Component {
|
||||
Common.Notifications.trigger('api:disconnect');
|
||||
}
|
||||
|
||||
Common.Gateway.on('processsaveresult', this.onProcessSaveResult.bind(this));
|
||||
Common.Gateway.on('processrightschange', this.onProcessRightsChange.bind(this));
|
||||
Common.Gateway.on('downloadas', this.onDownloadAs.bind(this));
|
||||
Common.Gateway.on('requestclose', this.onRequestClose.bind(this));
|
||||
@ -1050,19 +1049,6 @@ class MainController extends Component {
|
||||
}
|
||||
}
|
||||
|
||||
onProcessSaveResult (data) {
|
||||
this.api.asc_OnSaveEnd(data.result);
|
||||
|
||||
if (data && data.result === false) {
|
||||
const { t } = this.props;
|
||||
const _t = t('Controller.Main', {returnObjects:true});
|
||||
f7.dialog.alert(
|
||||
(!data.message) ? _t.errorProcessSaveResult : data.message,
|
||||
_t.criticalErrorTitle
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
onProcessRightsChange (data) {
|
||||
if (data && data.enabled === false) {
|
||||
const appOptions = this.props.storeAppOptions;
|
||||
|
||||
@ -626,16 +626,6 @@ define([
|
||||
this.api.asc_getEditorPermissions(this.editorConfig.licenseUrl, this.editorConfig.customerId);
|
||||
},
|
||||
|
||||
onProcessSaveResult: function(data) {
|
||||
this.api.asc_OnSaveEnd(data.result);
|
||||
if (data && data.result === false) {
|
||||
Common.UI.error({
|
||||
title: this.criticalErrorTitle,
|
||||
msg : _.isEmpty(data.message) ? this.errorProcessSaveResult : data.message
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
onProcessRightsChange: function(data) {
|
||||
if (data && data.enabled === false) {
|
||||
var me = this,
|
||||
@ -1161,7 +1151,6 @@ define([
|
||||
Common.component.Analytics.initialize('UA-12442749-13', 'Spreadsheet Editor');
|
||||
|
||||
Common.Gateway.on('applyeditrights', _.bind(me.onApplyEditRights, me));
|
||||
Common.Gateway.on('processsaveresult', _.bind(me.onProcessSaveResult, me));
|
||||
Common.Gateway.on('processrightschange', _.bind(me.onProcessRightsChange, me));
|
||||
Common.Gateway.on('processmouse', _.bind(me.onProcessMouse, me));
|
||||
Common.Gateway.on('downloadas', _.bind(me.onDownloadAs, me));
|
||||
|
||||
@ -1212,7 +1212,7 @@
|
||||
"SSE.Controllers.Main.errorPivotWithoutUnderlying": "The Pivot Table report was saved without the underlying data.<br>Use the 'Refresh' button to update the report.",
|
||||
"SSE.Controllers.Main.errorPrecedentsNoValidRef": "The Trace Precedents command requires that the active cell contain a formula which includes a valid references.",
|
||||
"SSE.Controllers.Main.errorPrintMaxPagesCount": "Unfortunately, it is not possible to print more than 1500 pages at once in the current program version.<br>This restriction will be removed in the upcoming releases.",
|
||||
"SSE.Controllers.Main.errorProcessSaveResult": "Saving failed",
|
||||
"del_SSE.Controllers.Main.errorProcessSaveResult": "Saving failed",
|
||||
"SSE.Controllers.Main.errorProtectedRange": "This range is not allowed for editing.",
|
||||
"SSE.Controllers.Main.errorSaveWatermark": "This file contains a watermark image linked to another domain.<br>To make it visible in PDF, update the watermark image so it links from the same domain as your document, or upload it from your computer.",
|
||||
"SSE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
|
||||
@ -95,7 +95,7 @@
|
||||
"criticalErrorTitle": "Error",
|
||||
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
|
||||
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
|
||||
"errorProcessSaveResult": "Saving is failed.",
|
||||
"del_errorProcessSaveResult": "Saving is failed.",
|
||||
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
||||
@ -751,7 +751,6 @@ class MainController extends Component {
|
||||
Common.component.Analytics.initialize('UA-12442749-13', 'Spreadsheet Editor');
|
||||
}
|
||||
|
||||
Common.Gateway.on('processsaveresult', this.onProcessSaveResult.bind(this));
|
||||
Common.Gateway.on('processrightschange', this.onProcessRightsChange.bind(this));
|
||||
Common.Gateway.on('downloadas', this.onDownloadAs.bind(this));
|
||||
Common.Gateway.on('requestclose', this.onRequestClose.bind(this));
|
||||
@ -1217,19 +1216,6 @@ class MainController extends Component {
|
||||
Common.component.Analytics.trackEvent('Print');
|
||||
}
|
||||
|
||||
onProcessSaveResult (data) {
|
||||
this.api.asc_OnSaveEnd(data.result);
|
||||
|
||||
if (data && data.result === false) {
|
||||
const { t } = this.props;
|
||||
const _t = t('Controller.Main', {returnObjects:true});
|
||||
f7.dialog.alert(
|
||||
(!data.message) ? _t.errorProcessSaveResult : data.message,
|
||||
_t.criticalErrorTitle
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
onProcessRightsChange (data) {
|
||||
if (data && data.enabled === false) {
|
||||
const appOptions = this.props.storeAppOptions;
|
||||
|
||||
@ -206,7 +206,7 @@
|
||||
"VE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
|
||||
"VE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
|
||||
"VE.Controllers.Main.errorPasswordIsNotCorrect": "The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
|
||||
"VE.Controllers.Main.errorProcessSaveResult": "Saving failed.",
|
||||
"del_VE.Controllers.Main.errorProcessSaveResult": "Saving failed.",
|
||||
"VE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"VE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.",
|
||||
"VE.Controllers.Main.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.",
|
||||
|
||||
@ -40,7 +40,7 @@
|
||||
"criticalErrorTitle": "Error",
|
||||
"errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please, contact your admin.",
|
||||
"errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.",
|
||||
"errorProcessSaveResult": "Saving failed.",
|
||||
"del_errorProcessSaveResult": "Saving failed.",
|
||||
"errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
|
||||
"errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
|
||||
"leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.",
|
||||
|
||||
Reference in New Issue
Block a user