Skip to main content
Linha 11: Linha 11:
  
 
==Funções adicionadas para actualização para 1.24.1==
 
==Funções adicionadas para actualização para 1.24.1==
* Pages optimized to display well on mobile devices should include a meta viewport in the head of the document specifying
+
 
 +
* Pages optimized to display well on mobile devices should include a meta viewport in the head of the document specifying the below. Should be added to SkinVector.
 
<code>$out->addMeta ( 'viewport', 'width=device-width, initial-scale=1' );</code>
 
<code>$out->addMeta ( 'viewport', 'width=device-width, initial-scale=1' );</code>
 +
 +
* Maximum time in seconds to cache resources served by the resource loader. Should be added to LocalSettings.
 +
<code>$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' => 24 * 60 * 60, // 24 hours
 +
'client' => 24 * 60 * 60, // 24 hours
 +
),
 +
);</code>
 +
 +
* Deactivate User CSS and JS. Should be added to LocalSettings.
 +
<code># User Javascript and CSS
 +
$wgAllowUserJs = false;
 +
$wgAllowUserCss = false;</code>
 +
 +
* Disable links to talk pages of anonymous users. Should be added to LocalSettings.
 +
<code>$wgDisableAnonTalk = true;</code>
 +
 +
* Set default searching fields. Should be added to LocalSettings.
 +
<code>$wgNamespacesToBeSearchedDefault = array(
 +
NS_MAIN =>          true,
 +
NS_TALK =>          false,
 +
NS_USER =>          true,
 +
NS_USER_TALK =>      false,
 +
NS_PROJECT =>        true,
 +
NS_PROJECT_TALK =>  false,
 +
NS_FILE =>          true,
 +
NS_FILE_TALK =>      false,
 +
NS_MEDIAWIKI =>      true,
 +
NS_MEDIAWIKI_TALK => false,
 +
NS_TEMPLATE =>      true,
 +
NS_TEMPLATE_TALK =>  false,
 +
NS_HELP =>          true,
 +
NS_HELP_TALK =>      false,
 +
NS_CATEGORY =>      true,
 +
NS_CATEGORY_TALK =>  false
 +
);</code>
 +
 +
* Enable the UniversalEditButton for browsers that support it. Should be added to LocalSettins.
 +
<code>$wgUniversalEditButton = true;</code>

Revisão das 04h23min de 15 de janeiro de 2015

Dados de MRG 270x160px
Nome MRG
Nascimento 1988
Naturalidade Loulé - Portugal - 
Posição WikiDev

Áreas de interesse:

  • Apoio técnico

Funções adicionadas para actualização para 1.24.1

  • Pages optimized to display well on mobile devices should include a meta viewport in the head of the document specifying the below. Should be added to SkinVector.

$out->addMeta ( 'viewport', 'width=device-width, initial-scale=1' );

  • Maximum time in seconds to cache resources served by the resource loader. Should be added to LocalSettings.

$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' => 24 * 60 * 60, // 24 hours 'client' => 24 * 60 * 60, // 24 hours ), );

  • Deactivate User CSS and JS. Should be added to LocalSettings.

# User Javascript and CSS $wgAllowUserJs = false; $wgAllowUserCss = false;

  • Disable links to talk pages of anonymous users. Should be added to LocalSettings.

$wgDisableAnonTalk = true;

  • Set default searching fields. Should be added to LocalSettings.

$wgNamespacesToBeSearchedDefault = array( NS_MAIN => true, NS_TALK => false, NS_USER => true, NS_USER_TALK => false, NS_PROJECT => true, NS_PROJECT_TALK => false, NS_FILE => true, NS_FILE_TALK => false, NS_MEDIAWIKI => true, NS_MEDIAWIKI_TALK => false, NS_TEMPLATE => true, NS_TEMPLATE_TALK => false, NS_HELP => true, NS_HELP_TALK => false, NS_CATEGORY => true, NS_CATEGORY_TALK => false );

  • Enable the UniversalEditButton for browsers that support it. Should be added to LocalSettins.

$wgUniversalEditButton = true;