پرش به محتوا

پودمان:Shortcut: تفاوت میان نسخه‌ها

۱۸۷ بایت حذف‌شده ،  ‏۲۲ فوریهٔ ۲۰۱۷
بازگرداندن اصلاح راست به چپ
جز (۱ نسخه واردشده)
 
imported>Ebrahim
(بازگرداندن اصلاح راست به چپ)
خط ۴۲: خط ۴۲:


-- Return an error if we have nothing to display
-- Return an error if we have nothing to display
-- Edit : Don't return Error even if there's nothing to display. This is used to fix errors in boxes that don't require this parameter and template to work.
if #listItems < 1 then
if #listItems < 1 then
local msg = cfg['no-content-error']
local msg = cfg['no-content-error']
خط ۴۸: خط ۴۹:
msg = msg .. makeCategoryLink(cfg['no-content-error-category'])
msg = msg .. makeCategoryLink(cfg['no-content-error-category'])
end
end
return msg
return
end
end


خط ۷۸: خط ۷۹:
-- Shortcut box
-- Shortcut box
local shortcutList = root
local shortcutList = root
:tag('table')
:tag('div')
:addClass('shortcutbox noprint')
:addClass('shortcutbox plainlist noprint')
:attr('role', 'note')
:css('float', 'left')
:css('float', 'left')
:css('border', '1px solid #aaa')
:css('border', '1px solid #a2a9b1')
:css('background', '#fff')
:css('background', '#fff')
:css('margin', '.3em 1em .3em .3em')
:css('margin', '.3em 1em .3em .3em')
:css('padding', '3px')
:css('padding', '.4em .6em')
:css('text-align', 'center')
:css('text-align', 'center')
:tag('tr')
:css('font-size', 'smaller')
:tag('th')
:css('line-height', '2em')
:addClass('plainlist')
:css('font-weight', 'bold')
:css('border', 'none')
:wikitext(shortcutHeading)
:css('background', 'transparent')
:tag('ul')
:tag('small')
:wikitext(shortcutHeading)
:tag('ul')
for i, item in ipairs(listItems) do
for i, item in ipairs(listItems) do
shortcutList:tag('li'):wikitext(item)
shortcutList:tag('li'):wikitext(item)
end
-- Output an error category if the first shortcut doesn't exist
if isCategorized
and shortcuts[1]
and cfg['first-parameter-error-category']
then
local title = mw.title.new(shortcuts[1])
if not title or not title.exists then
root:wikitext(makeCategoryLink(cfg['first-parameter-error-category']))
end
end
end


کاربر ناشناس