Remove obsolete initPDFToolsPath()
in tests
This commit is contained in:
parent
c6256402e4
commit
20d6cde85f
1 changed files with 0 additions and 32 deletions
|
@ -578,37 +578,6 @@ async function getPromiseError(promise) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Init paths for PDF tools and data
|
|
||||||
*/
|
|
||||||
function initPDFToolsPath() {
|
|
||||||
let pdfConvertedFileName = 'pdftotext';
|
|
||||||
let pdfInfoFileName = 'pdfinfo';
|
|
||||||
|
|
||||||
if (Zotero.isWin) {
|
|
||||||
pdfConvertedFileName += '-win.exe';
|
|
||||||
pdfInfoFileName += '-win.exe';
|
|
||||||
}
|
|
||||||
else if (Zotero.isMac) {
|
|
||||||
pdfConvertedFileName += '-mac';
|
|
||||||
pdfInfoFileName += '-mac';
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
let cpu = Zotero.platform.split(' ')[1];
|
|
||||||
pdfConvertedFileName += '-linux-' + cpu;
|
|
||||||
pdfInfoFileName += '-linux-' + cpu;
|
|
||||||
}
|
|
||||||
|
|
||||||
let pdfToolsPath = PathUtils.join(Zotero.Profile.dir, 'pdftools');
|
|
||||||
let pdfConverterPath = PathUtils.join(pdfToolsPath, pdfConvertedFileName);
|
|
||||||
let pdfInfoPath = PathUtils.join(pdfToolsPath, pdfInfoFileName);
|
|
||||||
let pdfDataPath = PathUtils.join(pdfToolsPath, 'poppler-data');
|
|
||||||
|
|
||||||
Zotero.FullText.setPDFConverterPath(pdfConverterPath);
|
|
||||||
Zotero.FullText.setPDFInfoPath(pdfInfoPath);
|
|
||||||
Zotero.FullText.setPDFDataPath(pdfDataPath);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the nsIFile corresponding to the test data directory
|
* Returns the nsIFile corresponding to the test data directory
|
||||||
* (i.e., test/tests/data)
|
* (i.e., test/tests/data)
|
||||||
|
@ -693,7 +662,6 @@ async function resetDB(options = {}) {
|
||||||
options
|
options
|
||||||
);
|
);
|
||||||
await Zotero.Schema.schemaUpdatePromise;
|
await Zotero.Schema.schemaUpdatePromise;
|
||||||
initPDFToolsPath();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue