:User:Esprit15d/monobook.js
//Detect IE5.5+
if (navigator.appVersion.indexOf("MSIE")==-1)
{
// var magicURL = "http://www.amazon.com/gp/search?ie=UTF8&field-isbn=MAGICNUMBER&tag=wikipedia08-20";
importScript('User:Lunchboxhero/externISBN.js');
function externISBN() {
for (var i = 0; i < document.links.length; i++)
{
if( document.links[i].href.match(/isbn=(.*)/) ) {
document.links[i].href='http://www.amazon.com/exec/obidos/ASIN/'+RegExp.$1;
}
}
}
$(externISBN);
importScript('User:Galobtter/Shortdesc helper.js'); // User:Galobtter/Shortdesc helper
// {{commons ok}} tagger
function commonsOK() {
if (document.editform) {
document.editform.wpTextbox1.value += "\n{{commons ok}}";
document.editform.wpSummary.value = "{{commons ok}}";
document.editform.submit();
} else
document.location = mw.config.get('wgServer') + mw.config.get('wgScript') + "?title=" + mw.config.get('wgPageName') + "&action=edit&commonsOK=1";
}
function addCommonsOK(){
if (mw.config.get('wgCanonicalNamespace') == "Image")
mw.util.addPortletLink("p-cactions", "javascript:commonsOK()", "{{commons ok}}", "");
if (document.location.href.indexOf("commonsOK=1") > 0)
commonsOK();
}
$(addCommonsOK);