도움말:문서 상태 인디케이터

From mediawiki.org
This page is a translated version of the page Help:Page status indicators and the translation is 27% complete.

문서 상태 인디케이터는 아이콘(또는 줄여서 스니펫)에서 문서의 주요 내용 영역 외에 표시되며, 문서 상태(예를 들면, 해당 문서가 보호된 문서이거나 알찬 글 문서일 때)를 가리키는 것입니다.

호출 이름도 탑 아이콘, 문서 아이콘, 호출 아이콘으로 여러가지입니다.

이 기능이 Gerrit change 162609에서 MediaWiki 1.25 에 추가된 이유는 작업 T25796 해소와 이 문제에 대응하기 위해서 잠정적으로 더해진, 영어판 위키백과의 ‘top icon‘ 틀을 대표로 하는 복수 해결책을 없애버리기 위합입니다.

문서 상태 인디케이터를 표시

벡터 스킨에서는 스크린샷에 빨간 상자로 표시시킨 부분에 표시됩니다.

문서 상태 인디케이터는 보통 문서의 오른쪽 상단이나 문서 내용의 바깥쪽, 또는 제목 앞에 표시됩니다. 정확한 위치는 스킨 에 따라 다릅니다.

문서 상태 인디케이터 추가하기

다음 문법을 통해 문서에 인디케이터를 추가하고, 태그의 name 속성과 내용을 입맛대로 바꾸세요.

It is strongly recommended to create a template for each indicator type you're going to need, instead of including the tag syntax directly in articles.

Wikitext syntax:

<indicator name="foo">[[File:Foo.svg|20px]]</indicator>

Lua module syntax:

mw.getCurrentFrame():extensionTag {
	name = "indicator",
	content = '[[File:Foo.svg|20px]]',
	args = {
		name = "foo"
	}
}

Note that:

  • When using a caption on the image, the caption automatically becomes a title attribute with the contents of the caption.
  • Any wikitext can be added, not just images. (도움말:TemplateStyles is only supported starting with 미디어위키 1.39 , see T188443.)
  • Every indicator must have a unique identifier (name). It's not possible to have several indicators with the same name – in case of duplicates, the latest occurrence of the tag wins.
  • Indicators are displayed ordered by their names (case-sensitive) and not in order of their occurrence. This ensures consistency across pages and provides a simple means of ordering or grouping them.
  • Indicators are not tracked. They are intended to merely reflect the content or metadata that is already present on the page, and not be data themselves. You should be able to use the appropriate tracking category , template transclusions list, special page report, or other means to list pages that include a given indicator.

Known problems

Customizing display on your wiki

If the skin you're using supports page status indicators (all default skins do), you can adjust their display using site and user CSS. The CSS classes to style are .mw-indicators (for the entire containing block) and .mw-indicator (for each separate indicator).

Each indicator is also given an ID of #mw-indicator-name, where name is the name assigned to the indicator using the <indicator name="foo"> syntax.

Adding support for indicators in skins

See array-indicators on Manual:SkinMustache.php#Template_data .

Using indicators from PHP code

Access the OutputPage object and call its setIndicators() method, passing an ID and the HTML string you want displayed. If you're adding a help link to documentation, call its addHelpLink() method, also implemented by SpecialPage and other classes. This puts a help link in the indicators area; for example, see Special:WhatLinksHere.