2014-12-09 23:37:43 +00:00
|
|
|
var ZOTERO_CONFIG = {
|
|
|
|
GUID: 'zotero@chnm.gmu.edu',
|
2016-10-31 02:47:42 +00:00
|
|
|
ID: 'zotero', // used for db filename, etc.
|
2015-02-23 08:31:52 +00:00
|
|
|
CLIENT_NAME: 'Zotero',
|
2015-12-30 09:31:57 +00:00
|
|
|
DOMAIN_NAME: 'zotero.org',
|
2021-04-19 22:19:39 +00:00
|
|
|
PRODUCER: 'Digital Scholar',
|
|
|
|
PRODUCER_URL: 'https://digitalscholar.org',
|
2014-12-09 23:37:43 +00:00
|
|
|
REPOSITORY_URL: 'https://repo.zotero.org/repo/',
|
|
|
|
BASE_URI: 'http://zotero.org/',
|
2014-12-10 01:43:48 +00:00
|
|
|
WWW_BASE_URL: 'https://www.zotero.org/',
|
2018-08-09 10:14:18 +00:00
|
|
|
PROXY_AUTH_URL: 'https://zoteroproxycheck.s3.amazonaws.com/test',
|
2014-12-09 23:37:43 +00:00
|
|
|
API_URL: 'https://api.zotero.org/',
|
2016-12-30 02:24:08 +00:00
|
|
|
STREAMING_URL: 'wss://stream.zotero.org/',
|
2018-06-16 18:34:29 +00:00
|
|
|
SERVICES_URL: 'https://services.zotero.org/',
|
2015-07-20 21:27:55 +00:00
|
|
|
API_VERSION: 3,
|
2018-05-09 00:56:35 +00:00
|
|
|
CONNECTOR_MIN_VERSION: '5.0.39', // show upgrade prompt for requests from below this version
|
2014-12-09 23:37:43 +00:00
|
|
|
PREF_BRANCH: 'extensions.zotero.',
|
|
|
|
BOOKMARKLET_ORIGIN: 'https://www.zotero.org',
|
2015-06-01 03:07:24 +00:00
|
|
|
BOOKMARKLET_URL: 'https://www.zotero.org/bookmarklet/',
|
2017-12-15 05:14:52 +00:00
|
|
|
START_URL: "https://www.zotero.org/start",
|
2017-07-07 07:20:06 +00:00
|
|
|
QUICK_START_URL: "https://www.zotero.org/support/quick_start_guide",
|
2017-05-26 23:10:41 +00:00
|
|
|
PDF_TOOLS_URL: "https://www.zotero.org/download/xpdf/",
|
|
|
|
SUPPORT_URL: "https://www.zotero.org/support/",
|
2022-03-02 10:05:50 +00:00
|
|
|
SYNC_INFO_URL: "https://www.zotero.org/support/sync",
|
2017-05-26 23:10:41 +00:00
|
|
|
TROUBLESHOOTING_URL: "https://www.zotero.org/support/getting_help",
|
|
|
|
FEEDBACK_URL: "https://forums.zotero.org/",
|
2021-04-19 22:19:39 +00:00
|
|
|
CONNECTORS_URL: "https://www.zotero.org/download/connectors",
|
|
|
|
CHANGELOG_URL: "https://www.zotero.org/support/changelog",
|
|
|
|
CREDITS_URL: 'https://www.zotero.org/support/credits_and_acknowledgments',
|
|
|
|
LICENSING_URL: 'https://www.zotero.org/support/licensing',
|
|
|
|
GET_INVOLVED_URL: 'https://www.zotero.org/getinvolved',
|
2021-05-07 07:18:14 +00:00
|
|
|
DICTIONARIES_URL: 'https://download.zotero.org/dictionaries/',
|
2014-12-09 23:37:43 +00:00
|
|
|
};
|
|
|
|
|
2018-06-29 09:38:12 +00:00
|
|
|
if (typeof process === 'object' && process + '' === '[object process]'){
|
|
|
|
module.exports = ZOTERO_CONFIG;
|
|
|
|
} else {
|
2018-02-24 09:54:53 +00:00
|
|
|
var EXPORTED_SYMBOLS = ["ZOTERO_CONFIG"];
|
|
|
|
}
|