Modul:Officeholder party tracking

Dari Wiki bkkbn jogja
Revisi per 9 Agustus 2019 10.48 oleh Adminwiki (bicara | kontrib) (1 revisi diimpor: Modul:Officeholder party tracking)
(beda) ← Revisi sebelumnya | Revisi terkini (beda) | Revisi selanjutnya → (beda)

Dokumentasi untuk modul ini dapat dibuat di Modul:Officeholder party tracking/doc

local p = {}

function p.tracking(frame)
	tcat = 'Category:Pages using infobox officeholder with an atypical party value'
    function isblank( val ) 
        return (val == nil) or val:match('^[%s]*$')
    end
	local function iswikilink(s)
		return s and s ~= ''
	end
	
	local pname = frame.args.party or ''
	if isblank(pname) then
		return ''
	end
	pname = mw.text.unstrip(pname)
	if pname:match('^%s*%[%[([^%[%]]*)%]%]%s*$') then
		return ''
	end
	tkey = pname:match('^%s*(.-)%s*$')
	tkey = mw.ustring.gsub(tkey, '[%[%]|]', '')
	tkey = mw.ustring.gsub(tkey, '[^%w\-_ ]', '?')
	return '[[' .. tcat .. '|' .. tkey .. ' ]]'
end

return p