From WikiChip
Difference between revisions of "Module:title"

Line 24: Line 24:
 
      
 
      
 
     local title = ''
 
     local title = ''
   
+
 
 
     if has_arg('title') then
 
     if has_arg('title') then
 
     title = arg('title')
 
     title = arg('title')
 +
end
 +
 +
if has_arg('subject') then
 +
 +
if arg('subject') == 'cray' then
 +
local subject = arg('subject')
 +
if s == 'arch' then subject = 'Microarchitectures' end
 +
 +
title = arg('page') .. ' - ' .. subject .. ' - Cray'
 +
 +
end
 
end
 
end
 
      
 
      

Revision as of 22:03, 7 February 2020

Documentation for this module may be created at Module:title/doc

local p = {}
local origArgs

function has_arg(name)
	-- The argument can exist and be empty or not exist at all
	return string.len(origArgs[name] or '') > 0
end

function arg(name)
	if has_arg(name) then
		return origArgs[name]
	end
	return ''
end

function p.title(frame)
	
	p.frame = frame
    if frame == mw.getCurrentFrame() then
        origArgs = frame:getParent().args
    else
        origArgs = frame.args
    end
    
    local title = ''

    if has_arg('title') then
    	title = arg('title')	
	end
	
	if has_arg('subject') then
	
		if arg('subject') == 'cray' then
			local subject = arg('subject')
			if s == 'arch' then subject = 'Microarchitectures' end
			
			title = arg('page') .. ' - ' .. subject .. ' - Cray'
			
		end
	end
    
    p.frame:preprocess('{{DISPLAYTITLE: ' .. title .. ' }}')
end


return p