확장기능:WikiEditor
WikiEditor 출시 상태: 안정 |
|
---|---|
![]() |
|
설명 | 확장 가능한 위키테스트 편집 인터페이스와 많은 기능을 제공하는 묘듈들을 제공합니다. |
만든이 | |
최신 버전 | 지속적인 업데이트 |
MediaWiki | 1.31+ |
라이선스 | GNU General Public License 2.0 or later |
다운로드 | README |
예제 | Test Wikipedia |
WikiEditor 확장 기능 번역 (translatewiki.net에서 가능한 경우) | |
이슈 | 미해결 작업 · 버그 보고 |
WikiEditor(또는 위키편집기) 확장기능은 위키텍스트를 편집하는데 있어서 개선된 인터페이스를 제공합니다. 또한 위키백과에서 2010년부터 데스크탑 사용자들에게 제공해 오고 있는 편집 인터페이스이기도 하기 때문에 이따금씩 '2010 위키텍스트 편집기' 라고 불리기도 합니다. The extension used to provide "Labs" features for "publication" and "preview" steps, but these are removed from REL1_31 onwards.
설치
- 파일을 다운로드해서,
extensions/
폴더 내의WikiEditor
이라는 이름의 디렉터리 내에 설치합니다. - 아래의 코드를 LocalSettings.php의 말미에 추가합니다:
wfLoadExtension( 'WikiEditor' );
- 완료 – 위키의 ‘Special:Version’에 이동해서, 확장기능이 올바르게 설치된 것을 확인합니다.
설정
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';
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;
In some situations, WikiEditor may not show in your browser after the installation. Clearing your browser cache will solve the problem.
- The button for adding user signatures (four tildes) is available on talk pages and in namespaces specified in $wgExtraSignatureNamespaces .
- 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.
If you want to change the toolbar, change the following file:
extensions/WikiEditor/modules/jquery.wikiEditor.toolbar.config.js
같이 보기
- Extension:WikiEditor/Toolbar customization – technical details of customizing the toolbar.
- Extension:WikiEditor/Toolbar customization/Library – snippets of code for common additions to the toolbar.
- RefToolbar 2.0, on-wiki JavaScript that adds a Cite template tools to WikiEditor's UI.
- 2017 위키텍스트 에디터
This extension is being used on one or more Wikimedia projects. This probably means that the extension is stable and works well enough to be used by such high-traffic websites. Look for this extension's name in Wikimedia's CommonSettings.php and InitialiseSettings.php configuration files to see where it's installed. A full list of the extensions installed on a particular wiki can be seen on the wiki's Special:Version page. |