"ମଡ୍ୟୁଲ:Uses TemplateStyles" ପୃଷ୍ଠାର ସଂସ୍କରଣ‌ଗୁଡ଼ିକ ମଧ୍ୟରେ ତଫାତ

Content deleted Content added
ଟିକେ Protected "Module:Uses TemplateStyles": High-risk template or module (more info) ([Edit=Require autoconfirmed or confirmed access] (indefinite))
i18n using Module:TNT and a /config subpage, so that folks copying it to other wikis have better chances to get it translated
୪ କ ଧାଡ଼ି:
local mTableTools = require('Module:TableTools')
local mMessageBox = require('Module:Message box')
local TNT = require('Module:TNT')
 
local p = {}
 
local function format(msg, ...)
return TNT.format('I18n/Uses TemplateStyles', msg, ...)
end
 
local function getConfig()
return mw.loadData('Module:Uses TemplateStyles/config')
end
 
function p.main(frame)
Line ୧୯ ⟶ ୨୮:
end
 
function p._main(args, cfg)
local tStyles = mTableTools.compressSparseArray(args)
local box = p.renderBox(tStyles)
Line ୨୯ ⟶ ୩୮:
local boxArgs = {}
if #tStyles < 1 then
boxArgs.text = string.format('<strong class="error">Error: no TemplateStyles specified%s</strong>', format('error-emptylist'))
else
local cfg = getConfig()
local tStylesLinks = {}
for i, ts in ipairs(tStyles) do
local link = string.format('[[:%s]]', ts)
local sandboxLink = nil
local tsTitle = mw.title.new(ts)
if tsTitle and cfg['sandbox_title'] then
local tsSandboxTitle = mw.title.new(string.format(
'%s:%s/sandbox%s/%s', tsTitle.nsText, tsTitle.baseText, cfg['sandbox_title'], tsTitle.subpageText))
if tsSandboxTitle and tsSandboxTitle.exists then
sandboxLink = string.format('sandboxlink', ([[link, ':%s|sandbox]])', .. tsSandboxTitle.prefixedText)
end
end
tStylesLinks[i] = string.format('[[:%s]]%s', ts, sandboxLink or '')link
end
local tStylesList = mList.makeList('bulleted', tStylesLinks)
boxArgs.text = 'This ' .. format(
(mw.title.getCurrentTitle():inNamespaces(828,829) and 'header-module' or 'header-template') ..
' uses [[Wikipedia:TemplateStyles|TemplateStyles]]:\n' .. tStylesList
end
boxArgs.type = 'notice'
boxArgs.small = true
boxArgs.image = string.format('[[File:Farm-Fresh css add.svg|32px|alt=CSS%s]]', format('logo-alt'))
return mMessageBox.main('mbox', boxArgs)
end
Line ୫୮ ⟶ ୭୦:
return ''
end
}
local cfg = getConfig()
local cats = {}
-- Error category
if #tStyles < 1 and cfg['error_category'] then
cats[#cats + 1] = cfg['Uses TemplateStyles templates with errorserror_category']
end
-- TemplateStyles category
titleObj = titleObj or mw.title.getCurrentTitle()
local subpageBlacklist = {
doc = true,
sandbox = true,
sandbox2 = true,
testcases = true
}
if (titleObj.namespace == 10 or titleObj.namespace == 828)
and not subpageBlacklistcfg['subpage_blacklist'][titleObj.subpageText]
then
local category = args.category or cfg['default_category']
if not category then
categorycats[#cats + 1] = category or 'Templates using TemplateStyles'
end
if not yesno(args.noprotcat) and (cfg['protection_conflict_category'] or cfg['padlock_pattern']) then
cats[#cats + 1] = category
if not yesno(args.noprotcat) then
local currentProt = titleObj.protectionLevels["edit"] and titleObj.protectionLevels["edit"][1] or nil
local addedLevelCat = false
Line ୮୯ ⟶ ୯୬:
local tsTitleObj = mw.title.new(ts)
local tsProt = tsTitleObj.protectionLevels["edit"] and tsTitleObj.protectionLevels["edit"][1] or nil
if cfg['protection_conflict_category'] and tsProt ~= currentProt and not addedLevelCat then
cats[#cats + 1] = "Templates using TemplateStyles with a different protection level"cfg['protection_conflict_category']
end
if cfg['padlock_pattern'] and tsProt and not addedPadlockCat then
local content = tsTitleObj:getContent()
if not content:find("{{pp-"cfg['padlock_pattern']) then
cats[#cats + 1] = "Templates using TemplateStyles without padlocks"cfg['missing_padlock_category']
addedPadlockCat = true
end