확장기능:WikiEditor

From mediawiki.org
This page is a translated version of the page Extension:WikiEditor and the translation is 30% complete.
이 확장 기능은 미디어위키 1.18 이상에서 포함됩니다. 따라서 다시 다운로드하지 않아도 됩니다. 하지만 여전히 제공되는 별개의 지침을 따라야 합니다.
미디어위키 확장 기능 설명서
WikiEditor
출시 상태: 안정
설명 확장 가능한 위키테스트 편집 인터페이스와 많은 기능을 제공하는 묘듈들을 제공합니다.
만든 이
최신 버전 지속적인 업데이트
MediaWiki >= 1.42.0
라이선스 GNU General Public License 2.0 or later
다운로드
README
예제 Test Wikipedia
  • $wgWikiEditorRealtimePreview
  • $wgWikiEditorRealtimePreviewDebounce
  • $wgWikiEditorRealtimeDisableDuration
Quarterly downloads 652 (Ranked 5th)
Public wikis using 13,753 (Ranked 9th)
WikiEditor 확장 기능 번역 (translatewiki.net에서 가능한 경우)
이슈 미해결 작업 · 버그 보고

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


설치

  • 파일을 다운로드하고 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 represents 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 "편집 도구 모음 활성화하기" 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 :

$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

미디어위키 버전:
1.39

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 .

History

The extension used to provide "Labs" features for "publication" and "preview" steps, but these were removed from REL1_31 onwards.

같이 보기

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