User:Magnus Manske/autodesc.js
Appearance
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:Magnus Manske/autodesc. |
/*
To add this to ANY Wikipedia, add
mw.loader.load("//en.wikipedia.org/w/index.php?title=User:Magnus Manske/autodesc.js&action=raw&ctype=text/javascript");
to your common.js user page, or to your global.js page (for all Wikis):
https://meta.wikimedia.org/wiki/Special:MyPage/global.js
To enable it on Wikidata as well, add
var autodesc_on_wikidata = true ;
BEFORE the mw.loader.load line.
*/
$(document).ready ( function () {
if ( mw.config.get('wgNamespaceNumber') != 0 ) return ; // Article namespace only
if ( mw.config.get('wgDBname') == 'wikidatawiki' && typeof autodesc_on_wikidata == 'undefined' ) return ; // Not on Wikidata, duh!
var q = mw.config.get('wgWikibaseItemId') ;
if ( q === null && mw.config.get('wgDBname') == 'wikidatawiki' ) q = mw.config.get('wgTitle') ;
if ( typeof q == 'undefined' || q === '' || q === null ) return ;
$.getJSON ( 'https://tools.wmflabs.org/autodesc/?callback=?' , {
q:q,
lang:mw.config.get('wgUserLanguage'),
mode:'short',
links:'wikipedia',
format:'json'
} , function ( d ) {
$('#siteSub').show().append ( ': <div style="display:inline">'+d.result+' <small>[<a href="//www.wikidata.org/wiki/'+q+'">'+q+'</a>]</small></div>')
})
}) ;