User:So9q/wikidata-topic-curator-link.js

From Wikidata
Jump to navigation Jump to search

Note: After publishing, 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 / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/*
 * Simple script to add a link to Wikidata Topic Curator in the Tools section on items.
 */

( function ( mw, $ ) {
	var entityId = mw.config.get( 'wbEntityId' );
	if ( !entityId ) {
		return;
	}
	// Add portlet link for item
	mw.util.addPortletLink(
		'p-tb',
		'http://162.19.226.24:8080/terms?lang=en&qid=' + entityId,
		'Wikidata Topic Curator (English, scientific articles)',
		't-wtcapp',
		'This Wikidata item in Wikidata Topic Curator (English, scientific articles)'
	);
	mw.util.addPortletLink(
		'p-tb',
		'http://162.19.226.24:8080/terms?lang=sv&subgraph=riksdagen_documents&qid=' + entityId,
		'Wikidata Topic Curator (Swedish, riksdagen)',
		't-wtclapp1',
		'This Wikidata item in Wikidata Topic Curator (Swedish, riksdagen documents)'
	);
}( mediaWiki, jQuery ) );