User:7/namespace redirect.js
Appearance
< User:7
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:7/namespace redirect. |
/*
NAMESPACE REDIRECT
Description: Redirects pages that begin with certain prefixes to appropriate namespaces.
Example: [[C:Test]] -> [[:Category:Test]], [[F:Test]] -> [[File:Test]], [[T:Test]] -> [[Template:Test]]
Original Link: [[User:Gary King/namespace redirect.js]]
More Example: [[UT:Test]] -> [[User Talk:Test]], [[L:Test.com]] -> runs an spamlink check on test.com
*/
addOnloadHook(function()
{
if (mw.config.get('wgPageName') != 'Special:Search') return;
var searchText = document.getElementById('searchText');
if (!searchText) return;
var searchTerm = searchText.value;
var colon = searchTerm.indexOf(':');
if (colon != -1)
{
var firstPart = searchTerm.substring(0, colon);
var secondPart = searchTerm.substring(colon + 1);
var pageName = '';
switch (firstPart.toUpperCase())
{
case 'C':
pageName = 'Category:' + secondPart;
break;
case 'F':
pageName = 'File:' + secondPart;
break;
case 'T':
pageName = 'Template:' + secondPart;
break;
case 'U':
pageName = 'User:' + secondPart;
break;
/* add in User Talk namespace shortcut */
case 'UT':
pageName = 'User Talk:' + secondPart;
break;
/* add in shortcut to do a link search for spam fighters*/
case 'L':
pageName = 'Special:LinkSearch/*.' + secondPart;
break;
}
if (pageName != '')
window.location = mw.config.get('wgServer') + '/wiki/' + pageName;
}
});