Skip to main content
m
m
Linha 67: Linha 67:
 
NS_CATEGORY_TALK =>  false
 
NS_CATEGORY_TALK =>  false
 
);</pre>
 
);</pre>
 
== Search Table ==
 
 
{{Predefinição:Teste}}
 
{| class="wikitable sortable results" style="text-align:center" width=100%
 
! !! class="unsortable" width="14%" colspan="2" align="center" |'''Vitórias''' !! class="unsortable" width="14%" colspan="2" align="center" |'''Empates''' !! class="unsortable" width="14%" colspan="2" align="center" |'''Derrotas''' !! !!
 
|-
 
!! align="center" |'''Treinador'''
 
!! width="7%" align="center" | n
 
!! width="7%" align="center" | %
 
!! width="7%" align="center" | n
 
!! width="7%" align="center" | %
 
!! width="7%" align="center" | n
 
!! width="7%" align="center" | %
 
! align="center" |'''N.º jogos'''
 
! class="unsortable" align="center" |'''Épocas'''
 
|-
 
| [[Abel Picabêa]]||14||43,8%||8||25,0%||10||31,3%||32||56-57
 
|-
 
| [[Abrantes Mendes]]||25||69,4%||3||8,3%||8||22,2%||36||34-35
 
|-
 
| [[Alejandro Scopelli]]||23||60,5%||9||23,7%||6||15,8%||38||54-56
 
|-
 
| [[Alexandre Peics]]||19||73,1%||1||3,8%||6||23,1%||26||49-50
 
|-
 
| [[Alfredo Gonzalez]]||22||71,0%||4||12,9%||5||16,1%||31||59-61
 
|-
 
| [[Anselmo Fernandez]]||11||42,3%||11||42,3%||4||15,4%||26||64-65
 
|-
 
| [[António Morais]]||10||47,6%||7||33,3%||4||19,0%||21||87-88
 
|-
 
| [[António Oliveira]]||23||59,0%||7||17,9%||9||23,1%||39||82-83
 
|-
 
| [[Armando Ferreira]]||26||53,1%||13||26,5%||10||20,4%||49||66-67 e 68-69
 
|-
 
| [[Artur John]]||22||62,9%||4||11,4%||9||25,7%||35||31-32
 
|-
 
| [[Augusto Inácio]]||36||62,1%||11||19,0%||11||19,0%||58||99-01
 
|-
 
| [[Augusto Sabbo]]||22||61,1%||6||16,7%||8||22,2%||36||22-24
 
|-
 
| [[Bobby Robson]]||34||57,6%||13||22,0%||12||20,3%||59||92-94
 
|-
 
| [[Cândido de Oliveira]]||46||76,7%||3||5,0%||11||18,3%||60||45-46 e 47-49
 
|-
 
| [[Carlos Carvalhal]]||16||48,5%||7||21,2%||10||30,3%||33||09-10
 
|-
 
| [[Carlos Manuel]]||10||45,5%||6||27,3%||6||27,3%||22||97-98
 
|-
 
| [[Carlos Queiroz]]||67||64,4%||23||22,1%||14||13,5%||104||93-96
 
|-
 
| [[Charles Bell]]||12||50,0%||5||20,8%||7||29,2%||24||28-29
 
|-
 
| [[Domingos Paciência]]||19||54,3%||9||25,7%||7||20,0%||35||11-12
 
|-
 
| [[Enrique Fernandez]]||40||57,1%||15||21,4%||15||21,4%||70||57-59
 
|-
 
| [[Fernando Argila]]||4||20,0%||7||35,0%||9||45,0%||20||66-67
 
|-
 
| [[Fernando Caiado]]||25||51,0%||12||24,5%||12||24,5%||49||67-69
 
|-
 
| [[Fernando Mendes]]||32||56,1%||16||28,1%||9||15,8%||57||79-81, 95-96 e 00-01
 
|-
 
| [[Fernando Riera]]||14||63,6%||5||22,7%||3||13,6%||22||74-75
 
|-
 
| [[Fernando Santos]]||26||65,0%||5||12,5%||9||22,5%||40||03-04
 
|-
 
| [[Fernando Vaz]]||79||68,1%||23||19,8%||14||12,1%||116||59-60 e 69-72
 
|-
 
| [[Filipe dos Santos]]||44||68,2%||10||15,6%||10||15,6%||64||24-25, 27-28, 30-31 e 33-34
 
|-
 
| [[Gentil Cardoso]]||18||62,1%||6||20,7%||5||17,2%||29||63-64
 
|- class="warning no-result"
 
| colspan=9|Sem resultados
 
|}
 
  
 
== Old Vector.css ==
 
== Old Vector.css ==

Revisão das 22h07min de 14 de outubro de 2016

Dados de MRG MRG.gif
Nome MRG
Nascimento segunda-feira, 04 de Janeiro de 1988
Naturalidade Loulé - Portugal - 
Posição WikiDev

Áreas de interesse:

  • Apoio técnico

JavaScript

  • 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');
   }
  });

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
);

Old Vector.css

/* Código CSS colocado aqui afectará os utilizadores do tema Vector da WikiSporting.com */

/** HTML TEMPLATE **/

#wrapper {
	width: 915px;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background-color: #E2E2E2;
	border-width: 2px;
	border-style: solid;
	border-color: #CCCCCC;
	padding: 20px;
}
#header_area {
	text-align: center;
	width: 100%;
}
#header_area IMG {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
#content_area {
	background-color: #FFFFFF;
	border-color: #CCCCCC;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	width: 96%;
	margin-top: 20px;
	padding-left: 2%;
	padding-right: 2%;
}
#footer_area {
	width: 100%;
	font-size: x-small;
	overflow: hidden;
}
.footer_area_left {
	float: left;
	width: 50%;
	padding-top: 1%;
}
.footer_area_right {
	float: right;
	width: 50%;
	text-align: right;
	padding-top: 1%;
}
#p-cat-universo {
	background-color: #E2E2E2;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-bottomright: 10px;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	margin-bottom: 1.5em;
	margin-left: -1.2em;
	padding-bottom: 0.5em !important;
	padding-top: 0.5em;
	padding-left: 1.2em;
	width: 9em;
}
#pageshare {
	position:fixed;
	top:34%;
	margin-left:935px;
	background-color: #E2E2E2;
	border-bottom: 2px solid #CCCCCC;
	border-bottom-right-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-webkit-border-bottom-right-radius: 10px;
	border-left: 0 solid #CCCCCC;
	border-top: 2px solid #CCCCCC;
	border-top-right-radius: 10px;
	-moz-border-radius-topright: 10px;
	-webkit-border-top-right-radius: 10px;
}
#pageshare .sbutton {
	float:left;
	clear:both;
	margin:10px;
}