View source for Module:Authority control files
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
local p = {}
function p.files(frame)
local nav = require( 'Module:Navbox' )
local conf = require( 'Module:Authority control' ).conf
local exclude = {
['MBAREA'] = 'redundant [[MusicBrainz]] link',
['MBI'] = 'redundant [[MusicBrainz]] link',
['MBL'] = 'redundant [[MusicBrainz]] link',
['MBP'] = 'redundant [[MusicBrainz]] link',
['MBRG'] = 'redundant [[MusicBrainz]] link',
['MBS'] = 'redundant [[MusicBrainz]] link',
['MBW'] = 'redundant [[MusicBrainz]] link',
}
local elements = {}
for _, c in pairs( conf ) do
if exclude[c[1]] == nil then
table.insert( elements, c[2] )
end
end
000
1:0
Template used on this page:
Return to Module:Authority control files.