« Module:Infobox/Fonctions/Personne » : différence entre les versions
+ |
Aucun résumé des modifications |
||
Ligne 16 : | Ligne 16 : | ||
local function setgender(item | local function setgender(item) -- pour adapter le masculin/féminin | ||
if not item then return end -- utiliser des paramètres de localdata ? | if not item then return end -- utiliser des paramètres de localdata ? | ||
local g = wikidata._formatStatements{item= item, property = 'P21', format = 'raw'} | local g = wikidata._formatStatements{item= item, property = 'P21', format = 'raw'} | ||
Ligne 48 : | Ligne 48 : | ||
label = 'Naissance', | label = 'Naissance', | ||
value = | value = | ||
function() | function(localdata, item) | ||
local thedate, theplace = localdata['date de naissance'], localdata['lieu de naissance'] | local thedate, theplace = localdata['date de naissance'], localdata['lieu de naissance'] | ||
if not thedate then | if not thedate then | ||
Ligne 66 : | Ligne 66 : | ||
label = 'Décès', | label = 'Décès', | ||
value = | value = | ||
function() | function(localdata, item) | ||
local thedate, theplace = localdata['date de décès'], localdata['lieu de décès'] | local thedate, theplace = localdata['date de décès'], localdata['lieu de décès'] | ||
if not thedate then | if not thedate then | ||
Ligne 93 : | Ligne 93 : | ||
type = 'mixed', | type = 'mixed', | ||
label = 'Formation', | label = 'Formation', | ||
value = function() return locadata['éducation'] or localdata['formation'] end, | value = function(localdata) return locadata['éducation'] or localdata['formation'] end, | ||
wikidata = function() return wikidata._formatAndCat{item=item, property = 'P69', showdate = true, conjtype = '<br />'} end | wikidata = function(item) return wikidata._formatAndCat{item=item, property = 'P69', showdate = true, conjtype = '<br />'} end | ||
} | } | ||
end | end | ||
Ligne 103 : | Ligne 103 : | ||
label = 'Distinctions', | label = 'Distinctions', | ||
value = 'prix', | value = 'prix', | ||
wikidata = function() return wikidata._formatAndCat{item = item, property= 'P166', sorttype= 'chronological' , showdate= true, conjtype= '<br />'} end, | wikidata = function(item) return wikidata._formatAndCat{item = item, property= 'P166', sorttype= 'chronological' , showdate= true, conjtype= '<br />'} end, | ||
} | } | ||
end | end | ||
Ligne 135 : | Ligne 135 : | ||
captionparameter = 'légende signature', | captionparameter = 'légende signature', | ||
defaultcaption = 'signature', | defaultcaption = 'signature', | ||
property = 'P109', | property = 'P109', | ||
numval = 1 | numval = 1 |
Version du 10 octobre 2014 à 08:32
-- Functions utilisées par les infobox personnes local p = {} local wikidata = require('Module:Wikidata') local general = require('Module:Infobox/Fonctions') local gender -- set by setgender
-- ========== Fonctions d'aide ====================================
local function dateandplace(thedate, theplace)
if thedate and theplace then
return thedate .. '
' .. theplace
else
return thedate or theplace --retourne tout ce qu'il trouve
end
end
local function setgender(item) -- pour adapter le masculin/féminin
if not item then return end -- utiliser des paramètres de localdata ?
local g = wikidata._formatStatements{item= item, property = 'P21', format = 'raw'}
if g == 'Q6581072' then
sex = 'f'
elseif g == 'Q6581097' then
sex = 'm'
else
g = '?'
end
end
--Titre function p.title() return { type = 'title', value = 'nom', class = 'entete icon humain', } end
--Image function p.mainimage() return general.mainimage() end
--Naissance, décès function p.birth() -- date de naissance en première ligne, lieu de naissance en deuxième return { type = 'mixed', label = 'Naissance', value = function(localdata, item) local thedate, theplace = localdata['date de naissance'], localdata['lieu de naissance'] if not thedate then thedate = wikidata._formatAndCat({item = item, property= 'P569', rank = 'best', conjunction= ' ou '}) end if not theplace then theplace = wikidata._formatAndCat({item = item, property= 'P19', rank = 'best', conjunction= ' ou '}) end return dateandplace(thedate, theplace) end } end
function p.death() -- même fonctionnement que la fonction p.birth return { type = 'mixed', label = 'Décès', value = function(localdata, item) local thedate, theplace = localdata['date de décès'], localdata['lieu de décès'] if not thedate then thedate = wikidata._formatAndCat{item= item, property= 'P570', rank = 'best', conjunction= ' ou '} end if not theplace then theplace = wikidata._formatAndCat{item = item, property= 'p20', rank = 'best', conjunction= ' ou '} end return dateandplace(thedate, theplace) end } end
function p.nationality() --pour l'instant, ne retourne que la valeur donnée par le paramètre nationalité, ou, à defaut, la propriété p570 de Wikidata, à retravailler pour le formatage. return { type = 'mixed', label = 'Nationalité', value = 'nationalité', property = 'P27' } end
-- parcours professionel
function p.education() -- à améliorer
return {
type = 'mixed',
label = 'Formation',
value = function(localdata) return locadata['éducation'] or localdata['formation'] end,
wikidata = function(item) return wikidata._formatAndCat{item=item, property = 'P69', showdate = true, conjtype = '
'} end
}
end
function p.awards() -- à améliorer
return {
type = 'mixed',
label = 'Distinctions',
value = 'prix',
wikidata = function(item) return wikidata._formatAndCat{item = item, property= 'P166', sorttype= 'chronological' , showdate= true, conjtype= '
'} end,
}
end
-- Influences
function p.influencedby()
return {
type = 'mixed',
label = 'Influencé par',
value = 'influencé par',
property = 'P737',
}
end
function p.influenced() return { type = 'mixed', label = 'A influencé', value = 'a influencé', property = 'P738', } end
-- Signature function p.signature(default) return { type = 'images', imageparameters = {'signature'}, defaultimage = {default}, captionparameter = 'légende signature', defaultcaption = 'signature', property = 'P109', numval = 1 } end
--== Site web function p.website() return p.website() end
return p