//Adds 'Check Refs' to the toolbox, links to http://toolserver.org/~dispenser/cgi-bin/reflinks.py -- Dispenser's reference title fixer.
function refcheck()
{
addPortletLink("p-tb", "http://toolserver.org/~dispenser/cgi-bin/webreflinks.py?page=" + wgPageName + "&citeweb=on", "Check Refs");
};
function linkcheck()
{
addPortletLink("p-tb", "http://toolserver.org/~dispenser/cgi-bin/webchecklinks.py?page=" + wgPageName, "Check Links");
};
function dabsolver()
{
addPortletLink("p-tb", "http://toolserver.org/~dispenser/cgi-bin/dab_solver.py?page=" + wgPageName, "Dab Solver");
};
function samspade()
{
addPortletLink("p-tb", "http://whois.domaintools.com/" + wgTitle, "Whois Lookup");
};
function hurricane()
{
addPortletLink("p-tb", "http://rwhois.he.net/whois.php?query=" + wgTitle, "RWhois Lookup")
}
if ( wgNamespaceNumber == 0 ) {
addOnloadHook(refcheck);
addOnloadHook(linkcheck);
addOnloadHook(dabsolver);
};
if ( wgNamespaceNumber == 3 ) {
addOnloadHook(samspade);
addOnloadHook(hurricane);
};
importScript('User:Darkwind/sandbox.js'); //testing script
|