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

از پژوهشکده امر به معروف
پرش به: ناوبری، جستجو
(صفحه‌ای جدید حاوی «-- 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