Skip to main content
Dados de MRG MRG.gif
Nome MRG
Nascimento segunda-feira, 04 de Janeiro de 1988
Naturalidade Loulé - Portugal
Posição WikiDev - Apoio técnico

Funcionalidades

  • Predefinição:Pesquisar_tabela: versão beta!!! Apenas pode funcionar em uma tabela por página. Não mostra os headers da tabela na maior parte dos casos (necessita que seja declarado o tr head).
  • Categoria:Manutenção da Wiki: automatização de categorização de páginas quando detetados erros ou campos não preenchidos/duplicados.
  • Adicionado o script para forçar o footer a ficar no fundo das páginas quando estas têm pouco conteúdo.
/** Solution for sticking footer at bottom in short pages **/
$(document).ready(function() {
   var docHeight = $(window).height();
   var footerHeight = $('#main-footer').height();
   var footerTop = $('#main-footer').position().top + footerHeight;
   if (footerTop < docHeight) {
    $('#main-footer').css('margin-top', 10+ (docHeight - footerTop) + 'px');
   }
  });

Predefinições

Extensões

Local Settings

  • Maximum time in seconds to cache resources served by the resource loader. Should be added to LocalSettings.
# Maximum time in seconds to cache resources served by the resource loader.
$wgResourceLoaderMaxage = array(
	'versioned' => array(
		// Squid/Varnish but also any other public proxy cache between the client and MediaWiki
		'server' => 30 * 24 * 60 * 60, // 30 days
		// On the client side (e.g. in the browser cache).
		'client' => 30 * 24 * 60 * 60, // 30 days
	),
	'unversioned' => array(
		'server' => 7 * 24 * 60 * 60, // 7 days, default 5 minutes
		'client' => 7 * 24 * 60 * 60, // 7 days, default 5 minutes
	),
);
  • Set default searching fields. Should be added to LocalSettings.
$wgNamespacesToBeSearchedDefault = array(
	NS_MAIN =>           true,
	NS_TALK =>           false,
	NS_USER =>           false,
	NS_USER_TALK =>      false,
	NS_PROJECT =>        true,
	NS_PROJECT_TALK =>   false,
	NS_FILE =>           true,
	NS_FILE_TALK =>      false,
	NS_MEDIAWIKI =>      false,
	NS_MEDIAWIKI_TALK => false,
	NS_TEMPLATE =>       false,
	NS_TEMPLATE_TALK =>  false,
	NS_HELP =>           true,
	NS_HELP_TALK =>      false,
	NS_CATEGORY =>       true,
	NS_CATEGORY_TALK =>  false
);