6877d33e61
Addresses #169, add OpenURL interface hooks Addresses #170, Put "Link" option before "Import" in drop-down menu Fixes some advanced search flaws (there are still bugs)
69 lines
No EOL
2.5 KiB
JavaScript
69 lines
No EOL
2.5 KiB
JavaScript
/*
|
|
Scholar
|
|
Copyright (C) 2006 Center for History and New Media, George Mason University, Fairfax, VA
|
|
http://chnm.gmu.edu/
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
var autoUpdateBox;
|
|
var positionMenu;
|
|
var parseEndnoteBox;
|
|
var openURLServerField;
|
|
var openURLVersionMenu;
|
|
|
|
/*
|
|
To add a new preference:
|
|
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
|
|
4) (Optional) To add an observer for a preference change,
|
|
add an appropriate case in the switch statement
|
|
in Scholar.Prefs.observe()
|
|
*/
|
|
|
|
function init()
|
|
{
|
|
autoUpdateBox = document.getElementById('autoUpdateBox');
|
|
autoUpdateBox.checked = Scholar.Prefs.get('automaticScraperUpdates');
|
|
|
|
positionMenu = document.getElementById('positionMenu');
|
|
positionMenu.selectedIndex = Scholar.Prefs.get('scholarPaneOnTop') ? 0 : 1;
|
|
|
|
parseEndnoteBox = document.getElementById('parseEndnoteBox');
|
|
parseEndnoteBox.checked = Scholar.Prefs.get('parseEndNoteMIMETypes');
|
|
|
|
openURLServerField = document.getElementById('openURLServerField');
|
|
openURLServerField.value = Scholar.Prefs.get('openURL.resolver');
|
|
openURLVersionMenu = document.getElementById('openURLVersionMenu');
|
|
openURLVersionMenu.value = Scholar.Prefs.get('openURL.version');
|
|
}
|
|
|
|
function accept()
|
|
{
|
|
Scholar.Prefs.set('automaticScraperUpdates', autoUpdateBox.checked);
|
|
Scholar.Prefs.set('scholarPaneOnTop', positionMenu.selectedIndex == 0);
|
|
|
|
if(Scholar.Prefs.get('parseEndNoteMIMETypes') != parseEndnoteBox.checked)
|
|
{
|
|
Scholar.Prefs.set('parseEndNoteMIMETypes', parseEndnoteBox.checked);
|
|
Scholar.Ingester.MIMEHandler.init();
|
|
}
|
|
Scholar.Prefs.set('openURL.resolver', openURLServerField.value);
|
|
Scholar.Prefs.set('openURL.version', openURLVersionMenu.value);
|
|
} |