lint compliance
This commit is contained in:
parent
a1a2e6659e
commit
aa27eabff1
@ -7,6 +7,7 @@ www/common/highlight/
|
|||||||
www/common/jquery-ui/
|
www/common/jquery-ui/
|
||||||
www/common/onlyoffice/sdkjs
|
www/common/onlyoffice/sdkjs
|
||||||
www/common/onlyoffice/web-apps
|
www/common/onlyoffice/web-apps
|
||||||
|
www/common/onlyoffice/x2t
|
||||||
|
|
||||||
server.js
|
server.js
|
||||||
www/common/old-media-tag.js
|
www/common/old-media-tag.js
|
||||||
|
|||||||
@ -87,7 +87,8 @@ define([
|
|||||||
var mediasData = {};
|
var mediasData = {};
|
||||||
|
|
||||||
var getMediasSources = APP.getMediasSources = function() {
|
var getMediasSources = APP.getMediasSources = function() {
|
||||||
return content.mediasSources = content.mediaSources || {};
|
content.mediasSources = content.mediaSources || {};
|
||||||
|
return content.mediasSources;
|
||||||
};
|
};
|
||||||
|
|
||||||
var getId = function () {
|
var getId = function () {
|
||||||
@ -734,8 +735,6 @@ define([
|
|||||||
debug("Unexpected data type picked " + data.type);
|
debug("Unexpected data type picked " + data.type);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var privateDat = cpNfInner.metadataMgr.getPrivateData();
|
|
||||||
var origin = privateDat.fileHost || privateDat.origin;
|
|
||||||
var name = data.name;
|
var name = data.name;
|
||||||
|
|
||||||
// Add image to the list
|
// Add image to the list
|
||||||
@ -790,10 +789,10 @@ define([
|
|||||||
var mediaData = { blobUrl : blobUrl, content : "" };
|
var mediaData = { blobUrl : blobUrl, content : "" };
|
||||||
mediasData[data.src] = mediaData;
|
mediasData[data.src] = mediaData;
|
||||||
var reader = new FileReader();
|
var reader = new FileReader();
|
||||||
reader.onloadend = function (event) {
|
reader.onloadend = function () {
|
||||||
debug("MediaData set");
|
debug("MediaData set");
|
||||||
mediaData.content = reader.result;
|
mediaData.content = reader.result;
|
||||||
}
|
};
|
||||||
reader.readAsArrayBuffer(res.content);
|
reader.readAsArrayBuffer(res.content);
|
||||||
debug("Adding CryptPad Image " + data.name + ": " + blobUrl);
|
debug("Adding CryptPad Image " + data.name + ": " + blobUrl);
|
||||||
window.frames[0].AscCommon.g_oDocumentUrls.addImageUrl(data.name, blobUrl);
|
window.frames[0].AscCommon.g_oDocumentUrls.addImageUrl(data.name, blobUrl);
|
||||||
@ -847,8 +846,8 @@ define([
|
|||||||
x2t.FS.writeFile('/working/' + fileName, data);
|
x2t.FS.writeFile('/working/' + fileName, data);
|
||||||
|
|
||||||
// Adding images
|
// Adding images
|
||||||
for (var mediaFileName in window.frames[0].AscCommon.g_oDocumentUrls.urls) {
|
Object.keys(window.frames[0].AscCommon.g_oDocumentUrls.urls || {}).forEach(function (_mediaFileName) {
|
||||||
var mediaFileName = mediaFileName.substring(6);
|
var mediaFileName = _mediaFileName.substring(6);
|
||||||
var mediasSources = getMediasSources();
|
var mediasSources = getMediasSources();
|
||||||
var mediaSource = mediasSources[mediaFileName];
|
var mediaSource = mediasSources[mediaFileName];
|
||||||
var mediaData = mediaSource ? mediasData[mediaSource.src] : undefined;
|
var mediaData = mediaSource ? mediasData[mediaSource.src] : undefined;
|
||||||
@ -860,7 +859,7 @@ define([
|
|||||||
} else {
|
} else {
|
||||||
debug("Could not find media content for " + mediaFileName);
|
debug("Could not find media content for " + mediaFileName);
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
|
|
||||||
var params = "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
|
var params = "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
|
||||||
+ "<TaskQueueDataConvert xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">"
|
+ "<TaskQueueDataConvert xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">"
|
||||||
@ -873,8 +872,9 @@ define([
|
|||||||
// running conversion
|
// running conversion
|
||||||
x2t.ccall("runX2T", ["number"], ["string"], ["/working/params.xml"]);
|
x2t.ccall("runX2T", ["number"], ["string"], ["/working/params.xml"]);
|
||||||
// reading output file from working disk (in memory)
|
// reading output file from working disk (in memory)
|
||||||
|
var result;
|
||||||
try {
|
try {
|
||||||
var result = x2t.FS.readFile('/working/' + fileName + "." + outputFormat);
|
result = x2t.FS.readFile('/working/' + fileName + "." + outputFormat);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
debug("Failed reading converted file");
|
debug("Failed reading converted file");
|
||||||
return "";
|
return "";
|
||||||
@ -893,7 +893,7 @@ define([
|
|||||||
var x2tSaveAndConvertData = function(data, filename, extension, finalFilename) {
|
var x2tSaveAndConvertData = function(data, filename, extension, finalFilename) {
|
||||||
// Perform the x2t conversion
|
// Perform the x2t conversion
|
||||||
require(['/common/onlyoffice/x2t/x2t.js'], function() {
|
require(['/common/onlyoffice/x2t/x2t.js'], function() {
|
||||||
var x2t = Module;
|
var x2t = window.Module;
|
||||||
x2t.run();
|
x2t.run();
|
||||||
if (x2tInitialized) {
|
if (x2tInitialized) {
|
||||||
debug("x2t runtime already initialized");
|
debug("x2t runtime already initialized");
|
||||||
@ -1052,7 +1052,7 @@ define([
|
|||||||
debug("Filename");
|
debug("Filename");
|
||||||
debug(filename);
|
debug(filename);
|
||||||
require(['/common/onlyoffice/x2t/x2t.js'], function() {
|
require(['/common/onlyoffice/x2t/x2t.js'], function() {
|
||||||
var x2t = Module;
|
var x2t = window.Module;
|
||||||
x2t.run();
|
x2t.run();
|
||||||
if (x2tInitialized) {
|
if (x2tInitialized) {
|
||||||
debug("x2t runtime already initialized");
|
debug("x2t runtime already initialized");
|
||||||
@ -1065,7 +1065,7 @@ define([
|
|||||||
debug("x2t in runtime initialized");
|
debug("x2t in runtime initialized");
|
||||||
// Init x2t js module
|
// Init x2t js module
|
||||||
x2tInit(x2t);
|
x2tInit(x2t);
|
||||||
var convertedContent = x2tConvertData(x2t, new Uint8Array(content), filename.name, "bin", function(convertedContent) {
|
x2tConvertData(x2t, new Uint8Array(content), filename.name, "bin", function(convertedContent) {
|
||||||
importFile(convertedContent);
|
importFile(convertedContent);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user