Module:Message box: Difference between revisions

Jump to navigation Jump to search
add mbox, various other fixes
(better error message)
(add mbox, various other fixes)
Line 1:
-- This is a meta-module for producing message box templates, including {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}.
 
-- Require necessary modules.
local htmlBuilder = require('Module:HtmlBuilder')
local nsDetect = require('Module:Namespace detect')
local categoryHandler = require('Module:Category handler').main
local yesno = require('Module:Yesno')
 
-- Get a language object for formatDate and ucfirst.
local lang = mw.language.getContentLanguage()
 
-- Set aliases for often-used functions to reduce table lookups.
local format = mw.ustring.format
local tinsert = table.insert
local tconcat = table.concat
 
local p = {}
Line 12 ⟶ 20:
-- Get the title object, passing the function through pcall
-- in case we are over the expensive function count limit.
local success, title = pcall(mw.title.new, page)
if success, page = pcall(mw.title.new, page)then
if not success then return title
page = nil
end
end
return page
end
 
Line 37 ⟶ 43:
local preposition = 'from'
if cat and date then
local catTitle = mw.ustring.format('Category:%s %s %s', cat, preposition, date)
table.inserttinsert(ret, mw.ustring.format('[[%s]]', catTitle))
catTitle = getTitleObject(catTitle)
if not catTitle or not catTitle.exists then
table.inserttinsert(ret, '[[Category:Articles with invalid date parameter in template]]')
end
elseif cat and not date then
table.inserttinsert(ret, mw.ustring.format('[[Category:%s]]', cat))
end
if all then
table.inserttinsert(ret, mw.ustring.format('[[Category:%s]]', all))
end
return table.concattconcat(ret)
end
 
Line 62 ⟶ 68:
end
local ret = {}
for k, v in pairs(vals) do
table.inserttinsert(ret, k)
end
table.sort(ret)
return ret
end
Line 73 ⟶ 80:
local num = mw.ustring.match(tostring(k), '^' .. prefix .. '([1-9]%d*)$')
if num then
table.inserttinsert(nums, tonumber(num))
end
end
table.sort(nums)
return nums
end
 
local function getNamespaceId(ns)
if type(ns) == 'string' then
ns = lang:ucfirst(mw.ustring.lower(ns))
mainif ns == 'mainMain', then
pagens = nil0
end
end
local nsTable = mw.site.namespaces[ns]
if nsTable then
return pagensTable.id
}end
end
 
local function getMboxType(nsid)
-- GetGets the titlembox objecttype andfrom thea namespace number.
if nsid == 0 then
return 'ambox' -- main namespace
elseif nsid == 6 then
return 'imbox' -- file namespace
elseif nsid == 14 then
return 'cmbox' -- category namespace
else
local nsTable = mw.site.namespaces[nsid]
if nsTable and nsTable.isTalk then
return 'tmbox' -- any talk namespace
else
return 'ombox' -- other namespaces or invalid input
end
end
end
 
function p.build(boxType, args)
if type(args) ~= 'table' then
error(format('invalid "args" parameter type; expected type "table", got type "%s"', type(args)), 2)
end
 
local-- nsidGet =the title. object and the namespace.
local title = getTitleObject(args.page) or mw.title.getCurrentTitle()
local nsid = getNamespaceId(args.demospace) or title.namespace
 
-- Get the box config data from the data page.
if boxType == 'mbox' then
boxType = getMboxType(nsid)
end
local dataTables = mw.loadData('Module:Message box/data')
local data = dataTables[boxType]
Line 87 ⟶ 136:
local boxTypes = {}
for k, v in pairs(dataTables) do
table.inserttinsert(boxTypes, mw.ustring.format('"%s"', k))
end
tinsert(boxTypes, '"mbox"')
error(mw.ustring.format('invalid message box type "%s"; valid types are %s', tostring(boxType), mw.text.listToText(boxTypes)), 2)
end
 
-- Get the title object and the namespace.
local title = mw.title.getCurrentTitle()
local nsid = title.namespace
 
-- Get a language object for formatDate.
local lang = mw.language.getContentLanguage()
-- Commenting this out for now - this will require tinkering with Namespace detect to differentiate between
-- invalid titles and pages where the expensive parser function count has been exceeded.
--[[
local title = nsDetect.getPageObject(args.page)
local namespace = nsDetect.main{
page = args.page,
demospace = args.demospace,
main = 'main',
talk = 'talk',
file = 'file',
category = 'category',
other = 'other'
}
]]
 
------------------------ Process config data ----------------------------
Line 129 ⟶ 157:
local sect = args.sect
if presentButBlank(sect) then
sect = mw.ustring.format('This %s ', data.sectionDefault or 'page')
elseif type(sect) == 'string' then
sect = 'This ' .. sect .. ' '
Line 161 ⟶ 189:
local talkText = ' Relevant discussion may be found on'
if talkTitle.isTalkPage then
talkText = mw.ustring.format('%s [[%s|%s]].', talkText, talk, talkTitle.prefixedText)
else
talkText = mw.ustring.format('%s the [[%s#%s|talk page]].', talkText, talkTitle.prefixedText, talk)
end
talk = talkText
Line 200 ⟶ 228:
local cat = args['cat' .. tostring(num)] or args['category' .. tostring(num)]
local all = args['all' .. tostring(num)]
table.inserttinsert(mainCats, formatCategory(cat, args.date, all))
end
end
Line 207 ⟶ 235:
local templateCats = {}
if data.templateCategory and not title.isSubpage and not yesno(args.nocat) then
table.inserttinsert(templateCats, mw.ustring.format('[[Category:%s]]', data.templateCategory))
end
 
Line 215 ⟶ 243:
local templateCat
if not name and not title.isSubpage then
templateCat = mw.ustring.format('[[Category:%s]]', catName)
elseif type(name) == 'string' and title.prefixedText == ('Template:' .. name) then
local paramsToCheck = data.templateErrorParamsToCheck or {}
Line 225 ⟶ 253:
end
if count > 0 then
templateCat = mw.ustring.format('[[Category:%s|%d]]', catName, count)
end
if origCategoryNums and #origCategoryNums > 0 then
templateCat = mw.ustring.format('[[Category:%s|C]]', catName)
end
end
table.inserttinsert(templateCats, templatecat)
end
 
Line 238 ⟶ 266:
if invalidType then
local catsort = (nsid == 0 and 'Main:' or '') .. title.prefixedText
table.inserttinsert(allCats, mw.ustring.format('[[Category:Wikipedia message box parameter needs fixing|%s]]', catsort))
end
 
Line 251 ⟶ 279:
.tag('b')
.addClass('error')
.wikitext(mw.ustring.format(
'Template <code>%s%s%s</code> has been incorrectly substituted.',
mw.text.nowiki('{{'), name, mw.text.nowiki('}}')
))
end
table.inserttinsert(allCats, '[[Category:Pages with incorrectly substituted templates]]')
end
 
Line 284 ⟶ 312:
end
imageLeftCell
.wikitext(image or mw.ustring.format('[[File:%s|%s|link=|alt=]]', typeData.image, imageSize))
elseif data.imageEmptyCell then
row.tag('td')
Line 310 ⟶ 338:
end
textCellSpan
.wikitext(date and mw.ustring.format(" <small>''(%s)''</small>", date))
if not isSmall then
textCellSpan
Line 351 ⟶ 379:
.addClass('error')
.css('text-align', 'center')
.wikitext(mw.ustring.format('This message box is using an invalid type parameter (<code>type=%s</code>) and needs fixing.', args.type or ''))
end
 
Line 357 ⟶ 385:
root
.wikitext(categoryHandler{
main = table.concattconcat(mainCats),
template = table.concattconcat(templateCats),
all = table.concattconcat(allCats)
})
Line 395 ⟶ 423:
end
 
p.cmboxmbox = makeWrapper('cmboxmbox')
p.ambox = makeWrapper('ambox')
p.cmbox = makeWrapper('cmbox')
p.fmbox = makeWrapper('fmbox')
p.imbox = makeWrapper('imbox')
p.ombox = makeWrapper('ombox')
p.cmbox = makeWrapper('cmbox')
p.tmbox = makeWrapper('tmbox')
 
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.

Navigation menu