<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
	<id>https://www.wikonsult.org/index.php?action=history&amp;feed=atom&amp;title=Module%3AInfobox%2FOrganisation</id>
	<title>Module:Infobox/Organisation - Historique des versions</title>
	<link rel="self" type="application/atom+xml" href="https://www.wikonsult.org/index.php?action=history&amp;feed=atom&amp;title=Module%3AInfobox%2FOrganisation"/>
	<link rel="alternate" type="text/html" href="https://www.wikonsult.org/index.php?title=Module:Infobox/Organisation&amp;action=history"/>
	<updated>2026-08-09T05:35:41Z</updated>
	<subtitle>Historique des révisions pour cette page sur le wiki</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>https://www.wikonsult.org/index.php?title=Module:Infobox/Organisation&amp;diff=6031&amp;oldid=prev</id>
		<title>Yves.bertin : 1 révision importée</title>
		<link rel="alternate" type="text/html" href="https://www.wikonsult.org/index.php?title=Module:Infobox/Organisation&amp;diff=6031&amp;oldid=prev"/>
		<updated>2020-05-05T18:58:56Z</updated>

		<summary type="html">&lt;p&gt;1 révision importée&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;fr&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← Version précédente&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;Version du 5 mai 2020 à 18:58&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;fr&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(Aucune différence)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Yves.bertin</name></author>
		
	</entry>
	<entry>
		<id>https://www.wikonsult.org/index.php?title=Module:Infobox/Organisation&amp;diff=6030&amp;oldid=prev</id>
		<title>w:fr&gt;Bob08 : +charte</title>
		<link rel="alternate" type="text/html" href="https://www.wikonsult.org/index.php?title=Module:Infobox/Organisation&amp;diff=6030&amp;oldid=prev"/>
		<updated>2020-04-21T20:59:59Z</updated>

		<summary type="html">&lt;p&gt;+charte&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nouvelle page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local generic = require &amp;quot;Module:Infobox/Fonctions&amp;quot;&lt;br /&gt;
local localdata = require &amp;quot;Module:Infobox/Localdata&amp;quot;&lt;br /&gt;
local organisation = require &amp;quot;Module:Infobox/Fonctions/Organisation&amp;quot;&lt;br /&gt;
local wd = require &amp;quot;Module:Wikidata&amp;quot;&lt;br /&gt;
&lt;br /&gt;
local chartes = {&lt;br /&gt;
	-- {titre charte, élément wikidata, couleur titre, couleur texte, pictogramme}&lt;br /&gt;
    {'agence fédérale aux États-Unis', 'Q20857065', '#3c3b6e', '#FFF', 'musee'},&lt;br /&gt;
    {'dicastère', 'Q1225300', '#FFE8BF', '#000', 'eveque'},&lt;br /&gt;
    {'institut de recherche', 'Q31855', '#8089b7', '#FFF', 'universite'},&lt;br /&gt;
    {'institution des Nations unies', 'Q15925165', '#4B92DB', '#FFF', 'nations-unies'},&lt;br /&gt;
    {'institution européenne', 'Q4936585', '#003399', '#FFF', 'union-europeenne'},&lt;br /&gt;
    {'organisme sans but lucratif', 'Q163740', '6e77ef', '#FFF', 'association'},&lt;br /&gt;
    {'parti politique', 'Q7278', '#E1E1E1', '#000', 'defaut'},&lt;br /&gt;
    {'société nationale de la Croix-Rouge', 'Q1968122', '#CC0000', '#FFF', 'medecine'},&lt;br /&gt;
    {'société savante', 'Q955824', '#FFDEAD', '#000', 'universite'},&lt;br /&gt;
    {'syndicat', 'Q681615', '#D20012', '#FFF', 'association'},&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
local function setformat()&lt;br /&gt;
	local instanceof = wd.getIds(localdata.item, {property = 'P31'})&lt;br /&gt;
&lt;br /&gt;
	if not instanceof then&lt;br /&gt;
		return  {'Q', '', '#323996', '#FFF', 'defaut'}&lt;br /&gt;
	end&lt;br /&gt;
	instanceof = wd.addVals(instanceof, {property = 'P279'}, 2)&lt;br /&gt;
	for i, j in pairs(instanceof) do&lt;br /&gt;
		for k, l in pairs(chartes) do&lt;br /&gt;
			if l[2] == j then&lt;br /&gt;
				return l&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return {'Q', '', '#323996', '#FFF', 'defaut'}&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function setcharte()&lt;br /&gt;
	if localdata['charte'] then&lt;br /&gt;
		charte = localdata['charte']&lt;br /&gt;
		for i, j in pairs(chartes) do&lt;br /&gt;
			if j[1] == charte then&lt;br /&gt;
				return j&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return setformat()&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local infoboxformat = setcharte()&lt;br /&gt;
&lt;br /&gt;
local defaultquery = {property = {'P101', 'P366', 'P361', 'P279'}}&lt;br /&gt;
&lt;br /&gt;
return {&lt;br /&gt;
	maincolor = infoboxformat[3],&lt;br /&gt;
	secondcolor = infoboxformat[3],&lt;br /&gt;
	thirdcolor = infoboxformat[4],&lt;br /&gt;
 	parts =&lt;br /&gt;
    	{&lt;br /&gt;
			generic.title(infoboxformat[5]),&lt;br /&gt;
			generic.logo('Article à illustrer Organisation'),&lt;br /&gt;
			generic.blason(),&lt;br /&gt;
			generic.flag(),&lt;br /&gt;
			generic.locationmap(),&lt;br /&gt;
			generic.mainimage('Article à illustrer Organisation'),&lt;br /&gt;
			{type = 'table',&lt;br /&gt;
				rows = 	{&lt;br /&gt;
				{type = 'row', value = {'devise', 'slogan', 'association_slogan'}, wikidata = {property = 'P1451', showlang = true, isinlang = {'fr', 'en', 'la'}, conjtype = 'new line'}, style = { ['text-align'] = 'center', ['font-size'] = '0.9em', ['font-weight'] = 'normal', ['font-style'] = 'italic' }},&lt;br /&gt;
				}&lt;br /&gt;
			},			&lt;br /&gt;
			{type = 'table', title = localdata['histoire'] or wd.formatStatements{entity = id, property = 'P2184', withlink = 'frwiki'} or 'Histoire',&lt;br /&gt;
				rows = 	{&lt;br /&gt;
				{type = 'row', label = 'Fondation', value = {'création', 'fondation', 'date_de_fondation'}, wikidata = {property = {'P571', 'P740'}, showqualifiers = {'P518', 'P1810', 'P4649'}, conjtype = 'new line'}},&lt;br /&gt;
				{type = 'row', label = 'Dissolution', value = 'dissolution', property = 'P576'},&lt;br /&gt;
				{type = 'row', label = 'Origine', value = {'origine'}},&lt;br /&gt;
				{type = 'row', label = 'Prédécesseur', plurallabel = 'Prédécesseurs', value = {'remplace', 'a remplacé', 'prédécesseur'}, wikidata = {property = {'P1365', 'P155', 'P1398'}, removedupes = true}},&lt;br /&gt;
				{type = 'row', label = 'Successeur', plurallabel = 'Successeurs', value = {'remplacé par', 'successeur'}, wikidata = {property = {'P1366', 'P156', 'P167'}, removedupes = true}},&lt;br /&gt;
				{type = 'row', label = 'Scission de', value = {'scission de'}},&lt;br /&gt;
				{type = 'row', label = 'Fusion de', value = {'fusion de'}},&lt;br /&gt;
				{type = 'row', label = 'Scission dans', value = {'scission dans'}},&lt;br /&gt;
				{type = 'row', label = 'Fusionné dans', value = {'fusionné dans'}},&lt;br /&gt;
				}&lt;br /&gt;
			},&lt;br /&gt;
			{type = 'table', title='Cadre',&lt;br /&gt;
				rows = 	{&lt;br /&gt;
				{type = 'row', label = 'Sigle', plurallabel = 'Sigles', value = {'surnom', 'sigle', 'acronyme'}, wikidata = {property = {'P1449', 'P1813'}, showlang = true, isinlang = {'fr', 'en'}}},&lt;br /&gt;
				{type = 'row', label = 'Code', plurallabel = 'Code', value = 'code'},&lt;br /&gt;
				{type = 'row', label = '[[Zone d\'activité]]', value = {'couverture', 'région', 'zone opérationnelle', 'zone d\'influence'}, wikidata = {property = 'P2541', speciallabels = {Q13780930 = '[[Fichier:Flag of the United Nations.svg|20px|Monde|class=noviewer thumbborder]] [[Monde (univers)|Monde entier]]', Q46 = '[[Fichier:Flag of Europe.svg|20px|Europe|class=noviewer thumbborder]] [[Europe]]'}}},&lt;br /&gt;
				{type = 'row', label = 'Type', value = {'type', 'association_type'}, wikidata = {property = 'P31', removedupes = true, showqualifiers = {'P642', 'P459', 'P1013', 'P5102'}, qualifconjtype = 'comma', defaultlink = '-', defaultlinkquery = defaultquery}},&lt;br /&gt;
				{type = 'row', label = '[[Forme juridique]]', value = 'forme juridique', wikidata = {property = 'P1454', showqualifiers = 'P4649', defaultlink = '-', defaultlinkquery = defaultquery, rank = 'valid', showdate = true, sorttype = 'chronological', conjtype = 'new line'}},&lt;br /&gt;
				{type = 'row', label = 'Structure', value = 'structure'},&lt;br /&gt;
				{type = 'row', label = '[[Objet social]]', plurallabel = '[[Objet social|Objets sociaux]]', value = {'objet social', 'objets sociaux'}, wikidata = {property = 'P6346'}},&lt;br /&gt;
				{type = 'row', label = 'Domaine d\'activité', plurallabel = 'Domaines d\'activité', value = {'discipline', 'disciplines', 'domaine', 'domaines', 'secteur'}, wikidata = {property = {'P101', 'P452', 'P2650'}, defaultlink = '-', defaultlinkquery = defaultquery}},&lt;br /&gt;
				{type = 'row', label = '[[Mouvement culturel|Mouvement]]', value = {'mouvement'}, wikidata = {property = 'P135'}},&lt;br /&gt;
				{type = 'row', label = '[[Financement]]', value = 'financement', wikidata = {property = 'P2770', speciallabels = {Q193219 = '[[subvention]]s', Q1124860 = '[[dons]]'}, conjtype = &amp;quot;and&amp;quot;}},&lt;br /&gt;
				{type = 'row', label = 'Objectif', plurallabel = 'Objectifs', value = {'but', 'objectif', 'objectifs'}, property = {'P3712'}},&lt;br /&gt;
				{type = 'row', label = 'Méthode', plurallabel = 'Méthodes', value = {'méthode', 'methode'}},&lt;br /&gt;
				{type = 'row', label = 'Campus', value = 'campus'},&lt;br /&gt;
				{type = 'row', label = 'Siège social', value = {'siège', 'siège social', 'adresse', 'localisation', 'ville', 'siege'}, wikidata = {property = 'P159', defaultlink = '-', defaultlinkquery = {property = {'P669', 'P131', 'P466'}}, showqualifiers = {'P670', 'P969', 'P669', 'P281', 'P131', 'P17'}, qualifconjtype = 'comma', labelformat = function(id) local label = wd.getLabel(id) if mw.ustring.match(label, '%de') then return mw.ustring.gsub(label, '(%d)(e%l?)', '%1&amp;lt;sup&amp;gt;%2&amp;lt;/sup&amp;gt;', 1) else return label end end}},&lt;br /&gt;
				generic.country(),&lt;br /&gt;
				generic.coordinates(),&lt;br /&gt;
				{type = 'row', label = '[[Langue]]', plurallabel = '[[Langue]]s', value = {'langue', 'langues', 'langue officielle', 'langues officielles'}, wikidata = {property = 'P37', showqualifiers = 'P4626'}},&lt;br /&gt;
				{type = 'row', label = '[[Langue de travail]]', plurallabel = '[[Langue de travail|Langues de travail]]', value = {'langue de travail', 'langues de travail'}, wikidata = {property = 'P2936', showqualifiers = 'P4626'}},&lt;br /&gt;
				}&lt;br /&gt;
			},&lt;br /&gt;
			{type = 'table', title='Organisation',&lt;br /&gt;
				rows = 	{&lt;br /&gt;
				organisation.membres(id),&lt;br /&gt;
				organisation.custom(),&lt;br /&gt;
				-- Entités liées&lt;br /&gt;
				{type = 'row', label = 'Organisation mère', plurallabel = 'Organisations mères', value = {'organisation mère', 'société mère', 'organisme'}, wikidata = {property = 'P749', showdate = true, sorttype = 'chronological', showqualifiers = {'P1001'}, conjtype = 'new line'}},&lt;br /&gt;
				{type = 'row', label = 'Branche', plurallabel = 'Branches', value = 'branche', property = 'P199'},&lt;br /&gt;
				{type = 'row', label = 'Partenaire', plurallabel = 'Partenaires', value = 'partenaire', property = 'P2652'},&lt;br /&gt;
				{type = 'row', label = 'Dépend de', value = 'dépend de'},&lt;br /&gt;
				{type = 'row', label = 'Affiliation', value = {'affiliation', 'affiliation_europeenne', 'affiliation_internationale', 'rattachement'}, wikidata = {property = {'P1416', 'P463'}, showdate = true, defaultlinkquery = {property = {'P749', 'P127', 'P112'}}, qualifdefaultlinkquery = defaultquery, showqualifiers = {'P2868', 'P1416', 'P3831'}}},&lt;br /&gt;
				{type = 'row', label = 'Sponsor', plurallabel = 'Sponsors', hidden = true, value = 'sponsor', wikidata = {property = 'P859', defaultlinkquery = {property = {'P749', 'P127', 'P112'}}}},&lt;br /&gt;
				-- Orientation politique&lt;br /&gt;
				{type = 'row', label = '[[Idéologie]]', value = {'idéologie', 'orientation politique', 'politique', 'pol'}, wikidata = {property = 'P1142'}},&lt;br /&gt;
				{type = 'row', label = '[[Échiquier politique|Positionnement]]', value = {'positionnement', 'positionnement politique'}, wikidata = {property = 'P1387'}},&lt;br /&gt;
				{type = 'row', label = '[[Coalition politique]]', plurallabels = '[[Coalition politique|Coalitions politiques]]', value = {'coalition', 'coalition politique'}, wikidata = {property = 'P5832'}},&lt;br /&gt;
				{type = 'row', label = '[[Groupe parlementaire]]', value = {'groupe parlementaire', 'parlement'}, wikidata = {property = 'P4100'}},&lt;br /&gt;
				-- Situation financière &lt;br /&gt;
				{type = 'row', label = 'Budget', value = 'budget', wikidata = {property = 'P2769', showdate = true, sorttype = 'chronological', showunit = 'true'}},&lt;br /&gt;
				{type = 'row', label = 'Chiffre d\'affaires', value = 'chiffre d\'affaires', wikidata = {property = 'P2139', showdate = true, sorttype = 'chronological', showunit = 'true'}},&lt;br /&gt;
				{type = 'row', label = 'Résultat net', value = 'résultat net', wikidata = {property = 'P2295', showdate = true, sorttype = 'chronological', showunit = 'true'}},&lt;br /&gt;
				{type = 'row', label = 'Dépenses', value = {'dépenses', 'dépenses annuelles', 'dépenses totales'}, wikidata = {property = 'P2402', showdate = true, sorttype = 'chronological', showunit = 'true'}},&lt;br /&gt;
				{type = 'row', label = 'Capitalisation boursière', value = 'capitalisation', wikidata = {property = 'P2226', showdate = true, sorttype = 'chronological', showunit = 'true'}},&lt;br /&gt;
				{type = 'row', label = 'Cotation', plurallabel = 'Cotations', value = 'cotation', wikidata = {property = 'P414', showqualifiers = 'P249', conjtype = 'new line'}},&lt;br /&gt;
				{type = 'row', label = 'Notation', value = 'notation'},&lt;br /&gt;
				-- Divers&lt;br /&gt;
				{type = 'row', label = 'Récompense', plurallabel = 'Récompenses', value = 'récompense', wikidata = {property = 'P166', showdate = true, sorttype = 'chronological', conjtype = 'new line', defaultlink = '-', defaultlinkquery = {property = 'P1027'}}},&lt;br /&gt;
				{type = 'row', label = 'Produit', plurallabel = 'Produits', value = 'produit', property = 'P1056'},&lt;br /&gt;
				{type = 'row', label = '[[Représentativité syndicale en France|Représentativité]]', value = {'representativite', 'représentativité'}},&lt;br /&gt;
				{type = 'row', label = 'Publication', plurallabel = 'Publications', value = {'organe de presse', 'publication', 'publications'}, wikidata = {property = 'P2813', showdate = true, sorttype = 'chronological', conjtype = 'new line', defaultlink = '-', defaultlinkquery = {property = 'P123', 'P1433'}, labelformat = function(id) local label = wd.getLabel(id) if label then return '&amp;lt;i&amp;gt;' .. label .. '&amp;lt;/i&amp;gt;' end end}},&lt;br /&gt;
				generic.website(),&lt;br /&gt;
                                {type = &amp;quot;mixed&amp;quot;, label = &amp;quot;Portail de données&amp;quot;, value = &amp;quot;portail de données&amp;quot;, wikidata = {property = &amp;quot;P1325&amp;quot;, displayformat = &amp;quot;weblink&amp;quot;}},&lt;br /&gt;
				{type = &amp;quot;mixed&amp;quot;, label = &amp;quot;[[Statut juridique|Statuts]]&amp;quot;, value = &amp;quot;statuts&amp;quot;, wikidata = {property = &amp;quot;P6378&amp;quot;, displayformat = &amp;quot;weblink&amp;quot;, text = &amp;quot;En ligne&amp;quot;}},&lt;br /&gt;
				}&lt;br /&gt;
			},&lt;br /&gt;
			organisation.ids(),&lt;br /&gt;
			generic.geoloc({default_zoom=4}),&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;/div&gt;</summary>
		<author><name>w:fr&gt;Bob08</name></author>
		
	</entry>
</feed>