Manual:Extensions/ko

From MediaWiki.org
Jump to: navigation, search
Gnome-preferences-other.svg 확장: 개발 Tag extensions Parser functions Hooks 특수 문서 Skins Magic words API

확장기능이란 무엇일까요?[edit | edit source]

MediaWiki extensions

확장기능은 미디어위키에서 부족한 기능이나 모양을 추가해 줍니다

사용자는 기존 확장기능을 찾아보거나 새 확장기능을 요청할 수 있습니다. System administrators can install (or remove) extensions on the MediaWiki installations that they manage. 개발자는 새 확장기능을 만들거나 improve or maintain existing extensions할수 있습니다.

확장기능 검색:


확장 기능을 사용하여 다음 같은 기능을 사용 할수 있습니다.:

일부 확장 기능은 위키 개발자 외 다른 개발자 에 의해 만들어 졌습니다. 이러한 문제점 때문에 버그가 있을수 있고 서로 호환이 되지 않을수 있습니다. 일부는 관리가 되지 않는것도 있습니다. 모든 확장기능은 모든 버전에서 작동 합니다. 다른 개발자들의 신뢰되지 않은 확장기능을 사용 할시에는 심각한 문제가 초래 할수 있습니다. 데이터 베이스, 위키 설정 등을 변경 하는 확장 기능을 사용 할때에는 위키가 잘못 되어 복구를 하지 못할수도 있으므로 위키 손상을 방지 하기 위해서는 , 데이터베이스 및 위키 핵심 코드 들을 항상 백업 해야 합니다.

확장기능 찾기[edit | edit source]

Category:Extensions by categoryExtension 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]

미디어 위키는 설치 바로 후에 확장기능을 설치 할수 있습니다. 확장기능을 설치 할려면 다음 절차들을 거치십시오:

  1. 시작 하기전에
    약간의 확장 기능들은 패치 가 필요 합니다. 그중 많은 확장 기능 들은 유닉스 명령어 로 설치하는 방법을 지원 합니다. 명령어들을 실행 하기 위해서는 쉘 접근 권한 (SSH) 이 필요 합니다.
  2. 원하는 확장 기능 다운받기.
    확장 기능 다운로더 가 거의 유명한 확장기능을 다운받을수 있게 도와 줄것 입니다.
    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).
  3. 장기능 설치하기.
    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.
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! 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:

  1. Download the new version of the extension
  2. Replace all the extension files in the extension/ExtensionName directory with the new files. Do not remove the extension configuration present in LocalSettings.php
  3. 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.
  4. 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.
These instructions cover 99% of extensions. If the specific extension you are upgrading has instructions that differ from these, you should probably follow the specific extension's instructions

확장기능 제거[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';
Depending on the extension you want to uninstall additionally other stuff might be done on installation, which you want to undo now. For details see the section on installing an extension.
  1. 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/".
  2. 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.
  3. 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]

확장: 분류All요청Tag extensions확장기능에 대한 자주 묻는 질문Extension hook registryExtension default namespaces
언어: English  • dansk • Deutsch • Ελληνικά • español • français • Bahasa Indonesia • 日本語 • 한국어 • polski • português do Brasil • русский • 中文 • 中文(繁體)‎