5ba344516e
The test runner now downloads and caches the PDF tools for the current platform within the test data directory and only redownloads them when out of date, and it updates the download URL so that the full-text code pulls from the cache directory via a file:// URL. The installPDFTools() support function now installs the files directly instead of going through the prefs, and a new uninstallPDFTools() function removes the tools. Since the presence of the PDF tools can affect other tests, tests that need the tools should install them in a before() and uninstall them in an after(), leaving most tests to run without PDF indexing. This also adds a callback to the waitForWindow() support function. If a modal dialog is opened, it blocks the next promise handler from running, so a callback has to be used to interact with and close the dialog immediately.
20 lines
741 B
JavaScript
20 lines
741 B
JavaScript
var ZOTERO_CONFIG = {
|
|
GUID: 'zotero@chnm.gmu.edu',
|
|
CLIENT_NAME: 'Zotero',
|
|
REPOSITORY_URL: 'https://repo.zotero.org/repo/',
|
|
REPOSITORY_CHECK_INTERVAL: 86400, // 24 hours
|
|
REPOSITORY_RETRY_INTERVAL: 3600, // 1 hour
|
|
BASE_URI: 'http://zotero.org/',
|
|
WWW_BASE_URL: 'https://www.zotero.org/',
|
|
PROXY_AUTH_URL: 'https://s3.amazonaws.com/zotero.org/proxy-auth',
|
|
SYNC_URL: 'https://sync.zotero.org/',
|
|
API_URL: 'https://api.zotero.org/',
|
|
API_VERSION: 2,
|
|
PREF_BRANCH: 'extensions.zotero.',
|
|
BOOKMARKLET_ORIGIN: 'https://www.zotero.org',
|
|
HTTP_BOOKMARKLET_ORIGIN: 'http://www.zotero.org',
|
|
BOOKMARKLET_URL: 'https://www.zotero.org/bookmarklet/',
|
|
PDF_TOOLS_URL: "https://www.zotero.org/download/xpdf/"
|
|
};
|
|
|
|
EXPORTED_SYMBOLS = ["ZOTERO_CONFIG"];
|