پودمان:Category handler/data: تفاوت بین نسخه‌ها

از پژوهشکده امر به معروف
پرش به: ناوبری، جستجو
جز (Protected Module:Category handler/data: High-risk Lua module ([Edit=Allow only template editors and admins] (indefinite) [Move=Allow only template editors and admins] (indefinite)))
 
(صفحه‌ای جدید حاوی «-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and wh...» ایجاد کرد)
سطر ۲: سطر ۲:
 
-- mw.loadData. This includes the configuration data and whether the current
 
-- mw.loadData. This includes the configuration data and whether the current
 
-- page matches the title blacklist.
 
-- page matches the title blacklist.
 
+
 
local data = require('Module:Category handler/config')
 
local data = require('Module:Category handler/config')
 
local mShared = require('Module:Category handler/shared')
 
local mShared = require('Module:Category handler/shared')
 
local blacklist = require('Module:Category handler/blacklist')
 
local blacklist = require('Module:Category handler/blacklist')
 
local title = mw.title.getCurrentTitle()
 
local title = mw.title.getCurrentTitle()
 
+
 
data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(
 
data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(
 
title.prefixedText,
 
title.prefixedText,
 
blacklist
 
blacklist
 
)
 
)
 
+
 
data.currentTitleNamespaceParameters = mShared.getNamespaceParameters(
 
data.currentTitleNamespaceParameters = mShared.getNamespaceParameters(
 
title,
 
title,
 
mShared.getParamMappings()
 
mShared.getParamMappings()
 
)
 
)
 
+
 
return data
 
return data

نسخهٔ ‏۱ مهر ۱۳۹۳، ساعت ۱۳:۳۸

توضیحات این پودمان می‌تواند در پودمان: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('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