Module:Infobox/Artiste : Différence entre versions

De Lagny-sur-Marne Wiki
Aller à : navigation, rechercher
m
(suppression variables globales)
 
(18 révisions intermédiaires par 3 utilisateurs non affichées)
Ligne 1 : Ligne 1 :
 
local person = require "Module:Infobox/Fonctions/Personne"
 
local person = require "Module:Infobox/Fonctions/Personne"
 
local wikidata = require "Module:Wikidata"
 
local wikidata = require "Module:Wikidata"
return  
+
return {
{
 
 
maincolor = '#7DA7D9',
 
maincolor = '#7DA7D9',
parts =
+
parts = {
    {
+
{
+
person.title('artiste'),
type = 'title',
+
person.mainimage(),
value = 'nom',
+
{type = 'table',  rows = {
icon = 'artiste',
+
person.birth(),
style = {color = '#ffffff'}
+
person.death(),
},
+
person.floruit(),
person.mainimage(),
+
person.othernames(),
{type = 'table',  rows = {
+
person.nationality(),
person.birth(),
+
--- arrangemement pour le paramètre "autres activités" (obsolète ?)
person.death(),
+
function ( localdata )
person.floruit(),
+
if localdata['autres activités'] then
person.othernames(),
+
return {type = 'row', label = 'Activités', value = 'activités'}
person.nationality(),
+
else
{type = 'row', label = 'Activités', value = 'activités', wikidata=
+
return person.occupation()
function()
+
end
if localdata['autres activités'] then
+
end,
return nil
+
{type = 'row', label = 'Autres activités', value = 'autres activités'},
end
+
----
return wikidata.formatAndCat{entity = item, property = 'P106'}
+
person.education(),
end
+
person.contacts(),
},
+
person.places(),
{type = 'row', label = 'Autres activités', value = 'autres activités'},
+
person.movement(),
{type = 'row', label = 'Formation', value = 'formation', property = 'P69'},
+
person.patron(),
{type = 'row', label = 'Maîtres', value = 'maîtres', property = 'P1066'},
+
person.influencedby(),
{type = 'row', label = 'Élèves', value = 'élèves', property = 'P802'},
+
person.influenced(),
{type = 'row', label = 'Lieu de travail', value = 'lieu de travail', wikidata =
+
person.family(),
function() return wikidata.formatStatements{entity = item, property = 'P937', showdate = true, sorttype = 'chronological', conjtype = 'comma'} end},
+
person.awards(),
{type = 'row', label = 'Mouvement', value = 'mouvement', property = 'P135'},
+
person.website(),
{type = 'row', label = '[[Mécénat|Mécènes]]', value = 'mécènes'},
+
}},
person.influencedby(),
+
person.influenced(),
+
person.works({withlink = 'frwiki'}),
person.awards(),
+
{type = 'table', title = 'Compléments', rows = {
},
+
{type = 'row', value = 'compléments'},
},
+
}},
{type = 'table', title = 'Œuvres réputées', rows = {
+
{type = 'row', value = 'œuvres principales', wikidata =
+
person.signature(),
function()
 
return wikidata.formatAndCat{entity = item, property = 'P800', numval = 5}
 
end
 
},
 
},
 
},
 
{type = 'table', title = 'Compléments', rows = {
 
{type = 'row', value = 'compléments'},
 
},
 
},
 
person.signature(),
 
}
 
 
}
 
}
 +
}

Version actuelle datée du 16 septembre 2016 à 09:11

La documentation pour ce module peut être créée à Module:Infobox/Artiste/doc

local person = require "Module:Infobox/Fonctions/Personne"
local wikidata = require "Module:Wikidata"
return {
	maincolor = '#7DA7D9',
	parts = {
		
		person.title('artiste'),
		person.mainimage(),
		{type = 'table',  rows = {
			person.birth(),
			person.death(),
			person.floruit(),
			person.othernames(),
			person.nationality(),
			--- arrangemement pour le paramètre "autres activités" (obsolète ?)
			function ( localdata )
				if localdata['autres activités'] then
					return 	{type = 'row', label = 'Activités', value = 'activités'}
				else
					return person.occupation()
				end
			end,
			{type = 'row', label = 'Autres activités', value = 'autres activités'},
			----
			person.education(),
			person.contacts(),
			person.places(),
			person.movement(),
			person.patron(),
			person.influencedby(),
			person.influenced(),
			person.family(),
			person.awards(),
			person.website(),
		}},
	
		person.works({withlink = 'frwiki'}),
		{type = 'table', title = 'Compléments', rows = {
			{type = 'row', value = 'compléments'},
		}},
	
		person.signature(),
	}
}