<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
	<id>https://wiki.nefald.fr/index.php?action=history&amp;feed=atom&amp;title=Module%3AInfobox%2FConfigs%2FTransport</id>
	<title>Module:Infobox/Configs/Transport - Historique des versions</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.nefald.fr/index.php?action=history&amp;feed=atom&amp;title=Module%3AInfobox%2FConfigs%2FTransport"/>
	<link rel="alternate" type="text/html" href="https://wiki.nefald.fr/index.php?title=Module:Infobox/Configs/Transport&amp;action=history"/>
	<updated>2026-04-15T02:29:45Z</updated>
	<subtitle>Historique des versions pour cette page sur le wiki</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>https://wiki.nefald.fr/index.php?title=Module:Infobox/Configs/Transport&amp;diff=3994&amp;oldid=prev</id>
		<title>Ayd : Page créée avec « local config = {      -- Titre de l’infobox : nom du transport ou titre de la page     titre = function(args)         return args.nom or &#039;{{PAGENAME}}&#039;     end,      -- Icône de l’infobox (Font Awesome)     icone = {         type = &#039;fas&#039;,       -- &#039;fas&#039;, &#039;fab&#039;, &#039;far&#039;, &#039;fal&#039;, &#039;fad&#039;         nom  = &#039;bus&#039;        -- à changer si tu préfères un autre pictogramme     },      -- Image principale     image = function(args)         if args.image then             re... »</title>
		<link rel="alternate" type="text/html" href="https://wiki.nefald.fr/index.php?title=Module:Infobox/Configs/Transport&amp;diff=3994&amp;oldid=prev"/>
		<updated>2025-11-20T11:00:33Z</updated>

		<summary type="html">&lt;p&gt;Page créée avec « local config = {      -- Titre de l’infobox : nom du transport ou titre de la page     titre = function(args)         return args.nom or &amp;#039;{{PAGENAME}}&amp;#039;     end,      -- Icône de l’infobox (Font Awesome)     icone = {         type = &amp;#039;fas&amp;#039;,       -- &amp;#039;fas&amp;#039;, &amp;#039;fab&amp;#039;, &amp;#039;far&amp;#039;, &amp;#039;fal&amp;#039;, &amp;#039;fad&amp;#039;         nom  = &amp;#039;bus&amp;#039;        -- à changer si tu préfères un autre pictogramme     },      -- Image principale     image = function(args)         if args.image then             re... »&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nouvelle page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local config = {&lt;br /&gt;
&lt;br /&gt;
    -- Titre de l’infobox : nom du transport ou titre de la page&lt;br /&gt;
    titre = function(args)&lt;br /&gt;
        return args.nom or &amp;#039;{{PAGENAME}}&amp;#039;&lt;br /&gt;
    end,&lt;br /&gt;
&lt;br /&gt;
    -- Icône de l’infobox (Font Awesome)&lt;br /&gt;
    icone = {&lt;br /&gt;
        type = &amp;#039;fas&amp;#039;,       -- &amp;#039;fas&amp;#039;, &amp;#039;fab&amp;#039;, &amp;#039;far&amp;#039;, &amp;#039;fal&amp;#039;, &amp;#039;fad&amp;#039;&lt;br /&gt;
        nom  = &amp;#039;bus&amp;#039;        -- à changer si tu préfères un autre pictogramme&lt;br /&gt;
    },&lt;br /&gt;
&lt;br /&gt;
    -- Image principale&lt;br /&gt;
    image = function(args)&lt;br /&gt;
        if args.image then&lt;br /&gt;
            return {&lt;br /&gt;
                nom     = args.image,&lt;br /&gt;
                taille  = args.tailleimage or &amp;quot;300px&amp;quot;,&lt;br /&gt;
                legende = args.legende&lt;br /&gt;
            }&lt;br /&gt;
        end&lt;br /&gt;
        return nil&lt;br /&gt;
    end,&lt;br /&gt;
&lt;br /&gt;
    sections = {&lt;br /&gt;
&lt;br /&gt;
        -- Bloc &amp;quot;Informations Générales&amp;quot;&lt;br /&gt;
        {&lt;br /&gt;
            titre = &amp;#039;Informations Générales&amp;#039;,&lt;br /&gt;
            champs = {&lt;br /&gt;
                { cle = &amp;#039;nom&amp;#039;,           label = &amp;#039;Nom&amp;#039; },&lt;br /&gt;
                { cle = &amp;#039;mode&amp;#039;,          label = &amp;#039;Mode&amp;#039; },          -- Portail, Collectif, Terrestre…&lt;br /&gt;
                { cle = &amp;#039;utilisation&amp;#039;,   label = &amp;#039;Utilisation&amp;#039; },   -- Transport public, privé, etc.&lt;br /&gt;
                { cle = &amp;#039;vitesse&amp;#039;,       label = &amp;#039;Vitesse&amp;#039; },       -- km/h, etc.&lt;br /&gt;
                { cle = &amp;#039;disponibilite&amp;#039;, label = &amp;#039;Disponibilité&amp;#039; }, -- Toujours / horaires…&lt;br /&gt;
                { cle = &amp;#039;statut&amp;#039;,        label = &amp;#039;Statut&amp;#039; }         -- Fonctionnel / En panne…&lt;br /&gt;
            }&lt;br /&gt;
        },&lt;br /&gt;
&lt;br /&gt;
        -- Bloc &amp;quot;Géographie&amp;quot;&lt;br /&gt;
        {&lt;br /&gt;
            titre = &amp;#039;Géographie&amp;#039;,&lt;br /&gt;
            champs = {&lt;br /&gt;
                { cle = &amp;#039;localisation&amp;#039;, label = &amp;#039;Localisation&amp;#039; }&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
return config&lt;/div&gt;</summary>
		<author><name>Ayd</name></author>
	</entry>
</feed>