Extension:Scribunto
Scribunto 发行状态: 稳定版 |
|
---|---|
实现 | 解析器扩展 |
描述 | 提供在 MediaWiki 页面里嵌入脚本语言的框架 |
作者 |
|
最新版本 | 持续更新 |
兼容性政策 | 快照跟随MediaWiki发布。 master分支不向后兼容。 |
MediaWiki | >= 1.43 |
PHP | 5.5+ |
许可协议 | GPL-2.0-or-later AND MIT |
下載 | |
Module (ns:828), Talk_Module (ns:829) |
|
|
|
季度下載量 | 439 (Ranked 7th) |
正在使用的公开wiki数 | 8,789 (Ranked 30th) |
前往translatewiki.net翻譯Scribunto扩展 | |
Vagrant角色 | scribunto |
問題 | 开启的任务 · 报告错误 |
Scribunto(拉丁语: “他们应能/让他们(在未来)书写”)扩展可以在 MediaWiki 软件中嵌入脚本。
目前唯一被支持的脚本语言是Lua。 Scribunto Lua脚本在一个名为Module的命名空间里。 模块使用 #invoke 解析器函数在普通的 wiki 页面上运行,每个模块都有一个函数的集合,可以使用 wiki 文本语法调用,例如:
{{#invoke: Module_name | function_name | arg1 | arg2 | arg3 ... }}
许可协议
该扩展包含使用GNU通用公共许可证v2.0或更高版本(GPL-2.0+)的代码以及使用MIT许可证(MIT)的代码。
需求
PCRE版本兼容性
推荐使用PCRE 8.33+。 PCRE 8.33 在 2013 年 5 月发布。 你可以通过以下方法看到PHP所使用的PCRE的版本:查看phpinfo()页面,或在命令行使用以下命令。
php -r 'echo "pcre: " . ( extension_loaded( "pcre" ) ? PCRE_VERSION : "no" ) . "\n";'
CentOS 6 和 RHEL 6 卡在 PCRE 7 上,需要升级。
在使用旧版本的服务器上更新到 8.33 可能比较复杂。 更多细节在 Updating to PCRE 8.33 or Higher 。
PHP pcntl (LTS)
MediaWiki版本: | 1.25 – 1.28 |
MediaWiki 1.25 至 1.28 的 Scribunto 版本需要 PHP 的 pcntl扩展,如果您想使用“LuaStandalone”(即在单独的子进程中运行),该扩展名仅在 Unix/Linux 平台上可用。 在针对MediaWiki 1.29发布的Scribunto中这个依赖被移除。
你可以访问phpinfo()网页以检查pcntl的支持是否已经启用,或者在命令行输入以下命令:
php -r 'echo "pcntl: " . ( extension_loaded( "pcntl" ) ? "yes" : "no" ) . "\n";'
PHP mbsting 扩展
PHP需要启用 mbstring 扩展。
您可以通过查看phpinfo()网页或使用以下命令从命令行检查是否启用了mbstring支持:
php -r 'echo "mbstring: " . ( extension_loaded( "mbstring" ) ? "yes" : "no" ) . "\n";'
Lua 二进制
捆绑的二进制文件
Scribunto与Linux(x86和x86-64)、Mac OS X Lion和Windows(32位和64位)的Lua二进制发行版捆绑在一起。
Scribunto应该在以下情况下为您提供开箱即用的服务:
- 您的web服务器在上述平台之一上运行。
- PHP的
proc_open
函数不受限制。[1] proc_terminate
andshell_exec
are not disabled in PHP.- 你的网络浏览器已被配置为允许MediaWiki树中的二进制文件的执行。
- 注意: 可能需要设置执行权限,例如,在Linux使用:
- 如果你在你的服务器上使用处于“Enforcing”模式的SELinux,你可能需要为此二进制文件设置合适的安全上下文(context)。 例如,在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
P.S. Check your version of the extension to see if the name of the engines folder is capitalised or fully lowercase.[2]
额外的二进制
如果您的Web服务器的操作系统不在上面的列表中,则可能需要额外的Lua二进制发行版,可以从http://luabinaries.sourceforge.net/或从你的Linux发行中获得。
只支持Lua 5.1.x的二进制文件。
在你的web浏览器中安装了适当的二进制文件后,使用如下代码配置文件的地址:
# 其中,Lua是二进制文件的名称。
# 例如,SourceForge LuaBinaries 5.1.5 - Release 2 name the binary file lua5.1
$wgScribuntoEngineConf['luastandalone']['luaPath'] = '/path/to/binaries/lua5.1';
注意你不应该添加上面的行,除非你确认Scribunto的内置二进制对你来说不起作用。
LuaJIT,尽管理论上兼容,但并不受支持。
不再支持是因为幽灵漏洞和比特腐烂的问题(phab:T184156)。
安裝
- 下载文件,并将解压后的
Scribunto
文件夹移动到extensions/
目录中。
开发者和代码贡献人员应从Git安装扩展,输入:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto - 将下列代码放置在您的LocalSettings.php 的底部:
wfLoadExtension( 'Scribunto' ); $wgScribuntoDefaultEngine = 'luastandalone';
- 设置与此扩展捆绑的Lua二进制文件的执行权限:
chmod a+x /path/to/extensions/Scribunto/includes/Engines/LuaStandalone/binaries/yourOS/lua
- 如果强制执行SELinux,请将type设置为
httpd_sys_script_exec_t
:
chcon -t httpd_sys_script_exec_t /path/to/extensions/Scribunto/includes/Engines/LuaStandalone/binaries/yourOS/lua
- 完成 – 在您的wiki上导航至Special:Version,以验证已成功安装扩展。
使用Vagrant安装:
- 如果使用Vagrant ,请通过
vagrant roles enable scribunto --provision
安装
可选安装
集成扩展
为能使用有语法高亮和自动缩进的代码编辑器,提供更舒适的用户界面,请安装下列扩展:
MediaWiki版本: | ≤ 1.30 |
然后在所有插件注册后,在你的LocalSettings.php
中,添加:
$wgScribuntoUseGeSHi = true;
$wgScribuntoUseCodeEditor = true;
These settings are not necessary in MediaWiki versions after 1.30, where the code editor and syntax hightlighting should be used in the appropriate places automatically once the extensions are loaded. However, other settings may be desired. See the documentation for each extension.
Lua 沙盒
我们开发了一个用C语言编写的PHP扩展,称为LuaSandbox。 可以用作独立二进制文件的替代,并且性能更佳。 详细信息和安装指引,参见LuaSandbox 。
如果你最初安装扩展以使用Lua独立二进制文件,请务必使用以下配置设置更新LocalSettings.php
:
$wgScribuntoDefaultEngine = 'luasandbox';
配置
有以下几个用于配置的变量:
- $wgScribuntoDefaultEngine
- 选择默认引擎。 有效值为
$wgScribuntoEngineConf
中的键,默认为'luasandbox'
或'luastandalone'
。 - $wgScribuntoUseGeSHi
- 安装了Extension:SyntaxHighlight 后,将此设为true以在显示模块页面时使用它。(MediaWiki 1.30或更早。)
- $wgScribuntoUseCodeEditor
- 安装了Extension:代码编辑器 后,将此设为
true
以在编辑模块页面时使用它。(MediaWiki 1.30或更早。) - $wgScribuntoEngineConf
- 引擎配置的关联数组。 键时
$wgScribuntoDefaultEngine
的有效值,值是配置数据的关联数组。 每个配置数组都必须包含一个'class'
键,命名要使用的ScribuntoEngineBase
子类。
LuaStandalone
$wgScribuntoEngineConf
中使用以下键用于Scribunto_LuaStandaloneEngine
。
通常你会将其设为类似于以下内容
$wgScribuntoEngineConf['luastandalone']['key'] = 'value';
- luaPath
- 指定到Lua解释器的路径。
- errorFile
- 指定文件的路径,可由Web服务器用户写入,其中将记录来自独立解释器的错误和调试输出。
- 默认情况下不记录独立解释器产生的错误输出。 配置输出:
$wgScribuntoEngineConf['luastandalone']['errorFile'] = '/path/to/file.log';
- memoryLimit
- 为Linux上的独立解释器指定内存限制,以字节为单位(使用ulimit强制执行)。
- cpuLimit
- 为Linux上的独立解释器指定CPU时间限制,以秒为单位(使用ulimit强制执行)。
- allowEnvFuncs
- 设为true以允许在模块内使用setfenv和getfenv。
LuaSandbox
$wgScribuntoEngineConf
中使用以下键用于Scribunto_LuaSandboxEngine
。
通常你会将其设为类似于以下内容
$wgScribuntoEngineConf['luasandbox']['鍵'] = '值';
- memoryLimit
- 指定内存限制,以字节为单位。 Default 52428800 (50MB)
- cpuLimit
- 指定CPU时间限制,以秒为单位。
- profilerPeriod
- 在Lua分析器的部分中指定轮询之间的时间。
- allowEnvFuncs
- 设为true以允许在模块内使用setfenv和getfenv。
用法
脚本在称为模块的命名空间中。 每个模块都有一系列函数,可以在像这样的维基文本语法中调用:
{{#invoke: Module_name | function_name | arg1 | arg2 | arg3 ... }}
Lua
学习 Lua
Lua是一种简单的编程语言,用于让初学者可以使用。 Lua的快速速成课程,可以尝试Learn Lua in 15 Minutes。
Lua语言的最全面的介绍是书籍《Programming in Lua》。 第一版(适用于Lua 5.0)可在线获得,主要与Scribunto使用的Lua 5.1版本相关:
- Programming in Lua(滑到书本广告底下以查找文本)
参考手册也比较有用:
Lua 环境
在Lua中,所有全局变量和函数的集合称为环境(environment)。
每个{{#invoke:}}
调用会在一个单独的环境中运行。
一个{{#invoke:}}
中定义的变量不会在另一个中有效。
这种限制是必要的,以维持维基文本解析器实现的灵活性。
调试控制台
编辑Lua模块时,编辑框底部会有一个“调试控制台”。 在这个调试控制台内,不需要保存或者甚至实际上创建一个Lua模块,就可以执行Lua代码。
故障排除
注意,红色的脚本错误消息是可点击的,且会提供详细信息。
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".
If you're setting up Scribunto and are using IIS/Windows, this appears to be solved by commenting out a particular line.
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 error: Internal error: 2. on ARM architecture
If you're using an ARM architecture processor like on a RaspberryPi you'll face the error Lua error: Internal error: The interpreter exited with status 2.
due to wrong delivered binary format of the Lua interpreter.
Check your Lua interpreter in:
/path/to/webdir/Scribunto/includes/Engines/LuaStandalone/binaries/lua5_1_5_linux_32_generic
Check the interpreter by using:
file lua
The result should look like :
lua: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, for GNU/Linux 3.2.0
The installed default Lua interpreter shows:
lua: ELF 32-bit LSB pie executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, for GNU/Linux 2.6.9,
look at the "Intel 80386" part what definitely is not correct.
Check in /usr/bin
what version of Lua is installed on your system. If you have lua5.1 installed, you can either copy the interpreter to your lua5_1_5_linux_32_generic
directory or set in your LocalSettings.php:
$wgScribuntoEngineConf['luastandalone']['luaPath'] = '/usr/bin/lua5.1';
At present don't set wgScribuntoEngineConf
to /usr/bin/lua5.3, it'll lead to the "Internal error 1".
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.
Scribunto文件中的Lua错误
这里的错误包括:
- attempt to index field 'text' (a nil value)(尝试访问'text'字段,其值为nil)
- 位于mw.html.lua的253行的Lua错误:提供了无效类:
如果你在尝试使用从WMF wiki导入的模块时遇到此类错误,则很可能你的Scribunto版本已过期。
如有可能,请升级,对于高级用户,你可能需要找到需要的新提交,然后将其优选到你的本地安装中。
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错误
如果你从维基百科复制模板,然后在Scribunto调用(例如,使用了{{#invoke:}}
的模板)的位置收到大量红色“Lua错误:x”的消息,这可能意味着你没有导入所需的所有内容。 确保在zh:Special:Export导出时勾选“包括模板”。
从另一个wiki导入页面时,导入数据中的模板或模块也可能覆盖具有相同标题的现有模板或模块,这可能会破坏依赖于覆盖版本的现有页面、模板和模块。
空白屏幕
确保你的扩展版本可以适用于你的MediaWiki版本。
设计文档
- Extension:Scribunto/Parser interface design
- 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 - 描述维基媒体站点部署计划的维基媒体活动页面。
- Extension:Scribunto/Lua参考手册 - Lua语言的参考,以及维基媒体站点支持的标准库和常见Scribunto模块。
- Extension:Scribunto/Lua 5.2 changes - Lua 5.2中可能导致用5.1编写的代码意外运行的已知更改列表。
- Extension:Scribunto/Example modules
- Extension:Scribunto/Example extension - 扩展Scribunto库的示例扩展代码。
- Extension:Scribunto/We use Lua
參見
- 一般
- Lua Wikibase client - Scribunto扩展的功能。
- Commons:Lua - 在Wikimedia Commons上可能有使用Lua模块的具体说明,包括安装的额外Lua扩展(例如,用于国际化的本地支持以及解析或播放媒体)。 一些通用模块可以在其他wiki中以各种语言重新使用(除了针对具有专用名称的方针、命名空间或项目/维护页面的特定调整)。 如果可能,应该在Wikimedia Commons上测试和国际化可以在wiki中广泛重新使用的模块。
- w:Help:Lua - 维基百科可能有使用Lua模块的具体说明,包括安装的附加Lua扩展(包括用于集成维基数据和维基共享资源内容、生成复杂的信息框和导航框,或根据适用方针促进wiki内容的一般管理/维护)。 其他一些本地化的维基百科版本(或其他项目,如维基词典、维基共享资源或维基新闻)也可能有自己的需求和Lua模块。
- d:Help:Lua - 可能会有关于在维基数据上使用Lua模块的具体说明,包括安装的额外Lua扩展(例如,用于国际化的本地支持和数据库查询)
- 扩展
- Capiunto - 提供基本的信息框功能以用于Scribunto扩展。
- Semantic Scribunto - 为Scribunto扩展使用Semantic MediaWiki 提供原生支持
- VariablesLua - 为Variables扩展提供Scribunto Lua接口
- Wikibase客户端 - 提供Wikibase (维基数据项目的一部分)
外部链接
注释
- ↑
i.e. 如果服务器“php.ini”文件中的
disable_functions
数组中列出了proc_open
,Scribunto将不起作用。 如果是,你可能收到像proc_open(): open_basedir restriction in effect. File(/dev/null) is not within the allowed path(s):
这样的错误消息 如果你正在使用Plesk且拥有了足够的权限,你也许能够在PHP设置中为你的域名或者子域名设置open_basedir
。 尝试将{WEBSPACEROOT}{/}{:}{TMP}{/}
更换成{WEBSPACEROOT}{/}{:}{TMP}{/}{:}/dev/null{:}/bin/bash
。 - ↑ 2.0 2.1 2.2 The name of the engines folder changed from lowercase to capitalised in 2022.
此扩展用于一个或多个维基媒体项目。 这可能意味着扩展足够稳定、运作足够良好,可以用在这样的高流量的网站上。 请在维基媒体的CommonSettings.php和InitialiseSettings.php配置文件中查找此扩展的名称以查看哪些网站安装了该扩展。 特定wiki上的已安装的扩展的完整列表位于Special:Version页面。 |
此扩展在以下wiki农场/托管网站和/或软件包中提供: 這不是一份權威名單。 即使某些wiki农场/托管网站和/或软件包未在这里列出,它们也可能提供此扩展。 请检查你的wiki农场/托管网站或软件包以确认提供情况。 |
- Extensions bundled with MediaWiki 1.34/zh
- Pages using deprecated NoteTA template
- Stable extensions/zh
- Parser extensions/zh
- Extensions with unknown license/zh
- Extensions in Wikimedia version control/zh
- ArticleViewHeader extensions/zh
- CodeEditorGetPageLanguage extensions/zh
- ContentHandlerDefaultModelFor extensions/zh
- EditFilterMergedContent extensions/zh
- EditPage::showReadOnlyForm:initial extensions/zh
- EditPage::showStandardInputs:options extensions/zh
- EditPageBeforeEditButtons extensions/zh
- ParserClearState extensions/zh
- ParserCloned extensions/zh
- ParserFirstCallInit extensions/zh
- ParserLimitReportFormat extensions/zh
- ParserLimitReportPrepare extensions/zh
- SoftwareInfo extensions/zh
- All extensions/zh
- Extensions used on Wikimedia/zh
- Extensions included in BlueSpice/zh
- Extensions included in Canasta/zh
- Extensions available as Debian packages/zh
- Extensions included in Fandom/zh
- Extensions included in Miraheze/zh
- Extensions included in MyWikis/zh
- Extensions included in ProWiki/zh
- Extensions included in ShoutWiki/zh
- Extensions included in wiki.gg/zh
- Extensions included in WikiForge/zh
- Scribunto extensions/zh
- ContentHandler extensions/zh
- GPL licensed extensions/zh
- MIT licensed extensions/zh