MediaWiki:Common.js

From BDI Data
Jump to: navigation, search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Any JavaScript here will be loaded for all users on every page load. */
jQuery( function( $ ) {
	mw.loader.using('mediawiki.util', function(){
		var isAdmin = false;
		for(var i=0;i<mw.config.get("wgUserGroups").length;i++){
			if(mw.config.get("wgUserGroups")[i]=="sysop"){
				isAdmin = true;
			}
		}
		if(isAdmin){
			var recentChanges = document.getElementById("n-randompage");
			mw.util.addPortletLink("p-navigation","//wiki.bgbm.org/bdidata/index.php?title=Special:NewProperty","New Property", "t-newProperty","New Property","p",recentChanges);

			if(mw.config.get("wgPageName")=="Special:NewProperty"){
				$("#wb-newentity-submit").parent().click(function(event) {
					var type = $("#wb-newproperty-datatype :last-child  :first-child .oo-ui-labelElement-label").html();
					if(type=="Commons media file"){
						if(!confirm('Are you sure you want to create a property of type "Commons media file"?')){
							event.preventDefault();    
						}
					}
				});
			}
		}

		if(mw.config.get("wgNamespaceNumber")===0){
			var whatlinkshere = document.getElementById("t-whatlinkshere");
			mw.loader.using('mediawiki.util', function(){
			mw.util.addPortletLink("p-tb","https://wiki.bgbm.org/bdidata/query/#PREFIX%20bwd%3A%20%3Chttp%3A%2F%2Fwiki.bgbm.org%2Fentity%2F%3E%0APREFIX%20bwdt%3A%20%3Chttp%3A%2F%2Fwiki.bgbm.org%2Fprop%2Fdirect%2F%3E%0ASELECT%20%3Fconcept%20%3FconceptLabel%20%3Fproperty%20%3FpropertyLabel%20WHERE%20%7B%0A%20%20%3Fconcept%20bwdt%3AP8%20bwd%3AQ219.%0A%20%20%3Fconcept%20%3Fprop%20bwd%3A"+ mw.config.get("wgPageName")+".%0A%20%20%3Fproperty%20wikibase%3AdirectClaim%20%3Fprop.%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%7D","Linking Concepts", "t-linking","show items, that link to this item and the property used","i",whatlinkshere);
			});
		}
	});
});