Manual:Extensions/ko
![]() |
개발 | Tag extensions | Parser functions | Hooks | 특수 문서 | Skins | Magic words | API |
확장기능이란 무엇일까요?[edit | edit source]확장기능은 미디어위키에서 부족한 기능이나 모양을 추가해 줍니다 사용자는 기존 확장기능을 찾아보거나 새 확장기능을 요청할 수 있습니다. System administrators can install (or remove) extensions on the MediaWiki installations that they manage. 개발자는 새 확장기능을 만들거나 improve or maintain existing extensions할수 있습니다. |
확장기능 검색: |
확장 기능을 사용하여 다음 같은 기능을 사용 할수 있습니다.:
- 문서를 작성할때 툴을 추가 할수도 있습니다.(extend the wiki markup used to write articles) - see Category:Parser function extensions and Category:Parser extensions for examples.
- 새로운 도구 와 관리 도구를 추가 할수 있습니다.(add new reporting and administrative capabilities) - Category:Special page extensions 를 참조 하세요.
- 미디어 위키를 더 멋지게 보이게 할수 있습니다. (change the look and feel of MediaWiki) - see Gallery of user styles and Category:User interface extensions for examples.
- 확장 기능을 사용하여 보안을 더 강화 할수 있습니다. - 카테고리:Authentication and Authorization Extensions 를 참조 하세요.
일부 확장 기능은 위키 개발자 외 다른 개발자 에 의해 만들어 졌습니다. 이러한 문제점 때문에 버그가 있을수 있고 서로 호환이 되지 않을수 있습니다. 일부는 관리가 되지 않는것도 있습니다. 모든 확장기능은 모든 버전에서 작동 합니다. 다른 개발자들의 신뢰되지 않은 확장기능을 사용 할시에는 심각한 문제가 초래 할수 있습니다. 데이터 베이스, 위키 설정 등을 변경 하는 확장 기능을 사용 할때에는 위키가 잘못 되어 복구를 하지 못할수도 있으므로 위키 손상을 방지 하기 위해서는 , 데이터베이스 및 위키 핵심 코드 들을 항상 백업 해야 합니다.
확장기능 찾기[edit | edit source]
Category:Extensions by category 나 Extension Matrix에서 이미 작성된 확장 기능을 찾을 수 있습니다. For information on installing these extensions or writing your own, see below.
설치된 확장기능 보기[edit | edit source]
Only someone with administration access to the filesystem (and often the database too) on a server can install extensions for MediaWiki, but anyone can check which extensions are active on an instance of MediaWiki by accessing the Special:Version page. For example, these extensions are active in the English Wikipedia.
확장기능 설치[edit | edit source]
미디어 위키는 설치 바로 후에 확장기능을 설치 할수 있습니다. 확장기능을 설치 할려면 다음 절차들을 거치십시오:
- 시작 하기전에
- 원하는 확장 기능 다운받기.
- 확장 기능 다운로더 가 거의 유명한 확장기능을 다운받을수 있게 도와 줄것 입니다.
- Extensions are usually distributed as modular packages. They generally go in their own subdirectory of
$IP/extensions/
. A list of extensions documented on MediaWiki.org is available on the extension matrix, and a list of extensions stored in the Wikimedia Git repository is located at git:mediawiki/extensions. Some extensions are available as source code within this wiki. You may want to automate copying them. - Unofficial bundles of the extensions in the Wikimedia Git repository can be found on the toolserver. These bundles are arbitrary snapshots, so keep in mind they might contain a broken version of the extension (just as if you load them from the developer's repository directly).
- 확장기능 설치하기.
- Generally, at the end of the
LocalSettings.php
file (but above the PHP end-of-code delimiter, "?>
", if present), the following line should be added: -
require_once "$IP/extensions/extension_name/extension_name.php";
- This line forces the PHP interpreter to read the extension file, and thereby make it accessible to MediaWiki.
- Some extensions can conflict with maintenance scripts, for example if they directly access $_SERVER (not recommended).
- In this case they can be wrapped in the conditional so maintenance scripts can still run.
- Generally, at the end of the
if (!$wgCommandLineMode) { require_once "$IP/extensions/extension_name/extension_name.php"; }
- The maintenance script importDump.php will fail for any extension which requires customized namespaces which is included inside the conditional above such as Extension:Semantic MediaWiki, Extension:Semantic Forms.
-
필요한 권한이 확장기능에 적용 되어 있는지 반드시 확인 하십시오.
-
이 설치 방법이 대부분의 확장기능에는 적용 되지만 , 일부는 다른 설치 방법이 필요합니다. 자세한 내용은 확장기능의 설명을 확인 하세요.
-
If you want to alter configuration variables in LocalSettings.php, you have to do this typically after including the extension. Otherwise defaults defined in the extension will overwrite your settings.
-
Caution:
While extension declaration can be placed in other places within the LocalSettings.php file, never place extensions before the require_once "includes/DefaultSettings.php";
line for MediaWiki versions below 1.17 . Doing so will blank the extension setup function arrays, causing no extensions to be installed, and probably will make your wiki inaccessible until you fix it!
확장기능 업그레이드[edit | edit source]
Some extensions require to be updated whenever you update MediaWiki, while others work with multiple versions. To upgrade to a new version of an extension:
- Download the new version of the extension
- Replace all the extension files in the extension/ExtensionName directory with the new files. Do not remove the extension configuration present in LocalSettings.php
- Depending on the extension, you may have to run the Update.php maintenance script. Most extensions will mention if this script needs to be run or not. (Running the update.php script when its unnecessary will not hurt anything, so if you're unsure don't be afraid to run it). If you don't have command line access, you can also use the web updater.
- That's all you need to do. In most cases any extension configuration you have in LocalSettings.php will also work with the newer version of the extension.
확장기능 제거[edit | edit source]
Extensions are added by adding a line to LocalSettings.php, which basically looks like this:
require_once 'extensions/extension_name/extension_name.php';
- Remove this line and the extension is uninstalled. If you want to, you can (and if you do not want to use this extension in the future you should) remove the files of this extension inside the folder "extensions/".
- Maybe you also have some other lines in LocalSettings.php, which have to do with the extension you want to remove. Most likely this will be lines, which give certain users the right to access pages, which are provided by the extension. These lines contain the variable "$wgGroupPermissions" and make some settings there. As far as they have to do with rights, which come from the removed extension, you can remove these lines as well.
- Maybe your extension also has added columns to your database. The updater maintenance/update.php removes them, when you run it, after you have uninstalled the extension.
확장기능 개발[edit | edit source]
This complex topic is handled on the developing extensions manual page.[edit | edit source]
같이 보기[edit | edit source]
- Extension Matrix
- Category:Extensions
- Template:Extension
- Manual:Developing extensions
- Manual:Parser functions
- Manual:Special pages
- Manual:Tag extensions
- Project:Extension requests
- Manual:Translating extensions - Information about translating extensions.
- m:Category:MediaWiki extensions - in the process of being moved to MediaWiki.org.
확장: | 분류 • All • 요청 • Tag extensions • 확장기능에 대한 자주 묻는 질문 • Extension hook registry • Extension default namespaces |
---|
언어: | English • dansk • Deutsch • Ελληνικά • español • français • Bahasa Indonesia • 日本語 • 한국어 • polski • português do Brasil • русский • 中文 • 中文(繁體) |
---|