MediaWiki:Common.js/search.js: Difference between revisions
(probably don't need the newline now) |
(using real message, trying to make it stand out more) |
||
| Line 14: | Line 14: | ||
} | } | ||
var toptable = document.getElementById('contentSub'); | var toptable = document.getElementById('contentSub'); | ||
toptable.innerText = ' | ids.toptable.color = "blue"; | ||
toptable.innerText = 'Not finding what you're looking for? Select "Google" from the dropdown menu below and try again.'; | |||
if (document.forms['powersearch']) | if (document.forms['powersearch']) | ||
var searchForm = document.forms['powersearch']; | var searchForm = document.forms['powersearch']; | ||
Revision as of 13:49, 23 December 2011
/** Change Special:Search to use a drop-down menu *******************************************************
*
* Description: Change Special:Search to use a drop-down menu, with the default being
* the internal MediaWiki engine
* Created and maintained by: [[User:Gracenotes]]
*/
function SpecialSearchEnhanced() {
var createOption = function(site, action, mainQ, addQ, addV) {
var opt = document.createElement('option');
opt.appendChild(document.createTextNode(site));
searchEngines.push([action, mainQ, addQ, addV]);
return opt;
}
var toptable = document.getElementById('contentSub');
ids.toptable.color = "blue";
toptable.innerText = 'Not finding what you're looking for? Select "Google" from the dropdown menu below and try again.';
if (document.forms['powersearch'])
var searchForm = document.forms['powersearch'];
if (document.forms['search'])
var searchForm = document.forms['search'];
if (searchForm.lsearchbox) {
var searchBox = searchForm.lsearchbox;
} else {
var searchBox = searchForm.search;
}
var selectBox = document.createElement('select');
selectBox.id = 'searchEngine';
searchForm.onsubmit = function() {
var optSelected = searchEngines[document.getElementById('searchEngine').selectedIndex];
searchForm.action = optSelected[0];
searchBox.name = optSelected[1];
searchForm.title.value = optSelected[3];
searchForm.title.name = optSelected[2];
}
selectBox.appendChild(createOption('MediaWiki Search', wgScriptPath + '/index.php', 'search', 'title', 'Special:Search'));
selectBox.appendChild(createOption('Google', 'http://www.google.com/search', 'q', 'sitesearch', 'wiki.oni2.net'));
selectBox.appendChild(createOption('Yahoo!', 'http://search.yahoo.com/search', 'p', 'vs', 'wiki.oni2.net'));
selectBox.appendChild(createOption('Bing', 'http://www.bing.com/search', 'q', 'q1', 'site:http://wiki.oni2.net'));
searchBox.style.marginLeft = '0px';
if (document.getElementById('loadStatus')) {
var lStat = document.getElementById('loadStatus');
} else {
var lStat = searchForm.title;
if( typeof lStat == 'object' && typeof lStat.length === 'number' ) lStat = lStat[0];
}
lStat.parentNode.insertBefore(selectBox, lStat);
}
var searchEngines = [];
addOnloadHook(SpecialSearchEnhanced);