Jump to content

Extension:CategoryWatch/ko

From mediawiki.org
This page is a translated version of the page Extension:CategoryWatch and the translation is 10% complete.
미디어위키 확장 기능 설명서
CategoryWatch
출시 상태: 안정
구현 알림
설명 Extends watchlist functionality to include notification about membership changes of watched categories.
만든 이
최신 버전 2.0.0 (2018-08-02)
MediaWiki 1.27+

  • $wgCategoryWatchNotifyEditor
  • $wgCategoryWatchUseAutoCat
  • $wgCategoryWatchUseAutoCatRealName
Licence GNU General Public License 2.0 or later
다운로드
CategoryWatch 확장 기능 번역 (translatewiki.net에서 가능한 경우)

The CategoryWatch extension extends watchlist functionality to include notification about membership changes of watched categories.

The extension integrates with Echo notifications.

Rationale

A feature that's missing from the MediaWiki Watchlist functionality is that if you watch a category page, you will only be notified when the content of the category page text changes. You won't be notified when pages are added to or removed from that category though which is probably the main information you were wanting when deciding to watch a category page.

This extension was developed primarily to be used in conjunction with the RecordAdmin extensions (which is obsolete), but it's also very useful by itself. When used with these extensions, it's used to allow roles to be notified when work items have changed state and been moved into a category they're responsible for.

설치

  • 파일을 다운로드하고 CategoryWatch 폴더를 extensions/ 디렉토리에 넣어 주세요.
    개발자와 코딩 기여자는 Git을 이용해 확장기능을 다운받는 것이 좋습니다.
    cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryWatch
    
  • 아래의 코드를 LocalSettings.php 코드의 마지막에 추가합니다.
    wfLoadExtension( 'CategoryWatch' );
    
  • Configure as required.
  • Yes 완료 – 위키의 ‘Special:Version’에 이동해서, 확장기능이 올바르게 설치된 것을 확인합니다.

Configuration

  • In PreferencesWatchlist, enable "Add all pages in a category to your watchlist when you add a category"
  • $wgCategoryWatchNotifyEditor can be set to true which will allow the user who re-categorises an article to also receive the notification message if it is a category they are watching. This is useful so that the editor has an audit trail of all membership changes to categories they're watching.
  • $wgCategoryWatchUseAutoCat can be set to true which causes users to automatically be watching a category of the name Category:Automatically watched by <USERNAME> (set it the categorywatch-autocat message). For example, if you were logged in to the wiki as User:Foo, then you would automatically be notified of any changes to articles in Category:Automatically watched by Foo.
  • $wgCategoryWatchUseAutoCatRealName modifies the automatically watched category function to work with real names instead of usernames. If this was set to true for the example discussed in the previous paragraph, the category name might be something like Category:Automatically watched by Henry McFoo.

See also