]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/defaults/preferences/autoupdate.js
Staff Client Build/Update Enhancements patch from Thomas Berezansky
[working/Evergreen.git] / Open-ILS / xul / staff_client / defaults / preferences / autoupdate.js
1 // Enable Updater
2 pref("app.update.enabled", true);
3 // Change to "false" to not automatically update
4 pref("app.update.auto", true);
5 // 0 downloads without prompt always
6 pref("app.update.mode", 0);
7
8 // These settings are in seconds
9 // Interval for checking
10 pref("app.update.interval", 86400);
11 // Time before prompting to download - If auto is off, mainly
12 pref("app.update.nagTimer.download", 86400);
13 // Time before prompting to restart to apply update that has downloaded
14 pref("app.update.nagTimer.restart", 1800);
15
16 // How often to check timers (above) - in MILLIseconds
17 pref("app.update.timer", 600000);
18
19
20 // URL for downloading. For Thomas Berezansky's script the update.xml part isn't needed.
21 // NOTE: Certs that default to invalid, even those overridden with cert_override.txt, won't work with this!
22 pref("app.update.url", "https://::HOSTNAME::/updates/check/%CHANNEL%/%VERSION%/update.xml");
23
24 // URL for manual update information
25 pref("app.update.url.manual", "http://::HOSTNAME::/updates/manualupdate.html");
26
27 // Default details URL for updates
28 pref("app.update.url.details", "http://::HOSTNAME::/updates/updatedetails.html");
29