Jump to content

확장기능:WikiEditor

From mediawiki.org
This page is a translated version of the page Extension:WikiEditor and the translation is 27% complete.
미디어위키 확장 기능 설명서
WikiEditor
출시 상태: 안정
설명 확장 가능한 위키테스트 편집 인터페이스와 많은 기능을 제공하는 묘듈들을 제공합니다.
만든 이
최신 버전 지속적인 업데이트
MediaWiki >= 1.47.0
  • $wgWikiEditorRealtimePreviewDebounce
  • $wgWikiEditorRealtimePreview
  • $wgWikiEditorRealtimeDisableDuration
Licence GNU General Public License 2.0 or later
다운로드
README
예시 시험판 위키백과
WikiEditor 확장 기능 번역 (translatewiki.net에서 가능한 경우)
이슈 미해결 작업 · 버그 보고

WikiEditor(또는 위키편집기) 확장기능은 위키텍스트를 편집하는데 있어서 개선된 인터페이스를 제공합니다. 또한 위키백과에서 2010년부터 데스크탑 사용자들에게 제공해 오고 있는 편집 인터페이스이기도 하기 때문에 이따금씩 2010 위키텍스트 편집기 라고 불리기도 합니다.

설치

이 확장 기능은 미디어위키 1.18 이상의 버전이 포함되어 있으므로, 다운로드할 필요가 없습니다. 나머지 구성 지침은 여전히 따라야 합니다.
  • 파일을 다운로드하고 WikiEditor 폴더를 extensions/ 디렉토리에 넣어 주세요.
    개발자와 코딩 기여자는 Git을 이용해 확장기능을 다운받는 것이 좋습니다.
    cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
    
  • 아래의 코드를 LocalSettings.php 코드의 마지막에 추가합니다.
    wfLoadExtension( 'WikiEditor' );
    
  • Yes 완료 – 위키의 ‘Special:Version’에 이동해서, 확장기능이 올바르게 설치된 것을 확인합니다.

In some situations, WikiEditor may not show in your browser after the installation. Clearing your browser cache will solve the problem.

Note for IIS setup: By default, IIS doesn't understand .svg files. WikiEditor uses them to represent the icons. To fix this, you have to add the MIME type.

설정

Enabling/disabling the toolbar

No configuration is needed "out of the box". By default, when installed, this extension will be available to all users, and logged-in users can disable it from their preferences via the 편집 도구 모음 활성화하기: '2010년 위키텍스트 편집기'라고도 합니다. option (under the 편집 tab).

If you wish all users to have it, and be unable to disable it, add it to $wgHiddenPrefs in your LocalSettings.php file:

$wgHiddenPrefs[] = 'usebetatoolbar';
미디어위키 버전:
1.31

If you are using a version before REL1_31 and would want the toolbar to be default for users when they first join, add this line to your LocalSettings.php:

$wgDefaultUserOptions['usebetatoolbar'] = 1;

Realtime Preview

This configuration parameter defaults to true starting with version 1.41.0 of MediaWiki.
미디어위키 버전:
1.41

Realtime Preview is enabled by default. Disable the Realtime Preview feature with the following:

$wgWikiEditorRealtimePreview = false;
미디어위키 버전:
1.39 – 1.40

Enable the Realtime Preview feature with the following:

$wgWikiEditorRealtimePreview = true;

Signature button

The button for adding user signatures (four tildes) is available on talk pages and in namespaces specified in $wgExtraSignatureNamespaces .

같이 보기

  • RefToolbar 2.0, on-wiki JavaScript that adds Cite template tools to WikiEditor's UI.