Mudanças

Ir para navegação Ir para pesquisar

Módulo:Category handler/data

634 bytes adicionados, 08h28min de 21 de dezembro de 2019
Criação do Módulo Category handler/data.
-- 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('Módulo:Category handler/config')
local mShared = require('Módulo:Category handler/shared')
local blacklist = require('Módulo:Category handler/blacklist')
local title = mw.title.getCurrentTitle()

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

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

return data

Menu de navegação