Warning: proc_open(): open_basedir restriction in effect. File(/dev/null) is not within the allowed path(s): (/home/www/wwwroot/wiki/:/tmp/) in /home/www/wwwroot/wiki/extensions/Scribunto/includes/Engines/LuaStandalone/LuaStandaloneInterpreter.php on line 161

Warning: proc_open(/dev/null): Failed to open stream: Operation not permitted in /home/www/wwwroot/wiki/extensions/Scribunto/includes/Engines/LuaStandalone/LuaStandaloneInterpreter.php on line 161
模块:Category handler/data - 汉语教学技术研究与应用 跳转到内容

模块:Category handler/data

来自汉语教学技术研究与应用

此模块的文档可以在模块:Category handler/data/doc创建

脚本错误:Lua错误:无法创建进程:proc_open(/dev/null): Failed to open stream: Operation not permitted

-- This module assembles data to be passed to [[Module:Category handler]] using
-- mw.loadData. This includes the configuration data and whether the current
-- page matches the title blacklist.

local data = require('Module:Category handler/config')
local mShared = require('Module:Category handler/shared')
local blacklist = require('Module:Category handler/blacklist')
local title = mw.title.getCurrentTitle()

data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(
	title.prefixedText,
	blacklist
)

data.currentTitleNamespaceParameters = mShared.getNamespaceParameters(
	title,
	mShared.getParamMappings()
)

return data