Módulo:Category handler/data

De Doctor View Wiki
< Módulo:Category handler
Revisão de 00h59min de 1 de março de 2017 por Mattflaschen-WMF (discussão) (Reverted edits by 108.173.191.133 (talk) to last revision by Eurodyne)
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para: navegação, pesquisa

A documentação para este módulo pode ser criada em Módulo:Category handler/data/doc

Erro de script: Erro em Lua: Não é possível criar o processo: proc_open não está disponível. Verifique a diretiva de configuração "disable_functions".

-- 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