Merge pull request #396 from ONLYOFFICE/hotfix/v5.5.3

Hotfix/v5.5.3
This commit is contained in:
Julia Radzhabova 2020-05-08 13:06:21 +03:00 committed by GitHub
commit 8e2b6c270f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 52 additions and 60 deletions

View file

@ -55,7 +55,7 @@ define([
_.extend(_options, { _.extend(_options, {
width : 350, width : 350,
height : 220, height : 238,
header : true, header : true,
cls : 'modal-dlg', cls : 'modal-dlg',
contentTemplate : '', contentTemplate : '',
@ -65,7 +65,7 @@ define([
}, options); }, options);
this.template = options.template || [ this.template = options.template || [
'<div class="box" style="height:' + (_options.height - 85) + 'px;">', '<div class="box">',
'<div class="input-row" style="margin-bottom: 10px;">', '<div class="input-row" style="margin-bottom: 10px;">',
'<label>' + t.txtDescription + '</label>', '<label>' + t.txtDescription + '</label>',
'</div>', '</div>',
@ -76,9 +76,8 @@ define([
'<div class="input-row">', '<div class="input-row">',
'<label>' + t.txtRepeat + '</label>', '<label>' + t.txtRepeat + '</label>',
'</div>', '</div>',
'<div id="id-repeat-txt" class="input-row"></div>', '<div id="id-repeat-txt" class="input-row" style="margin-bottom: 10px;"></div>',
'</div>', '</div>'
'<div class="separator horizontal"/>'
].join(''); ].join('');
this.handler = options.handler; this.handler = options.handler;

View file

@ -414,6 +414,10 @@ DE.ApplicationController = new(function(){
message = me.errorUpdateVersionOnDisconnect; message = me.errorUpdateVersionOnDisconnect;
break; break;
case Asc.c_oAscError.ID.AccessDeny:
message = me.errorAccessDeny;
break;
default: default:
message = me.errorDefaultMessage.replace('%1', id); message = me.errorDefaultMessage.replace('%1', id);
break; break;

View file

@ -414,6 +414,7 @@ define([
docInfo.put_CallbackUrl(this.editorConfig.callbackUrl); docInfo.put_CallbackUrl(this.editorConfig.callbackUrl);
docInfo.put_Token(data.doc.token); docInfo.put_Token(data.doc.token);
docInfo.put_Permissions(_permissions); docInfo.put_Permissions(_permissions);
docInfo.put_EncryptedInfo(this.editorConfig.encryptionKeys);
// docInfo.put_Review(this.permissions.review); // docInfo.put_Review(this.permissions.review);
var type = /^(?:(pdf|djvu|xps))$/.exec(data.doc.fileType); var type = /^(?:(pdf|djvu|xps))$/.exec(data.doc.fileType);

View file

@ -45,6 +45,7 @@ define([
DE.Views.StyleTitleDialog = Common.UI.Window.extend(_.extend({ DE.Views.StyleTitleDialog = Common.UI.Window.extend(_.extend({
options: { options: {
width: 350, width: 350,
height: 196,
style: 'min-width: 230px;', style: 'min-width: 230px;',
cls: 'modal-dlg', cls: 'modal-dlg',
buttons: ['ok', 'cancel'] buttons: ['ok', 'cancel']

View file

@ -1122,7 +1122,7 @@
"DE.Views.ImageSettings.textEdit": "Muokkaa", "DE.Views.ImageSettings.textEdit": "Muokkaa",
"DE.Views.ImageSettings.textEditObject": "Muokkaa objektia", "DE.Views.ImageSettings.textEditObject": "Muokkaa objektia",
"DE.Views.ImageSettings.textFromFile": "Tiedostosta", "DE.Views.ImageSettings.textFromFile": "Tiedostosta",
"DE.Views.ImageSettings.textFromUrl": "Verkko-osoitteesta", "DE.Views.ImageSettings.textFromUrl": "URL-osoitteesta",
"DE.Views.ImageSettings.textHeight": "Korkeus", "DE.Views.ImageSettings.textHeight": "Korkeus",
"DE.Views.ImageSettings.textInsert": "Korvaa kuva", "DE.Views.ImageSettings.textInsert": "Korvaa kuva",
"DE.Views.ImageSettings.textOriginalSize": "Oletuskoko", "DE.Views.ImageSettings.textOriginalSize": "Oletuskoko",

View file

@ -253,6 +253,7 @@ define([
docInfo.put_CallbackUrl(this.editorConfig.callbackUrl); docInfo.put_CallbackUrl(this.editorConfig.callbackUrl);
docInfo.put_Token(data.doc.token); docInfo.put_Token(data.doc.token);
docInfo.put_Permissions(_permissions); docInfo.put_Permissions(_permissions);
docInfo.put_EncryptedInfo(this.editorConfig.encryptionKeys);
var type = /^(?:(pdf|djvu|xps))$/.exec(data.doc.fileType); var type = /^(?:(pdf|djvu|xps))$/.exec(data.doc.fileType);
if (type && typeof type[1] === 'string') { if (type && typeof type[1] === 'string') {

View file

@ -514,6 +514,10 @@ PE.ApplicationController = new(function(){
message = me.errorUpdateVersionOnDisconnect; message = me.errorUpdateVersionOnDisconnect;
break; break;
case Asc.c_oAscError.ID.AccessDeny:
message = me.errorAccessDeny;
break;
default: default:
message = me.errorDefaultMessage.replace('%1', id); message = me.errorDefaultMessage.replace('%1', id);
break; break;

View file

@ -372,6 +372,7 @@ define([
docInfo.put_CallbackUrl(this.editorConfig.callbackUrl); docInfo.put_CallbackUrl(this.editorConfig.callbackUrl);
docInfo.put_Token(data.doc.token); docInfo.put_Token(data.doc.token);
docInfo.put_Permissions(_permissions); docInfo.put_Permissions(_permissions);
docInfo.put_EncryptedInfo(this.editorConfig.encryptionKeys);
} }
this.api.asc_registerCallback('asc_onGetEditorPermissions', _.bind(this.onEditorPermissions, this)); this.api.asc_registerCallback('asc_onGetEditorPermissions', _.bind(this.onEditorPermissions, this));

View file

@ -949,7 +949,7 @@
"PE.Views.ImageSettings.textEdit": "Muokkaa", "PE.Views.ImageSettings.textEdit": "Muokkaa",
"PE.Views.ImageSettings.textEditObject": "Muokkaa objektia", "PE.Views.ImageSettings.textEditObject": "Muokkaa objektia",
"PE.Views.ImageSettings.textFromFile": "Tiedostosta", "PE.Views.ImageSettings.textFromFile": "Tiedostosta",
"PE.Views.ImageSettings.textFromUrl": "Verkko-osoitteesta", "PE.Views.ImageSettings.textFromUrl": "URL-osoitteesta",
"PE.Views.ImageSettings.textHeight": "Korkeus", "PE.Views.ImageSettings.textHeight": "Korkeus",
"PE.Views.ImageSettings.textInsert": "Korvaa kuva", "PE.Views.ImageSettings.textInsert": "Korvaa kuva",
"PE.Views.ImageSettings.textOriginalSize": "Oletuskoko", "PE.Views.ImageSettings.textOriginalSize": "Oletuskoko",
@ -1112,7 +1112,7 @@
"PE.Views.SlideSettings.textEmptyPattern": "Ei kuviota", "PE.Views.SlideSettings.textEmptyPattern": "Ei kuviota",
"PE.Views.SlideSettings.textFade": "Häivytys", "PE.Views.SlideSettings.textFade": "Häivytys",
"PE.Views.SlideSettings.textFromFile": "Tiedostosta", "PE.Views.SlideSettings.textFromFile": "Tiedostosta",
"PE.Views.SlideSettings.textFromUrl": "Verkko-osoitteesta", "PE.Views.SlideSettings.textFromUrl": "URL-osoitteesta",
"PE.Views.SlideSettings.textGradient": "Kalteva", "PE.Views.SlideSettings.textGradient": "Kalteva",
"PE.Views.SlideSettings.textGradientFill": "Kalteva täyttö", "PE.Views.SlideSettings.textGradientFill": "Kalteva täyttö",
"PE.Views.SlideSettings.textHorizontalIn": "Sisään vaakasuoraan", "PE.Views.SlideSettings.textHorizontalIn": "Sisään vaakasuoraan",
@ -1262,7 +1262,7 @@
"PE.Views.TextArtSettings.textDirection": "Suunta", "PE.Views.TextArtSettings.textDirection": "Suunta",
"PE.Views.TextArtSettings.textEmptyPattern": "Ei kuviota", "PE.Views.TextArtSettings.textEmptyPattern": "Ei kuviota",
"PE.Views.TextArtSettings.textFromFile": "Tiedostosta", "PE.Views.TextArtSettings.textFromFile": "Tiedostosta",
"PE.Views.TextArtSettings.textFromUrl": "Verkko-osoitteesta", "PE.Views.TextArtSettings.textFromUrl": "URL-osoitteesta",
"PE.Views.TextArtSettings.textGradient": "Kalteva", "PE.Views.TextArtSettings.textGradient": "Kalteva",
"PE.Views.TextArtSettings.textGradientFill": "Kalteva täyttö", "PE.Views.TextArtSettings.textGradientFill": "Kalteva täyttö",
"PE.Views.TextArtSettings.textImageTexture": "Kuva tai pintarakenne", "PE.Views.TextArtSettings.textImageTexture": "Kuva tai pintarakenne",

View file

@ -256,6 +256,7 @@ define([
docInfo.put_CallbackUrl(this.editorConfig.callbackUrl); docInfo.put_CallbackUrl(this.editorConfig.callbackUrl);
docInfo.put_Token(data.doc.token); docInfo.put_Token(data.doc.token);
docInfo.put_Permissions(_permissions); docInfo.put_Permissions(_permissions);
docInfo.put_EncryptedInfo(this.editorConfig.encryptionKeys);
} }
this.api.asc_registerCallback('asc_onGetEditorPermissions', _.bind(this.onEditorPermissions, this)); this.api.asc_registerCallback('asc_onGetEditorPermissions', _.bind(this.onEditorPermissions, this));

View file

@ -422,6 +422,10 @@ SSE.ApplicationController = new(function(){
message = me.errorUpdateVersionOnDisconnect; message = me.errorUpdateVersionOnDisconnect;
break; break;
case Asc.c_oAscError.ID.AccessDeny:
message = me.errorAccessDeny;
break;
default: default:
message = me.errorDefaultMessage.replace('%1', id); message = me.errorDefaultMessage.replace('%1', id);
break; break;

View file

@ -2058,7 +2058,7 @@ define([
name = menuItem.asc_getName(true), name = menuItem.asc_getName(true),
origname = me.api.asc_getFormulaNameByLocale(name), origname = me.api.asc_getFormulaNameByLocale(name),
mnu = new Common.UI.MenuItem({ mnu = new Common.UI.MenuItem({
iconCls: (type==Asc.c_oAscPopUpSelectorType.Func) ? 'mnu-popup-func': ((type==Asc.c_oAscPopUpSelectorType.Table) ? 'mnu-popup-table' : 'mnu-popup-range') , iconCls: 'menu__icon ' + ((type==Asc.c_oAscPopUpSelectorType.Func) ? 'btn-function': ((type==Asc.c_oAscPopUpSelectorType.Table) ? 'btn-menu-table' : 'btn-named-range')) ,
caption: name, caption: name,
hint : (funcdesc && funcdesc[origname]) ? funcdesc[origname].d : '' hint : (funcdesc && funcdesc[origname]) ? funcdesc[origname].d : ''
}).on('click', function(item, e) { }).on('click', function(item, e) {
@ -2223,8 +2223,8 @@ define([
this.documentHolder.cmpEl.append(inputtip.parentEl); this.documentHolder.cmpEl.append(inputtip.parentEl);
} }
var hint = title ? ('<b>' + (title || '') + '</b><br>') : ''; var hint = title ? ('<b>' + (Common.Utils.String.htmlEncode(title || '')) + '</b><br>') : '';
hint += (message || ''); hint += (Common.Utils.String.htmlEncode(message || ''));
if (inputtip.ref && inputtip.ref.isVisible()) { if (inputtip.ref && inputtip.ref.isVisible()) {
if (inputtip.text != hint) { if (inputtip.text != hint) {
@ -2259,7 +2259,8 @@ define([
inputtip.ref.getBSTip().$tip.css({ inputtip.ref.getBSTip().$tip.css({
top : showPoint[1] + 'px', top : showPoint[1] + 'px',
left: showPoint[0] + 'px' left: showPoint[0] + 'px',
'z-index': 900
}); });
} else { } else {
if (!inputtip.isHidden && inputtip.ref) { if (!inputtip.isHidden && inputtip.ref) {

View file

@ -420,6 +420,7 @@ define([
docInfo.put_CallbackUrl(this.editorConfig.callbackUrl); docInfo.put_CallbackUrl(this.editorConfig.callbackUrl);
docInfo.put_Token(data.doc.token); docInfo.put_Token(data.doc.token);
docInfo.put_Permissions(_permissions); docInfo.put_Permissions(_permissions);
docInfo.put_EncryptedInfo(this.editorConfig.encryptionKeys);
this.headerView && this.headerView.setDocumentCaption(data.doc.title); this.headerView && this.headerView.setDocumentCaption(data.doc.title);
@ -1453,9 +1454,9 @@ define([
if (icon!==undefined) { if (icon!==undefined) {
config.iconCls = (icon==Asc.c_oAscEDataValidationErrorStyle.Stop) ? 'error' : ((icon==Asc.c_oAscEDataValidationErrorStyle.Information) ? 'info' : 'warn'); config.iconCls = (icon==Asc.c_oAscEDataValidationErrorStyle.Stop) ? 'error' : ((icon==Asc.c_oAscEDataValidationErrorStyle.Information) ? 'info' : 'warn');
} }
errData && errData.asc_getErrorTitle() && (config.title = errData.asc_getErrorTitle()); errData && errData.asc_getErrorTitle() && (config.title = Common.Utils.String.htmlEncode(errData.asc_getErrorTitle()));
config.buttons = ['ok', 'cancel']; config.buttons = ['ok', 'cancel'];
config.msg = errData && errData.asc_getError() ? errData.asc_getError() : this.errorDataValidate; config.msg = errData && errData.asc_getError() ? Common.Utils.String.htmlEncode(errData.asc_getError()) : this.errorDataValidate;
config.maxwidth = 600; config.maxwidth = 600;
break; break;

View file

@ -274,6 +274,7 @@ define([
} }
if (this.api) { if (this.api) {
Common.UI.Menu.Manager.hideAll();
this.asUrl = asUrl; this.asUrl = asUrl;
this.downloadFormat = format; this.downloadFormat = format;
this.printSettingsDlg = (new SSE.Views.PrintSettings({ this.printSettingsDlg = (new SSE.Views.PrintSettings({

View file

@ -68,11 +68,11 @@ define([
'<div id="radio-fit-to" style="margin-bottom: 4px;"></div>', '<div id="radio-fit-to" style="margin-bottom: 4px;"></div>',
'<div style="padding-left: 22px;">', '<div style="padding-left: 22px;">',
'<div>', '<div>',
'<label style="height: 22px;width: 45px;padding-top: 4px;display: inline-block;margin-bottom: 4px;">' + this.textWidth + '</label>', '<label style="height: 22px;width: 55px;padding-top: 4px;display: inline-block;margin-bottom: 4px;">' + this.textWidth + '</label>',
'<div id="scale-width" style="display: inline-block;margin-bottom: 4px;"></div>', '<div id="scale-width" style="display: inline-block;margin-bottom: 4px;"></div>',
'</div>', '</div>',
'<div>', '<div>',
'<label style="height: 22px;width: 45px;padding-top: 4px;display: inline-block;margin-bottom: 16px;">' + this.textHeight + '</label>', '<label style="height: 22px;width: 55px;padding-top: 4px;display: inline-block;margin-bottom: 16px;">' + this.textHeight + '</label>',
'<div id="scale-height" style="display: inline-block;margin-bottom: 16px;"></div>', '<div id="scale-height" style="display: inline-block;margin-bottom: 16px;"></div>',
'</div>', '</div>',
'</div>', '</div>',

View file

@ -786,7 +786,7 @@
"SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000",
"SSE.Views.ChartSettingsDlg.textHundreds": "Satoja", "SSE.Views.ChartSettingsDlg.textHundreds": "Satoja",
"SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000",
"SSE.Views.ChartSettingsDlg.textIn": "/", "SSE.Views.ChartSettingsDlg.textIn": "Sisällä",
"SSE.Views.ChartSettingsDlg.textInnerBottom": "Sisäreuna alhaalla", "SSE.Views.ChartSettingsDlg.textInnerBottom": "Sisäreuna alhaalla",
"SSE.Views.ChartSettingsDlg.textInnerTop": "Sisäreuna ylhäällä", "SSE.Views.ChartSettingsDlg.textInnerTop": "Sisäreuna ylhäällä",
"SSE.Views.ChartSettingsDlg.textInvalidRange": "VIRHE! Virheellinen solujen tietoalue", "SSE.Views.ChartSettingsDlg.textInvalidRange": "VIRHE! Virheellinen solujen tietoalue",
@ -1050,7 +1050,7 @@
"SSE.Views.ImageSettings.textEdit": "Muokkaa", "SSE.Views.ImageSettings.textEdit": "Muokkaa",
"SSE.Views.ImageSettings.textEditObject": "Muokkaa objektia", "SSE.Views.ImageSettings.textEditObject": "Muokkaa objektia",
"SSE.Views.ImageSettings.textFromFile": "Tiedostosta", "SSE.Views.ImageSettings.textFromFile": "Tiedostosta",
"SSE.Views.ImageSettings.textFromUrl": "Verkko-osoitteesta", "SSE.Views.ImageSettings.textFromUrl": "URL-osoitteesta",
"SSE.Views.ImageSettings.textHeight": "Korkeus", "SSE.Views.ImageSettings.textHeight": "Korkeus",
"SSE.Views.ImageSettings.textInsert": "Korvaa kuva", "SSE.Views.ImageSettings.textInsert": "Korvaa kuva",
"SSE.Views.ImageSettings.textKeepRatio": "Vakiosuhteet", "SSE.Views.ImageSettings.textKeepRatio": "Vakiosuhteet",
@ -1169,7 +1169,7 @@
"SSE.Views.PrintSettings.textFitCols": "Sovita kaikki sarakkeet yhdelle sivulle", "SSE.Views.PrintSettings.textFitCols": "Sovita kaikki sarakkeet yhdelle sivulle",
"SSE.Views.PrintSettings.textFitPage": "Sovita taulukko yhdelle sivulle", "SSE.Views.PrintSettings.textFitPage": "Sovita taulukko yhdelle sivulle",
"SSE.Views.PrintSettings.textFitRows": "Sovita kaikki rivit yhdelle sivulle", "SSE.Views.PrintSettings.textFitRows": "Sovita kaikki rivit yhdelle sivulle",
"SSE.Views.PrintSettings.textHideDetails": "Piilota yksityiskohdat", "SSE.Views.PrintSettings.textHideDetails": "Piilota tiedot",
"SSE.Views.PrintSettings.textLayout": "Asettelu", "SSE.Views.PrintSettings.textLayout": "Asettelu",
"SSE.Views.PrintSettings.textPageOrientation": "Sivun suunta", "SSE.Views.PrintSettings.textPageOrientation": "Sivun suunta",
"SSE.Views.PrintSettings.textPageScaling": "Skaalaus", "SSE.Views.PrintSettings.textPageScaling": "Skaalaus",
@ -1318,7 +1318,7 @@
"SSE.Views.TableSettings.textIsLocked": "Toinen käyttäjä on muokkaamassa tätä elementtiä. ", "SSE.Views.TableSettings.textIsLocked": "Toinen käyttäjä on muokkaamassa tätä elementtiä. ",
"SSE.Views.TableSettings.textLast": "Viimeinen", "SSE.Views.TableSettings.textLast": "Viimeinen",
"SSE.Views.TableSettings.textReservedName": "Nimi, jota yrität käyttää, on jo viitattu solujen kaavoissa. Ole hyvä ja käytä muuta nimeä.", "SSE.Views.TableSettings.textReservedName": "Nimi, jota yrität käyttää, on jo viitattu solujen kaavoissa. Ole hyvä ja käytä muuta nimeä.",
"SSE.Views.TableSettings.textResize": "Muuta taulukon kokoa", "SSE.Views.TableSettings.textResize": "Taulukon koko",
"SSE.Views.TableSettings.textRows": "Rivit", "SSE.Views.TableSettings.textRows": "Rivit",
"SSE.Views.TableSettings.textSelectData": "Valitse tiedot", "SSE.Views.TableSettings.textSelectData": "Valitse tiedot",
"SSE.Views.TableSettings.textTableName": "Taulukon nimi", "SSE.Views.TableSettings.textTableName": "Taulukon nimi",
@ -1338,7 +1338,7 @@
"SSE.Views.TextArtSettings.textDirection": "Suunta", "SSE.Views.TextArtSettings.textDirection": "Suunta",
"SSE.Views.TextArtSettings.textEmptyPattern": "Ei kuviota", "SSE.Views.TextArtSettings.textEmptyPattern": "Ei kuviota",
"SSE.Views.TextArtSettings.textFromFile": "Tiedostosta", "SSE.Views.TextArtSettings.textFromFile": "Tiedostosta",
"SSE.Views.TextArtSettings.textFromUrl": "Verkko-osoitteesta", "SSE.Views.TextArtSettings.textFromUrl": "URL-osoitteesta",
"SSE.Views.TextArtSettings.textGradient": "Kalteva", "SSE.Views.TextArtSettings.textGradient": "Kalteva",
"SSE.Views.TextArtSettings.textGradientFill": "Kalteva täyttö", "SSE.Views.TextArtSettings.textGradientFill": "Kalteva täyttö",
"SSE.Views.TextArtSettings.textImageTexture": "Kuva tai pintarakenne", "SSE.Views.TextArtSettings.textImageTexture": "Kuva tai pintarakenne",

View file

@ -59,7 +59,7 @@
"Common.Views.About.txtVersion": "Verzió", "Common.Views.About.txtVersion": "Verzió",
"Common.Views.Chat.textSend": "Küldés", "Common.Views.Chat.textSend": "Küldés",
"Common.Views.Comments.textAdd": "Hozzáad", "Common.Views.Comments.textAdd": "Hozzáad",
"Common.Views.Comments.textAddComment": "Hozzászólás hozzáadása", "Common.Views.Comments.textAddComment": "Hozzáad",
"Common.Views.Comments.textAddCommentToDoc": "Hozzászólás hozzáadása a dokumentumhoz", "Common.Views.Comments.textAddCommentToDoc": "Hozzászólás hozzáadása a dokumentumhoz",
"Common.Views.Comments.textAddReply": "Válasz hozzáadása", "Common.Views.Comments.textAddReply": "Válasz hozzáadása",
"Common.Views.Comments.textAnonym": "Vendég", "Common.Views.Comments.textAnonym": "Vendég",
@ -1305,7 +1305,7 @@
"SSE.Views.ChartSettingsDlg.textMinorType": "Kisebb típusú", "SSE.Views.ChartSettingsDlg.textMinorType": "Kisebb típusú",
"SSE.Views.ChartSettingsDlg.textMinValue": "Minimum érték", "SSE.Views.ChartSettingsDlg.textMinValue": "Minimum érték",
"SSE.Views.ChartSettingsDlg.textNextToAxis": "Tengely mellett", "SSE.Views.ChartSettingsDlg.textNextToAxis": "Tengely mellett",
"SSE.Views.ChartSettingsDlg.textNone": "nincs", "SSE.Views.ChartSettingsDlg.textNone": "Nincs",
"SSE.Views.ChartSettingsDlg.textNoOverlay": "Nincs átfedés", "SSE.Views.ChartSettingsDlg.textNoOverlay": "Nincs átfedés",
"SSE.Views.ChartSettingsDlg.textOneCell": "Mozgatás cellákkal méretezés nélkül", "SSE.Views.ChartSettingsDlg.textOneCell": "Mozgatás cellákkal méretezés nélkül",
"SSE.Views.ChartSettingsDlg.textOnTickMarks": "Tengely osztásokon", "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Tengely osztásokon",
@ -2209,7 +2209,7 @@
"SSE.Views.TableSettings.textLast": "Utolsó", "SSE.Views.TableSettings.textLast": "Utolsó",
"SSE.Views.TableSettings.textLongOperation": "Hosszú művelet", "SSE.Views.TableSettings.textLongOperation": "Hosszú művelet",
"SSE.Views.TableSettings.textReservedName": "A használni kívánt név már hivatkozásra került egyes képletekben. Kérjük, használjon más nevet.", "SSE.Views.TableSettings.textReservedName": "A használni kívánt név már hivatkozásra került egyes képletekben. Kérjük, használjon más nevet.",
"SSE.Views.TableSettings.textResize": "Táblázat átméretezése", "SSE.Views.TableSettings.textResize": "Táblázat méret",
"SSE.Views.TableSettings.textRows": "Sorok", "SSE.Views.TableSettings.textRows": "Sorok",
"SSE.Views.TableSettings.textSelectData": "Adatok kiválasztása", "SSE.Views.TableSettings.textSelectData": "Adatok kiválasztása",
"SSE.Views.TableSettings.textTableName": "Táblázat név", "SSE.Views.TableSettings.textTableName": "Táblázat név",

View file

@ -90,35 +90,4 @@
} }
} }
#menu-formula-selection {
.dropdown-menu li {
.menu-item-icon {
.background-ximage('@{app-image-path}/toolbar-menu.png', '@{app-image-path}/toolbar-menu@2x.png', 20px) !important;
&.mnu-popup-range {
background-position: 0 -1560px;
}
&.mnu-popup-table {
background-position: 0 -1580px;
}
&.mnu-popup-func {
background-position: 0 -1300px;
}
}
&.selected {
.mnu-popup-range {
background-position: -20px -1560px;
}
.mnu-popup-table {
background-position: -20px -1580px;
}
.mnu-popup-func {
background-position: -20px -1300px;
}
}
}
}

View file

@ -269,6 +269,7 @@ define([
docInfo.put_CallbackUrl(this.editorConfig.callbackUrl); docInfo.put_CallbackUrl(this.editorConfig.callbackUrl);
docInfo.put_Token(data.doc.token); docInfo.put_Token(data.doc.token);
docInfo.put_Permissions(_permissions); docInfo.put_Permissions(_permissions);
docInfo.put_EncryptedInfo(this.editorConfig.encryptionKeys);
} }
this.api.asc_registerCallback('asc_onGetEditorPermissions', _.bind(this.onEditorPermissions, this)); this.api.asc_registerCallback('asc_onGetEditorPermissions', _.bind(this.onEditorPermissions, this));

View file

@ -415,7 +415,8 @@
} }
], ],
"index-page": { "index-page": {
"../deploy/web-apps/apps/documenteditor/embed/index.html": "../apps/documenteditor/embed/index.html.deploy" "../deploy/web-apps/apps/documenteditor/embed/index.html": "../apps/documenteditor/embed/index.html.deploy",
"../deploy/web-apps/apps/documenteditor/embed/index_loader.html": "../apps/documenteditor/embed/index_loader.html.deploy"
}, },
"images-app": [ "images-app": [
{ {

View file

@ -418,7 +418,8 @@
} }
], ],
"index-page": { "index-page": {
"../deploy/web-apps/apps/presentationeditor/embed/index.html": "../apps/presentationeditor/embed/index.html.deploy" "../deploy/web-apps/apps/presentationeditor/embed/index.html": "../apps/presentationeditor/embed/index.html.deploy",
"../deploy/web-apps/apps/presentationeditor/embed/index_loader.html": "../apps/presentationeditor/embed/index_loader.html.deploy"
}, },
"images-app": [ "images-app": [
{ {

View file

@ -432,7 +432,8 @@
} }
], ],
"index-page": { "index-page": {
"../deploy/web-apps/apps/spreadsheeteditor/embed/index.html": "../apps/spreadsheeteditor/embed/index.html.deploy" "../deploy/web-apps/apps/spreadsheeteditor/embed/index.html": "../apps/spreadsheeteditor/embed/index.html.deploy",
"../deploy/web-apps/apps/spreadsheeteditor/embed/index_loader.html": "../apps/spreadsheeteditor/embed/index_loader.html.deploy"
}, },
"images-app": [ "images-app": [
{ {