Skip to content

Commit

Permalink
Merge pull request 'feature/refresh-file' (#10) from feature/refresh-…
Browse files Browse the repository at this point in the history
  • Loading branch information
konovalovsergey committed Nov 29, 2024
2 parents 29c3de2 + bc9867b commit be6d7b1
Show file tree
Hide file tree
Showing 3 changed files with 159 additions and 157 deletions.
21 changes: 0 additions & 21 deletions Common/sources/commondefines.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ function InputCommand(data, copyExplicit) {
this['username'] = data['username'];
this['tokenSession'] = data['tokenSession'];
this['tokenDownload'] = data['tokenDownload'];
this['tokenHistory'] = data['tokenHistory'];
this['data'] = data['data'];
this['editorid'] = data['editorid'];
this['format'] = data['format'];
Expand Down Expand Up @@ -84,7 +83,6 @@ function InputCommand(data, copyExplicit) {
this['savekey'] = data['savekey'];
this['userconnectionid'] = data['userconnectionid'];
this['responsekey'] = data['responsekey'];
this['docconnectionid'] = data['docconnectionid'];
this['jsonparams'] = data['jsonparams'];
this['lcid'] = data['lcid'];
this['useractionid'] = data['useractionid'];
Expand All @@ -101,7 +99,6 @@ function InputCommand(data, copyExplicit) {
this['savepassword'] = data['savepassword'];
this['withoutPassword'] = data['withoutPassword'];
this['outputurls'] = data['outputurls'];
this['closeonerror'] = data['closeonerror'];
this['serverVersion'] = data['serverVersion'];
this['rediskey'] = data['rediskey'];
this['nobase64'] = data['nobase64'];
Expand All @@ -127,7 +124,6 @@ function InputCommand(data, copyExplicit) {
this['username'] = undefined;
this['tokenSession'] = undefined;//string validate
this['tokenDownload'] = undefined;//string validate
this['tokenHistory'] = undefined;//string validate
this['data'] = undefined;//string
//to open
this['editorid'] = undefined;//int
Expand All @@ -152,7 +148,6 @@ function InputCommand(data, copyExplicit) {
this['savekey'] = undefined;//int document id to save
this['userconnectionid'] = undefined;//string internal
this['responsekey'] = undefined;
this['docconnectionid'] = undefined;//string internal
this['jsonparams'] = undefined;//string
this['lcid'] = undefined;
this['useractionid'] = undefined;
Expand All @@ -165,7 +160,6 @@ function InputCommand(data, copyExplicit) {
this['savepassword'] = undefined;
this['withoutPassword'] = undefined;
this['outputurls'] = undefined;
this['closeonerror'] = undefined;
this['serverVersion'] = undefined;
this['rediskey'] = undefined;
this['nobase64'] = true;
Expand Down Expand Up @@ -218,9 +212,6 @@ InputCommand.prototype = {
getTokenDownload: function() {
return this['tokenDownload'];
},
getTokenHistory: function() {
return this['tokenHistory'];
},
getData: function() {
return this['data'];
},
Expand Down Expand Up @@ -359,12 +350,6 @@ InputCommand.prototype = {
setResponseKey: function(data) {
this['responsekey'] = data;
},
getDocConnectionId: function() {
return this['docconnectionid'];
},
setDocConnectionId: function(data) {
this['docconnectionid'] = data;
},
getJsonParams: function() {
return this['jsonparams'];
},
Expand Down Expand Up @@ -447,12 +432,6 @@ InputCommand.prototype = {
getOutputUrls: function() {
return this['outputurls'];
},
getCloseOnError: function() {
return this['closeonerror'];
},
setCloseOnError: function(data) {
this['closeonerror'] = data;
},
getServerVersion: function() {
return this['serverVersion'];
},
Expand Down
Loading

0 comments on commit be6d7b1

Please sign in to comment.