Extension:ForcePreview/ko

This page is a translated version of the page Extension:ForcePreview and the translation is 33% complete.
미디어위키 확장 기능 설명서
ForcePreview
출시 상태: 안정
구현 User rights
설명 Forces unprivileged users to preview before saving
만든 이 Ryan Schmidt (Skizzerz토론)
최신 버전 2.0.0 (2017-09-20)
MediaWiki 1.29+
데이터베이스 변경 아니오
라이선스 MIT 허가서
다운로드
README
예제 strategywiki.org
forcepreviewexempt
Quarterly downloads 10 (Ranked 139th)
ForcePreview 확장 기능 번역 (translatewiki.net에서 가능한 경우)

The ForcePreview forces unprivileged users to preview before saving.

사용법

Users without the forcepreviewexempt right will be forced to use the "미리 보기" (or "Live Preview", if enabled) button before being allowed to save the page.

설치

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

같이 보기

  • Manual:Force preview - JavaScript that performs the same function, albeit easier to work around (users can simply disable JavaScript on their browser to get around the restriction).