706233c974
- Adjust text - Add "Learn More" button with link to sync documentation for set-up-sync notification - Show "Don't Show Again" for set-up-sync even on first display - Don't perform any action when clicking unlinked text - Use yellow/orange background instead of blue for notification bar - Prevent text from wrapping out of the bar at narrow window widths - Use local variable for observer id
39 lines
No EOL
1.7 KiB
JavaScript
39 lines
No EOL
1.7 KiB
JavaScript
var ZOTERO_CONFIG = {
|
|
GUID: 'zotero@chnm.gmu.edu',
|
|
ID: 'zotero', // used for db filename, etc.
|
|
CLIENT_NAME: 'Zotero',
|
|
DOMAIN_NAME: 'zotero.org',
|
|
PRODUCER: 'Digital Scholar',
|
|
PRODUCER_URL: 'https://digitalscholar.org',
|
|
REPOSITORY_URL: 'https://repo.zotero.org/repo/',
|
|
BASE_URI: 'http://zotero.org/',
|
|
WWW_BASE_URL: 'https://www.zotero.org/',
|
|
PROXY_AUTH_URL: 'https://zoteroproxycheck.s3.amazonaws.com/test',
|
|
API_URL: 'https://api.zotero.org/',
|
|
STREAMING_URL: 'wss://stream.zotero.org/',
|
|
SERVICES_URL: 'https://services.zotero.org/',
|
|
API_VERSION: 3,
|
|
CONNECTOR_MIN_VERSION: '5.0.39', // show upgrade prompt for requests from below this version
|
|
PREF_BRANCH: 'extensions.zotero.',
|
|
BOOKMARKLET_ORIGIN: 'https://www.zotero.org',
|
|
BOOKMARKLET_URL: 'https://www.zotero.org/bookmarklet/',
|
|
START_URL: "https://www.zotero.org/start",
|
|
QUICK_START_URL: "https://www.zotero.org/support/quick_start_guide",
|
|
PDF_TOOLS_URL: "https://www.zotero.org/download/xpdf/",
|
|
SUPPORT_URL: "https://www.zotero.org/support/",
|
|
SYNC_INFO_URL: "https://www.zotero.org/support/sync",
|
|
TROUBLESHOOTING_URL: "https://www.zotero.org/support/getting_help",
|
|
FEEDBACK_URL: "https://forums.zotero.org/",
|
|
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',
|
|
DICTIONARIES_URL: 'https://download.zotero.org/dictionaries/',
|
|
};
|
|
|
|
if (typeof process === 'object' && process + '' === '[object process]'){
|
|
module.exports = ZOTERO_CONFIG;
|
|
} else {
|
|
var EXPORTED_SYMBOLS = ["ZOTERO_CONFIG"];
|
|
} |