Skin:Minerva Neue

From mediawiki.org
This page is a translated version of the page Skin:Minerva Neue and the translation is 19% complete.
Outdated translations are marked like this.
Este tema acompanha o MediaWiki 1.38 ou superior. Logo, não é necessário baixá-la novamente. No entanto, ainda é necessário seguir as outras instruções fornecidas.
MediaWiki skins manual - categoria
Minerva Neue (Minerva)
Estado da versão: estável
Política de
compatibilidade
Snapshots releases along with MediaWiki. Master is not backwards compatible.
Licença GNU General Public License 2.0 or later
Baixar
Exemplo Example on this wiki
Para traduzir o tema Minerva Neue, verifique sua disponibilidade no translatewiki.net
Função no Vagrant minerva
Problemas : Tarefas em aberto · Relatar um erro
Minerva é uma tela responsiva e se adaptará a dispositivos móveis.

Minerva é a skin que serve o tráfego móvel para projetos Wikimedia em todo o mundo. Compared to other skins such as Vector , it provides a much simpler user interface and is much more aggressive about optimizing for performance so that it can cater for mobile users.

É otimizada para uso com MobileFrontend como a wgMFDefaultSkinClass mas na hora de escrever (mestre atual e versão 1.35) é uma dependência suave e funcionará sem a extensão instalada. For earlier MediaWiki versions, MobileFrontend is required.

Instalação

  • If using Vagrant , install with vagrant roles enable minerva -p

Manual installation

  • Baixe e coloque o(s) arquivo(s) em uma pasta chamada MinervaNeue dentro da sua pasta skins/.
  • Adicione o seguinte código no final do arquivo LocalSettings.php:
    wfLoadSkin( 'MinervaNeue' );
    $wgDefaultSkin = 'minerva';
    
  • Yes Concluído - Vá até Special:Version em sua wiki para se certificar que a instalação da skin foi bem-sucedida.
  • Nota: Configurar $wgDefaultSkin = 'minerva' fará a Minerva sua skin padrão, mesmo na visualização em Desktop. Ignore esta linha e use $wgDefaultMobileSkin = 'minerva'; se você quiser apenas MobileFrontend usando a skin Minerva.
Minerva em Especial:Preferências

Certifique-se de chamar wfLoadSkin depois de wfLoadExtension.

Integração MobileFrontend

Com a integração MobileFrontend a experiência Minerva será aprimorada para incluir vários outros recursos, incluindo:

  • Confirmação de edição de ligação vermelha
  • Gaveta popup de referência
  • Uma pesquisa aprimorada
  • Melhor integração no celular com muitas predefinições populares do estilo Wikipédia.

Para beneficiar destes:

Make mobile Minerva behave like desktop Minerva

When MobileFrontend is installed, Minerva is modified to behave in a simplified mode. If you would like Minerva to behave more like the desktop version add the following code to LocalSettings.php:

$wgMinervaTalkAtTop['base'] = true;
$wgMinervaAdvancedMainMenu['base'] = true;
$wgMinervaPersonalMenu['base'] = true;
$wgMinervaHistoryInPageActions['base'] = true;
$wgMinervaOverflowInPageActions['base'] = true;
$wgMinervaShowCategories['base'] = true;

Configuration

Configuration is listed in the Minerva readme in your local download or online.

Recently deprecated configuration

  • $wgMinervaCountErrors - previously used to count errors via statsd. In the unlikely event you were using it as a 3rd party please refer to Extension:WikimediaEvents for client side error logging.

Configuration of menus

Certain URLs in the main menu can be tweaked. These include:

Certain menu items will be enabled automatically when the relevant extension is added.

Configuration of donation link

$wgMinervaDonateLink['base'] = true;
Default value is in MediaWiki 1.35 true and in 1.39 false.

When enabled a donate link will be added to the main menu. The donate link uses the sitesupport and sitesupport-url mediawiki messages.

Desktop vs mobile modes


MobileFrontend provides additional capabilities that are not available in MediaWiki core. You can compare desktop vs mobile mode.

When operating in mobile mode the following features are available:

  • Core workflows such as editing and talk will trigger JavaScript based workflows. This is provided by Extension:MobileFrontend . See there for more for details.
  • Sections can be collapsed and expanded.

Expanded sections are memorized in the browser's local storage.

  • The menu contains different options depending on the current mode, e.g. Special:Preferences is available on desktop
  • MediaWiki:Mobile.css (for mobile mode) or MediaWiki:Common.css (for desktop mode) will be loaded

The desktop mode of the site is experimental. Bug reports and patches are appreciated.

When operating in desktop mode there are various issues that we are working towards fixing. Your patches and help are welcomed.

Questions and answers

If you have a question not answered by the page – please feel free to use the talk page to raise them.

What do I get when I install MobileFrontend?

Minerva works without MobileFrontend but installing MobileFrontend will provide several enhancements – notably reference and red link pop-up drawers, and a mobile optimized search and custom editor. These optimizations will apply to the desktop and mobile version. Currently it is not possible to disable the mobile view link but patches to that effect will gladly be accepted!

I maintain an extension, how can I integrate with Minerva?

How should I target styles to Minerva?

If the extension includes any UI, when testing your extension with Minerva, it is important to check if your extension works or degrades acceptably on break points. For testing purposes, Minerva operates on several breakpoints: 320px (@width-breakpoint-mobile), 720px (@width-breakpoint-tablet) and 1000px (@width-breakpoint-desktop). Your extension is expected to adapt to these breakpoints using appropriate media queries. It is acceptable for a feature to disable altogether, provided it gives the user feedback where necessary e.g.

@import 'mediawiki.skin.default.less';

@media screen and ( max-width: @width-breakpoint-tablet ) {
.myfeature { display: none; } /* not supported for mobile users */
.myfeature ~ .mobilewarning { display: block; } /* Show the warning message explaining why the feature was disabled. */
}

Normally it's acceptable to use media queries for your extension and this will benefit all skins, however in some cases you may need Minerva specific behaviour. If so you can use Manual:$wgResourceModuleSkinStyles to define styles.

How can I add items to Minerva menus?


The Minerva menu system is currently bespoke and does not work like other skins. We plan to fix this eventually so that Minerva makes use of the standard hook for modifying menus - Manual:Hooks/SkinTemplateNavigation::Universal . The work here is tracked in phab:T291568. If you would like to add menu items in the mean time, please use the MobileMenu hook.