Nota: Después de guardar, debes recargar la caché de tu navegador para ver los cambios:

  • Mozilla: Pulsa Recargar (o Ctrl-R)
  • Internet Explorer / Opera: Ctrl-F5
  • Safari: Cmd-R
  • Konqueror Ctrl-R.
  // MediaWiki interface button for comments page based on [[commons:mediawiki:extra-tabs.js]].
 // Originally written by Dbenbenn, Avatar, Duesentrieb and Arnomane
 // Modified by bawolff for wikinews. fixed by darklama
 // re-written by bawolff in may 2010.
 //
 // If copying to another wiki, this also needs some css as well.

 // Run a background check of api.php to see if the particular page exists,
 // so a non-existing comment page can be red, and an existing comment page
 // will look like a normal tab.

 // This would be better if it could check multiple pages with one query.
 // Brought to es.wikinews and adapted by Jurock in May 2011.
 
var checkCommentaryPageExist = function (pageName, id, query) {
	pageName = mw.util.wikiUrlencode( pageName );
	var success = function (x) {
		if ( !x || !x.query || !x.query.pages ) {
			mw.log( "Error getting redlinks for opinion tab" );
			return;
		}
		if ( x.query.pages['-1'] ) {
			// Means its missing.
			var url = mw.config.get( 'wgServer' ) + mw.config.get( 'wgScriptPath' ) +
				'/index.php?action=edit&redlink=1&title=' + pageName + '&' + query;
			jQuery( '#' + id + ' a' ).attr( 'href', url )
			jQuery( '#' + id ).addClass( 'new' );
		}
	}
	jQuery.ajax( {
		url: mw.config.get( 'wgServer' ) + mw.config.get( 'wgScriptPath' ) + '/api.php?action=query&format=json&titles=' + pageName,
		success: success
	});

}
 
jQuery( function () {
	// Interface strings, if translating, change only these.
	var OpinionTabName = 'Comentarios';
	var TalkTabName = 'Discusión';
	var ArticleTabName = 'Noticia';
	var OpinionTabTooltip = 'Comparte tu opinión sobre este tema';
	var OpinionNS = 100;
	// Extra things to add to edit urls:
	var OpinionParams = 'preload=Plantilla:Comentarios_preload&editintro=Plantilla:Comentarios_intro';
	// End stuff to translate.
	// -------------------
 
	var title = mw.config.get('wgTitle');
	if (title === 'Main Page') return;
	var portlet = mw.config.get('skin') === 'vector' ? 'p-namespaces' : 'p-cactions';
	switch(mw.config.get('wgNamespaceNumber')) {
		case 1:
		case 0:
			var targetPage = mw.config.get( 'wgFormattedNamespaces' )[OpinionNS] + ':' + title;
			var url = mw.util.getUrl( targetPage );

			var res = mw.util.addPortletLink(
				'p-namespaces',
				url,
				OpinionTabName,
				'ca-comentarios',
				OpinionTabTooltip
			);
			if ( !res ) {
				// No p-namespaces portal. Must be monobook then.
				var res2 = mw.util.addPortletLink(
					'p-cactions',
					url,
					OpinionTabName,
					'ca-comentarios',
					OpinionTabTooltip,
					undefined, /* accesskey */
					jQuery('#ca-edit')[0] /* nextnode */
				);
				if ( !res2 ) {
					mw.log( "Error adding opinions tab" );
				}
			}
			checkCommentaryPageExist(targetPage, 'ca-comentarios', OpinionParams);
	       		break;
		case 90: /* LQT thread */
			var targetPage = mw.config.get( 'wgTitle' ).replace(/\/.*$/, '');
			var talkTarget = mw.config.get( 'wgFormattedNamespaces' )[1] + ':' + targetPage;

			var before =  document.getElementById('ca-nstab-thread');
			var talk = mw.util.addPortletLink(
				portlet,
				mw.util.getUrl( talkTarget ),
				TalkTabName,
				"ca-main-talk", undefined, undefined, before
			);
			mw.util.addPortletLink(
				portlet,
				mw.util.getUrl( targetPage ),
				ArticleTabName,
				"ca-nstab-main",
				undefined, undefined, talk
			);

			checkCommentaryPageExist(targetPage, 'ca-nstab-main', '');
			checkCommentaryPageExist(talkTarget, 'ca-main-talk', '');
			break;
		case OpinionNS:
			var targetPage = mw.config.get( 'wgTitle' );
			var talkTarget = mw.config.get( 'wgFormattedNamespaces' )[1] + ':' + targetPage;

			var before = document.getElementById('ca-nstab-' +
				mw.config.get( 'wgFormattedNamespaces' )[OpinionNS].toLowerCase() );
			var talk = mw.util.addPortletLink(
				portlet,
				mw.util.getUrl( talkTarget ),
				TalkTabName,
				"ca-main-talk", undefined, undefined, before
			);
			mw.util.addPortletLink(
				portlet,
				mw.util.getUrl( targetPage ),
				ArticleTabName,
				"ca-nstab-main",
				undefined, undefined, talk
			);

			checkCommentaryPageExist(targetPage, 'ca-nstab-main', '');
			checkCommentaryPageExist(talkTarget, 'ca-main-talk', '');

			break;
		/* do stuff */
	}
});