Module:Message box: திருத்தங்களுக்கு இடையிலான வேறுபாடு
உள்ளடக்கம் நீக்கப்பட்டது உள்ளடக்கம் சேர்க்கப்பட்டது
Removing timestamped tracking categories like '''from october 2009''' to just main tracking categories |
Replace Module:No globals with require( "strict" ) |
||
வரிசை 1:
require('strict')
local getArgs
local yesno = require('Module:Yesno')
local lang = mw.language.getContentLanguage()
local CONFIG_MODULE = 'Module:Message box/configuration'
local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'}
வரி 224 ⟶ 217:
local sect
if args.sect == '' then
sect = '
elseif type(args.sect) == 'string' then
sect = 'This ' .. args.sect
வரி 268 ⟶ 261:
end
if talkTitle and talkTitle.exists then
local talkText
local talkText = 'Relevant discussion may be found on'▼
if self.isSmall then
if talkArgIsTalkPage then▼
local talkLink = talkArgIsTalkPage and talk or (talkTitle.prefixedText .. '#' .. talk)
talkText = string.format(▼
talkText = string.format('([[%s|talk]])', talkLink)
else
talkTitle.prefixedText▼
)▼
'%s [[%s|%s]].',
talkText,
talkText = string.format(▼
talk,
'%s the [[%s#%s|talk page]].',▼
)
talkTitle.prefixedText,▼
else
end▼
talkText,
talk
)
end
end
self.talk = talkText
end
வரி 297 ⟶ 296:
end
if date then
self.date = string.format(" <
end
self.info = args.info
வரி 319 ⟶ 318:
self.imageCellDiv = not self.isSmall and cfg.imageCellDiv
self.imageEmptyCell = cfg.imageEmptyCell
-- Left image settings.
வரி 343 ⟶ 339:
self.imageRight = imageRight
end
-- set templatestyles
self.base_templatestyles = cfg.templatestyles
self.templatestyles = args.templatestyles
end
வரிசை 370:
allCat = type(allCat) == 'string' and allCat
if mainCat and date and date ~= '' then
self:addCat(0, catTitle)
catTitle = getTitleObject('
if not catTitle or not catTitle.exists then
self:addCat(0, 'Articles with invalid date parameter in template')
வரி 477 ⟶ 476:
mw.text.nowiki('{{'), self.name, self.name, mw.text.nowiki('}}')
))
local frame = mw.getCurrentFrame()
root:wikitext(frame:extensionTag{
name = 'templatestyles',
args = { src = self.base_templatestyles },
})
-- Add support for a single custom templatestyles sheet. Undocumented as
-- need should be limited and many templates using mbox are substed; we
-- don't want to spread templatestyles sheets around to arbitrary places
if self.templatestyles then
root:wikitext(frame:extensionTag{
name = 'templatestyles',
args = { src = self.templatestyles },
end
வரி 502 ⟶ 516:
-- image width to 52px. If any images in a div are wider than that,
-- they may overlap with the text or cause other display problems.
imageLeftCell = imageLeftCell:tag('div'):
end
imageLeftCell:wikitext(self.imageLeft or nil)
வரி 512 ⟶ 526:
row:tag('td')
:addClass('mbox-empty-cell')
end
வரி 525 ⟶ 538:
:addClass('mbox-text-span')
:wikitext(self.issue or nil)
if (self.talk or self.fix)
textCellDiv:tag('span')
:addClass('hide-when-compact')
வரி 539 ⟶ 552:
end
if self.removalNotice then
textCellDiv:tag('
:addClass('hide-when-compact')
:tag('i')
வரி 557 ⟶ 570:
-- If we are using a div, redefine imageRightCell so that the image
-- is inside it.
imageRightCell = imageRightCell:tag('div'):
end
imageRightCell
வரி 576 ⟶ 589:
if self.invalidTypeError then
root:tag('div')
:
:wikitext(string.format(
'This message box is using an invalid "type=%s" parameter and needs fixing.',
| |||