Расширение:Scribunto
Scribunto Статус релиза: стабильный |
|
---|---|
Реализация | Расширение парсера |
Описание | Предоставляет платформу, позволяющую встраивать сценарные языки программирования в страницы MediaWiki |
Автор(ы) |
|
Последняя версия | Постоянные обновления |
Политика совместимости | Snapshots releases along with MediaWiki. Master is not backwards compatible. |
PHP | 5.5+ |
Лицензия | GPL-2.0-or-later AND MIT |
Загрузка | |
Module (ns:828), Talk_Module (ns:829) |
|
|
|
Переведите расширение Scribunto если оно доступно на translatewiki.net | |
Проблемы | Открытые задачи · Сообщить об ошибке |
Расширение Scribunto (лат.: «пусть они напишут») позволяет встраивать в страницы MediaWiki модули, написанные на сценарных языках программирования.
На данный момент единственный поддерживаемый язык программирования — Lua.
Лицензия
Это расширение содержит код, распространяемый по лицензии GNU General Public License v2.0 или более поздней версии (GPL-2.0+), а также код, распространяемый по лицензии MIT License (MIT).
Требования
Совместимость с версиями PCRE
Рекомендуется версия PCRE 8.33+. Вы можете просмотреть используемую PHP версию PCRE на веб-странице phpinfo(), или из командной строки, выполнив следующую команду:
php -r 'echo "pcre: " . ( extension_loaded( "pcre" ) ? PCRE_VERSION : "no" ) . "\n";'
- Scribunto не будет работать, если установлена версия PCRE раньше 8.10.
- В PCRE 8.31 содержится ошибка с JIT-разбором паттернов, которая приводит к неработоспособности некоторых паттернов при использовании HHVM.
- В PCRE 8.32 есть ошибка, ввиду которой эта библиотека не может принимать некоторые несимвольные позиции Юникода, что приводит к ошибкам в модуле mw.html.
Операционные системы CentOS 6 и RHEL 6 ограничены версией PCRE 7 и должны быть обновлены для работы со Scribunto.
Обновление до версии 8.33 на сервере, использующем более старую версию, может быть проблематично. Смотрите статью обновление на PCRE 8.33 или выше для подробностей о таком обновлении.
Расширение PHP pcntl (LTS)
Версии MediaWiki: | 1.25 – 1.28 |
Версии Scribunto для MediaWiki 1.25 — 1.28 требовали наличия расширения pcntl для PHP, которое доступно только на платформах под управлением ОС Unix/Linux. Это требование действовало только при использовании LuaStandalone (т. е. выполнении Lua в отдельном дочернем процессе). Это расширение сделано необязательным в Scribunto для MediaWiki 1.29.
Вы можете просмотреть, включена ли поддержка pcntl, на веб-странице phpinfo(), или из командной строки, выполнив следующую команду:
php -r 'echo "pcntl: " . ( extension_loaded( "pcntl" ) ? "yes" : "no" ) . "\n";'
PHP mbstring extension
PHP needs to have the mbstring extension enabled.
You can check whether mbstring support is enabled by viewing a phpinfo() web page, or from the command line with the following command:
php -r 'echo "mbstring: " . ( extension_loaded( "mbstring" ) ? "yes" : "no" ) . "\n";'
Lua binary
Bundled binaries
Scribunto comes bundled with Lua binary distributions for Linux (x86 and x86-64), Mac OS X Lion, and Windows (32- and 64-bit).
Scribunto should work for you out of the box if:
- Your web server is run on one of the above platforms.
- PHP's
proc_open
function is not restricted[1] - Your web server is configured to allow the execution of binary files in the MediaWiki tree.
- Заметка: Execute permissions may need to be set; for example, in Linux use
- If you are using SELinux in "Enforcing" mode on your server, you might need to set a proper context for the binaries. Example for RHEL/CentOS 7:
chmod 755 /path/to/extensions/Scribunto/includes/engines/LuaStandalone/binaries/lua5_1_5_linux_64_generic/lua
chcon -t httpd_sys_script_exec_t /path/to/extensions/Scribunto/includes/engines/LuaStandalone/binaries/lua5_1_5_linux_64_generic/lua
Additional binaries
Additional Lua binary distributions, which may be needed for your web server if its operating system is not in the list above, can be obtained from http://luabinaries.sourceforge.net/ or from your Linux distribution. Only binary files for Lua 5.1.x are supported. Once you've installed the appropriate binary file on your web server, configure the location of the file with:
# where lua is the name of the binary file
# e.g. sourceforge LuaBinaries 5.1.5 - Release 2 name the binary file lua5.1
$wgScribuntoEngineConf['luastandalone']['luaPath'] = '/path/to/binaries/lua5.1';
Note that you should not add the above line unless you've confirmed that Scribunto's built-in binaries don't work for you.
LuaJIT, although theoretically compatible, is not supported. The support was removed due to Spectre and bitrot concerns (phab:T184156).
Installation
- Если вы используете Vagrant , установите с помощью
vagrant roles enable scribunto --provision
- Ручная установка
- Скачайте и распакуйте файл(ы) в папку с названием
Scribunto
в вашей папкеextensions/
. - Добавьте следующие строки в конец файла LocalSettings.php:
wfLoadExtension( 'Scribunto' ); $wgScribuntoDefaultEngine = 'luastandalone';
- Set execute permissions for the Lua binaries bundled with this extension:
chmod a+x /path/to/extensions/Scribunto/includes/engines/LuaStandalone/binaries/yourOS/lua
- Set type to httpd_sys_script_exec_t if SELinux is enforced:
chcon -t httpd_sys_script_exec_t /path/to/extensions/Scribunto/includes/engines/LuaStandalone/binaries/yourOS/lua
- Готово – Перейдите на страницу Special:Version на своей вики, чтобы удостовериться в том, что расширение успешно установлено.
Для использующих MediaWiki 1.29 или более ранние версии:
В приведенных выше инструкциях описывается новый способ установки этого расширения с использованием wfLoadExtension()
.
Если вам нужно установить это расширение на более ранние версии (MediaWiki 1.29 и более ранние), вместо wfLoadExtension( 'Scribunto' );
, вам необходимо использовать:
require_once "$IP/extensions/Scribunto/Scribunto.php";
Optional Installation
Integrating extensions
For a more pleasant user interface, with syntax highlighting and a code editor with autoindent, install the following extensions:
(MediaWiki 1.30 or earlier)Then in your LocalSettings.php after all the extension registrations, add:
$wgScribuntoUseGeSHi = true;
$wgScribuntoUseCodeEditor = true;
LuaSandbox
Мы разработали написанное на C расширение для PHP под названием LuaSandbox. Это расширение может быть использовано как альтернатива отдельному исполняемому файлу и обеспечивает более высокую производительность. См. LuaSandbox для подробностей об этом расширении и инструкции по его установке.
Если вы изначально устанавливали Scribunto для работы с отдельным двоичным файлом Lua, вам потребуется добавить в LocalSettings.php строку $wgScribuntoDefaultEngine = 'luasandbox';
.
Настройка
Доступны следующие переменные конфигурации:
- $wgScribuntoDefaultEngine
- Выбирает тип движка. Допустимые значения — ключи массива $wgScribuntoEngineConf, по умолчанию это 'luasandbox' и 'luastandalone'.
- $wgScribuntoUseGeSHi
- Если установлено Расширение:SyntaxHighlight , задайте эту переменную как true, чтобы это расширение использовалось при отображении модулей.
- $wgScribuntoUseCodeEditor
- Если установлено Extension:CodeEditor , задайте эту переменную как true, чтобы это расширение использовалось при редактировании модулей.
- $wgScribuntoEngineConf
- Ассоциативный массив для настройки движков. Ключи — допустимые значения переменной $wgScribuntoDefaultEngine, а значения — ассоциативные массивы с параметрами конфигурации. Каждый массив конфигурации должен содержать ключ 'class', называющий используемый подкласс класса ScribuntoEngineBase.
LuaStandalone
В $wgScribuntoEngineConf для Scribunto_LuaStandaloneEngine используются нижеперечисленные ключи. Обычно их задают примерно таким способом:
$wgScribuntoEngineConf['luastandalone']['key'] = 'value';
- luaPath
- Указывает путь к интерпретатору Lua.
- errorFile
- Указывает путь к файлу, к которому учётная запись веб-сервера имеет доступ на запись. В этот файл будут записываться ошибки и отладочный вывод самостоятельного интерпретатора.
- По умолчанию не ведётся запись ошибок, выводимых самостоятельным интерпретатором. Вы можете настроить эту запись как в следующей строке:
$wgScribuntoEngineConf['luastandalone']['errorFile'] = '/path/to/file.log';
- memoryLimit
- Указывает ограничение памяти в байтах, применяемое к процессу самостоятельного интерпретатора на Linux (осуществляется средствами ulimit).
- cpuLimit
- Указывает ограничение времени ЦП в секундах, применяемое к процессу самостоятельного интерпретатора на Linux (осуществляется средствами ulimit).
- allowEnvFuncs
- Задайте как true, чтобы разрешить использование в модулях функций setfenv и getfenv.
LuaSandbox
В $wgScribuntoEngineConf для Scribunto_LuaSandboxEngine используются нижеперечисленные ключи. Обычно их задают примерно таким способом:
$wgScribuntoEngineConf['luasandbox']['key'] = 'value';
- memoryLimit
- Specify the memory limit in bytes.
- cpuLimit
- Specify the CPU time limit in seconds.
- profilerPeriod
- Specify the time between polls in sections for the Lua profiler.
- allowEnvFuncs
- Set true to allow use of setfenv and getfenv in modules.
Usage
Scripts go in a new namespace called Module. Each module has a collection of functions, which can be called using wikitext syntax such as:
{{#invoke: Module_name | function_name | arg1 | arg2 | arg3 ... }}
Lua
Learning Lua
Lua is a simple programming language intended to be accessible to beginners. For a quick crash-course on Lua, try Learn Lua in 15 Minutes.
The best comprehensive introduction to Lua is the book Programming in Lua. The first edition (for Lua 5.0) is available online and is mostly relevant to Lua 5.1, the version used by Scribunto:
- Programming in Lua (scroll down past the book ads to find the text)
The reference manual is also useful:
Lua environment
In Lua, the set of all global variables and functions is called an environment.
Each {{#invoke:}} call runs in a separate environment. Variables defined in one {{#invoke:}} will not be available from another. This restriction was necessary to maintain flexibility in the wikitext parser implementation.
Debug console
- See also: Extension:Scribunto/Debug console
When editing a Lua module a so called "debug console" can be found underneath the edit form. In this debug console Lua code can be executed without having to save or even create the Lua module in question.
Troubleshooting
Note that red Ошибка скрипта messages are clickable and will provide more detailed information.
Ошибка Lua: Внутренняя ошибка: Интерпретатор завершил работу со статусом 1.
When using the LuaStandalone engine (this is the default), errors along the lines of "Ошибка Lua: Внутренняя ошибка: Интерпретатор завершил работу со статусом 1." may be generated if the standalone Lua interpreter cannot be executed or runs into various runtime errors.
To obtain more information, assign a file path to $wgScribuntoEngineConf['luastandalone']['errorFile']
.
The interpreter's error output will be logged to the specified file, which should prove more helpful in tracking down the issue.
The information in the debug log includes debugging information, which is why there is so much of it.
You should be able to ignore any line beginning with "TX" or "RX".
Ошибка Lua: Внутренняя ошибка: Интерпретатор завершил работу со статусом 2.
When using the LuaStandalone engine (this is the default), status 2 suggests memory allocation errors, probably caused by settings that allocate inadequate memory space for PHP or Lua, or both.
Assigning a file path to $wgScribuntoEngineConf['luastandalone']['errorFile']
and examining that output can be valuable in diagnosing memory allocation errors.
Increase PHP allocation in your PHP configuration; add the line memory_limit = 200M
.
This allocation of 200MB is often sufficient (as of MediaWiki 1.24) but can be increased as required.
Set Scribunto's memory allocation in LocalSettings.php as a line:
$wgScribuntoEngineConf['luastandalone']['memoryLimit'] = 209715200; # bytes
Finally, depending on the server configuration, some installations may be helped by adding another LocalSettings.php line
$wgMaxShellMemory = 204800; # in KB
Note that all 3 memory limits are given in different units.
Ошибка Lua: Внутренняя ошибка: Интерпретатор завершил работу со статусом 24.
When using the LuaStandalone engine (this is the default), status 24 suggests CPU time limit errors, although those should be generating a "The time allocated for running scripts has expired" message instead. It would be useful to file a task in Phabricator and participate in determining why the XCPU signal isn't being caught.
Ошибка Lua: Внутренняя ошибка: Интерпретатор завершил работу со статусом 126.
When using the LuaStandalone engine (this is the default), errors along the lines of "Ошибка Lua: Внутренняя ошибка: Интерпретатор завершил работу со статусом 126." may be generated if the standalone Lua interpreter cannot be executed. This generally arises from either of two causes:
- The lua executable file's permissions do not include Execute.
Set permissions as described under #Installation.
- The server does not allow execution of files from the place where the executable is installed, e.g. the filesystem is mounted with the 'noexec' flag.
This often occurs with shared hosted servers. Remedies include adjusting $wgScribuntoEngineConf['luastandalone']['luaPath']
to point to a Lua 5.1 binary installed in an executable location, or adjusting or convincing the shared host to adjust the setting preventing execution.
Error condition such as: Fatal exception of type MWException
Check the MediaWiki, PHP, or webserver logs for more details on the exception, or temporarily set $wgShowExceptionDetails to true.
version `GLIBC_2.11' not found
If the above gives you errors such as "version `GLIBC_2.11' not found", it means the version of the standard C library on your system is too old for the binaries provided with Scribunto. You should upgrade your C library, or use a version of Lua 5.1 compiled for the C library you do have installed. To upgrade your C library, your best option is usually to follow your distribution's instructions for upgrading packages (or for upgrading to a new release of the distribution, if applicable).
If you copy the lua binaries from Scribunto master (or from gerrit:77905), that should suffice, if you can't or don't want to upgrade your C library. The distributed binaries were recently recompiled against an older version of glibc, so the minimum is now 2.3 rather than 2.11.
Lua errors in Scribunto files
Errors here include:
- attempt to index field 'text' (a nil value)
- Lua error in mw.html.lua at line 253: Invalid class given:
If you are getting errors such these when attempting to use modules imported from WMF wikis, most likely your version of Scribunto is out of date. Upgrade if possible; for advanced users, you might also try to identify the needed newer commits and cherry-pick them into your local installation.
preg_replace_callback(): Compilation failed: unknown property name after \P or \p at offset 7
preg_replace_callback(): Compilation failed: unknown property name after \P or \p at offset 7
- this usually indicates an incompatible version of PCRE; you’ll need to update to >= 8.10
- @todo: link to instructions on how to upgrade
Lua error
If you copy templates from Wikipedia and then get big red "Lua error: x" messages where the Scribunto invocation (e.g. the template that uses {{#invoke:}}) should be, that probably means that you didn't import everything you needed. Make sure that you tick the "Include templates" box at w:Special:Export when you export.
When importing pages from another wiki, it is also possible for templates or modules in the imported data to overwrite existing templates or modules with the same title, which may break existing pages, templates, and modules that depend on the overwritten versions.
Blank screen
Make sure your extension version is applicable to your MediaWiki version.
Design documents
- Extension:Scribunto/Parser interface designTim Starling's presentation at linux.conf.au 2014 discussing the motivations, implementation challenges and results of deploying Scribunto and Lua.
- Extension:Scribunto/Victor's API proposal
- Extension:Scribunto/Documentation specification
- Extension:Scribunto/Tim's draft roadmap
Другие страницы
- Extension:Scribunto/Deployment priorities
- Extension:Scribunto/Brainstorming
- Lua scripting - Wikimedia activity page describing deployment plan to Wikimedia sites
- Extension:Scribunto/Справочник Lua - The reference about the Lua language, as well as its standard libraries and common Scribunto modules supported on Wikimedia sites
- Extension:Scribunto/Lua 5.2 changes - A list of known changes in Lua 5.2 that may cause code written in 5.1 to function unexpectedly
- Расширение:Scribunto/Примеры модулей
- Extension:Scribunto/Example extension - Code for example extensions extending the Scribunto library.
- Extension:Scribunto/We use Lua
Смотрите также
- General
- Lua Wikibase client - functionality for the Scribunto extension.
- commons:Commons:Lua - there may be specific notes for using Lua modules on Wikimedia Commons, including additional Lua extensions installed (e.g. for local support of internationalization and for parsing or playing medias). Some general purpose modules may be reused in other wikis in various languages (except specific tunings for policies, namespaces or project/maintenance pages with dedicated names). If possible, modules that could be widely reused across wikis should be tested and internationalized on Commons.
- wikipedia:Help:Lua - there may be specific notes for using Lua modules on (English) Wikipedia, including additional Lua extensions installed (including for integrating Wikidata and Wikimedia Commons contents, generating complex infoboxes and navigation boxes, or to facilitate the general administration/maintenance of the wiki contents under applicable policies). Some other localized Wikipedia editions (or other projects such Wiktionnary, Wikisource or Wikinews) may also have their own needs and Lua modules.
- wikidata:Help:Lua - there may be specific notes for using Lua modules on Wikidata, including additional Lua extensions installed (e.g. for local support of internationalization and for database queries)
- Extensions
- Расширение:Capiunto - Provides basic Infobox functionality for the Scribunto extension.
- Semantic Scribunto - provides native support for the Scribunto extension for usage with Расширение:Semantic MediaWiki
- VariablesLua - provides a Scribunto Lua interface for the Variables extension
- Wikibase Client - Provides Wikibase (part of Wikidata project)
Примечания
- ↑ i.e.
proc_open
is not within the array ofdisable_functions
in your server's "php.ini" file. If it is, you may see an error message likeproc_open(): open_basedir restriction in effect. File(/dev/null) is not within the allowed path(s):
. If you are using Plesk and have been granted sufficient permissions, you may be able to setopen_basedir
in the PHP settings for your domain or subdomain. Try changing{WEBSPACEROOT}{/}{:}{TMP}{/}
to{WEBSPACEROOT}{/}{:}{TMP}{/}{:}/dev/null{:}/bin/bash
.
Это расширение используется в одном или нескольких проектах Викимедиа. Вероятно, это означает, что расширение стабильно и работает достаточно хорошо, чтобы использоваться такими сайтами с высоким трафиком. Найдите название этого расширения в файлах конфигурации Викимедиа CommonSettings.php и InitialiseSettings.php, чтобы узнать, где оно установлено. Полный список расширений, установленных на конкретной вики, можно увидеть на странице Special:Version wiki. |