Open main menu

Changes

Module:Authority control

1,053 bytes added, 09:31, 12 May 2018
Add BALaT, BildIndex, Joconde, RKDID
function p.picLink( id )
return '[https://pic.nypl.org/constituents/' .. id .. ' ' .. id .. ']' .. p.getCatForId( 'PIC' )
end
 
function p.bildLink( id )
if not string.match( id, '^%d+$' ) then
return false
end
return '[https://www.bildindex.de/document/obj' .. id .. ' ' .. id .. ']' -- .. p.getCatForId( 'Bildindex' )
end
 
function p.jocondeLink( id )
return '[http://www2.culture.gouv.fr/public/mistral/joconde_fr?ACTION=CHERCHER&FIELD_1=REF&VALUE_1=' .. id .. ' ' .. id .. ']' -- .. p.getCatForId( 'Joconde' )
end
 
function p.rkdidLink( id )
if not string.match( id, '^%d+$' ) then
return false
end
return '[https://rkd.nl/nl/explore/images/' .. id .. ' ' .. id .. ']' -- .. p.getCatForId( 'RKDimages' )
end
 
function p.balatLink( id )
if not string.match( id, '^%d+$' ) then
return false
end
return '[http://balat.kikirpa.be/object/104257' .. id .. ' ' .. id .. ']' -- .. p.getCatForId( 'BALaT' )
end
{ 'autores.uy', '[[autores.uy]]', 2558, p.autoresuyLink },
{ 'PIC', '[[:d:Q23892012|PIC]]', 2750, p.picLink },
{ 'BALaT', '[[:d:Q2876688|BALaT]]', 3293, p.balatLink },
{ 'Bildindex', '[[Marburg Picture Index|Bildindex]]', 2092, p.bildLink },
{ 'Joconde', '[[Joconde|Joconde]]' , 347, p.jocondeLink },
{ 'RKDID', '[[:d:Q17299580|RKDimages ID]]', 350, p.rkdidLink },
}
Anonymous user