Content deleted Content added
declare local variable |
better implementation of nbsp |
||
(31 intermediate revisions by 4 users not shown) | |||
Line 1:
-- This module implements {{portal bar}}.
require('
-- determine whether we're being called from a sandbox
local portalModule = require('Module:Portal/sandbox')▼
local isSandbox = mw.getCurrentFrame():getTitle():find('sandbox', 1, true)
local getImageName = portalModule.image▼
local sandbox = isSandbox and '/sandbox' or ''
local checkTracking = portalModule._checkTracking▼
local processPortalArgs = portalModule._processPortalArgs
local yesno = require( 'Module:Yesno' )
Line 12 ⟶ 15:
local p = {}
local function
return
end
Line 23 ⟶ 26:
-- Normalize arguments
for key, default in pairs({border=true,redlinks
if args[key] == nil then args[key] = default end
args[key] = yesno(args[key], default)
Line 29 ⟶ 32:
local nav = mw.html.create( 'div' )
:addClass(
:addClass( 'noprint metadata noviewer' )
:attr( 'role', 'navigation' )
:attr( 'aria-label' , 'Portals' )
:addClass(
local trackingCat = ''
-- Allow any number of portals
portals, trackingCat = checkExists(portals, args)▼
args.minPortals = 0
args.maxPortals = -1
-- Check to see whether there are redlinks, filter out unless args.redlink is true
nav:wikitext(trackingCat)
if #portals == 0 then
Line 44 ⟶ 49:
end
local
header:addClass(sandbox(args,'portal-bar-header'))▼
header:wikitext('[[Wikipedia:Contents/Portals|Portal]]')▼
else
▲ if #portals > 1 then
local header = nav:
if #portals > 1 then
end
header:wikitext(':')
end
if related then
container:addClass(sandboxVersion('portal-bar-content-related'))
end
local size = related and '27x25px' or '21x19px'
▲ header:wikitext(':')
▲ local container = nav:tag('div')
▲ container:addClass(sandbox(args,'portal-bar-content'))
for _, portal in ipairs( portals ) do
container
:tag( '
:addClass(
▲ :addClass(sandbox(args,'portal-bar-link'))
▲ :wikitext( string.format('[[Portal:%s|%s]]', portal, portal))
end
local styleFile = 'Module:Portal bar'..sandbox..'/styles.css'
return mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = styleFile }
|