스킨:미네르바 노이어
Minerva Neue (Minerva) 출시 상태: 안정 |
|
---|---|
호환성 정책 | 스냅샷은 미디어위키와 함께 릴리스됩니다. Master is not backwards compatible. |
라이선스 | GNU General Public License 2.0 or later |
다운로드 | |
예시 | Example on this wiki |
$2 스킨 번역 (translatewiki.net에서 가능한 경우) | |
Vagrant role | minerva |
이슈 : | 미해결 작업 · 버그 보고 |
Minerva is the skin that serves mobile traffic for Wikimedia projects across the world. Compared to other skins such as 벡터 , it provides a much simpler user interface and is much more aggressive about optimizing for performance so that it can cater for mobile users.
It is optimized for use with the 모바일 프론트엔드 extension (which is done by setting wgMFDefaultSkinClass
to 'SkinMinerva'), but, since MediaWiki 1.35, Minerva Neue can also be used without MobileFrontend.
For earlier MediaWiki versions, MobileFrontend is required.
설치
- Vagrant 를 사용하고 있는 경우에는,
vagrant roles enable minerva -p
로 설치해주세요
수동 설치
- 파일을 다운로드하고
MinervaNeue
폴더를skins/
디렉토리에 넣어 주세요. - 아래의 코드를 LocalSettings.php 파일의 말미에 추가합니다:
wfLoadSkin( 'MinervaNeue' ); $wgDefaultSkin = 'minerva';
- 완료 - 위키의 Special:Version에 이동해서, 스킨이 올바르게 설치된 것을 확인합니다.
- Note: Setting
$wgDefaultSkin = 'minerva'
will make Minerva your default skin even in desktop view.
Ignore this line and instead use $wgDefaultMobileSkin = 'minerva';
(default in recent versions) if you want only MobileFrontend to use the Minerva skin.
Make sure to call wfLoadSkin
after wfLoadExtension
.
MobileFrontend integration
With MobileFrontend integrated (mobile mode) the Minerva experience will be enhanced to include various other features including:
- Red link edit confirmation
- Reference pop-up drawer
- An enhanced search
- Better integration on mobile with many popular Wikipedia-style templates.
To benefit from these:
- Download and install the MobileFrontend extension.
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 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.
메뉴 설정
Certain URLs in the main menu can be tweaked. These include:
- Random (via editing MediaWiki:Randompage-url)
- Portal URL (of Advanced editing mode via MediaWiki:Portal-url)
Certain menu items will be enabled automatically when the relevant extension is added.
- Nearby (provided by 확장기능:모바일 프론트엔드 ).
Configuration of donation link
$wgMinervaDonateLink['base'] = true;
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 확장기능:모바일 프론트엔드 . 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 skin will link to pages optimized for mobile provided by MobileFrontend if enabled. See 확장기능:모바일 프론트엔드 for more information. e.g. Special:Watchlist (compare desktop vs mobile)
- In mobile view, navigation bars and side bars are hidden by default, as described in their documentation.
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.
이 스킨은 하나 이상의 위키미디어 프로젝트에서 사용 중입니다. 이것은 아마도 이 스킨이 안정적이고 트래픽이 많은 웹 사이트에서 사용할 수 있을 만큼 충분히 잘 작동한다는 것을 의미합니다. 설치된 위치를 확인하려면 위키미디어의 CommonSettings.php 및 InitialiseSettings.php 구성 파일에서 이 스킨의 이름을 찾습니다. 특정 위키에 설치된 스킨의 전체 목록은 위키의 Special:Version 문서에서 볼 수 있습니다. |
This skin is included in the following wiki farms/hosts and/or packages: This is not an authoritative list. Some wiki farms/hosts and/or packages may contain this skin even if they are not listed here. Always check with your wiki farms/hosts or bundle to confirm. |
- Skins bundled with MediaWiki 1.38/ko
- GPL licensed skins/ko
- Stable skins/ko
- Skins in Wikimedia version control/ko
- ResourceLoaderRegisterModules extensions/ko
- SkinPageReadyConfig extensions/ko
- UserLogoutComplete extensions/ko
- FetchChangesList extensions/ko
- MobileFrontendBeforeDOM extensions/ko
- MobileFrontendFeaturesRegistration extensions/ko
- RequestContextCreateSkinMobile extensions/ko
- SpecialPageBeforeExecute extensions/ko
- ResourceLoaderGetConfigVars extensions/ko
- OutputPageBodyAttributes extensions/ko
- All skins/ko
- Skins used on Wikimedia/ko
- Skins included in Canasta/ko
- Skins included in Miraheze/ko
- Skins included in MyWikis/ko
- Skins included in ProWiki/ko
- Skins included in WikiForge/ko
- Extensions supporting fundraising and donations/ko