Added "Disable automatic scraper updates" preference. (Up to Dan to implement this)

This commit is contained in:
David Norton 2006-06-21 22:31:52 +00:00
parent 77b8bfd0b2
commit 27025befef
3 changed files with 12 additions and 12 deletions

View File

@ -1,25 +1,25 @@
var prefManager = Components.classes["@mozilla.org/preferences-service;1"]
.getService(Components.interfaces.nsIPrefBranch);
var whateverBox;
var autoUpdateBox;
/*
To add a new preference:
* modify defaults/prefs.js
* add a control to prefs.xul
* in this document:
1) add var above
2) add lines to init() function
3) add line to accept() function
1) modify defaults/preferences/scholar.js
2) in this document:
a) add var above
b) add lines to init() function
c) add line to accept() function
3) add a control to prefs.xul
*/
function init()
{
whateverBox = document.getElementById('whateverBox');
whateverBox.checked = prefManager.getBoolPref('extensions.scholar.whatever');
autoUpdateBox = document.getElementById('autoUpdateBox');
autoUpdateBox.checked = prefManager.getBoolPref('extensions.scholar.automaticScraperUpdates');
}
function accept()
{
prefManager.setBoolPref('extensions.scholar.whatever', whateverBox.checked);
prefManager.setBoolPref('extensions.scholar.automaticScraperUpdates', autoUpdateBox.checked);
}

View File

@ -12,7 +12,7 @@
<dialogheader id="header" title="&scholar.name;" description="&scholar.preferences.title;"/>
<checkbox id="whateverBox" label="Whatever!"/>
<checkbox id="autoUpdateBox" label="Automatically check for updated scrapers"/>
</dialog>

View File

@ -1,4 +1,4 @@
// These are DEFAULT prefs for the INSTALL. You will have to reinstall the extension to see differences!
// Display internal shortcut
pref("extensions.scholar.whatever", false);
pref("extensions.scholar.automaticScraperUpdates",true);