모듈:Category handler/data

< 모듈:Category handler
198.188.4.4 (토론)님의 2017년 10월 12일 (목) 11:10 판 (새 문서: -- 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...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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