<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
	<id>https://wiki.orthophore.fr/index.php?action=history&amp;feed=atom&amp;title=Module%3AYesno</id>
	<title>Module:Yesno - Historique des versions</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.orthophore.fr/index.php?action=history&amp;feed=atom&amp;title=Module%3AYesno"/>
	<link rel="alternate" type="text/html" href="https://wiki.orthophore.fr/index.php?title=Module:Yesno&amp;action=history"/>
	<updated>2026-05-01T20:48:39Z</updated>
	<subtitle>Historique des révisions pour cette page sur le wiki</subtitle>
	<generator>MediaWiki 1.35.0</generator>
	<entry>
		<id>https://wiki.orthophore.fr/index.php?title=Module:Yesno&amp;diff=368&amp;oldid=prev</id>
		<title>Sebastien : 1 version importée</title>
		<link rel="alternate" type="text/html" href="https://wiki.orthophore.fr/index.php?title=Module:Yesno&amp;diff=368&amp;oldid=prev"/>
		<updated>2021-03-19T22:44:40Z</updated>

		<summary type="html">&lt;p&gt;1 version importée&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;fr&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Version précédente&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version du 19 mars 2021 à 22:44&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key orthowiki:diff::1.12:old-367:rev-368 --&gt;
&lt;/table&gt;</summary>
		<author><name>Sebastien</name></author>
	</entry>
	<entry>
		<id>https://wiki.orthophore.fr/index.php?title=Module:Yesno&amp;diff=367&amp;oldid=prev</id>
		<title>Orthophore&gt;Minorax : 8 revisions imported from :meta:Module:Yesno</title>
		<link rel="alternate" type="text/html" href="https://wiki.orthophore.fr/index.php?title=Module:Yesno&amp;diff=367&amp;oldid=prev"/>
		<updated>2020-03-01T02:09:18Z</updated>

		<summary type="html">&lt;p&gt;8 revisions imported from &lt;a href=&quot;/index.php?title=Meta:Module:Yesno&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Meta:Module:Yesno (page inexistante)&quot;&gt;meta:Module:Yesno&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nouvelle page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;-- Function allowing for consistent treatment of boolean-like wikitext input.&lt;br /&gt;
-- It works similarly to the template {{yesno}}.&lt;br /&gt;
&lt;br /&gt;
return function (val, default)&lt;br /&gt;
	-- If your wiki uses non-ascii characters for any of &amp;quot;yes&amp;quot;, &amp;quot;no&amp;quot;, etc., you&lt;br /&gt;
	-- should replace &amp;quot;val:lower()&amp;quot; with &amp;quot;mw.ustring.lower(val)&amp;quot; in the&lt;br /&gt;
	-- following line.&lt;br /&gt;
	val = type(val) == 'string' and val:lower() or val&lt;br /&gt;
	if val == nil then&lt;br /&gt;
		return nil&lt;br /&gt;
	elseif val == true &lt;br /&gt;
		or val == 'yes'&lt;br /&gt;
		or val == 'y'&lt;br /&gt;
		or val == 'true'&lt;br /&gt;
		or val == 't'&lt;br /&gt;
		or val == 'on'&lt;br /&gt;
		or tonumber(val) == 1&lt;br /&gt;
	then&lt;br /&gt;
		return true&lt;br /&gt;
	elseif val == false&lt;br /&gt;
		or val == 'no'&lt;br /&gt;
		or val == 'n'&lt;br /&gt;
		or val == 'false'&lt;br /&gt;
		or val == 'f'&lt;br /&gt;
		or val == 'off'&lt;br /&gt;
		or tonumber(val) == 0&lt;br /&gt;
	then&lt;br /&gt;
		return false&lt;br /&gt;
	else&lt;br /&gt;
		return default&lt;br /&gt;
	end&lt;br /&gt;
end&lt;/div&gt;</summary>
		<author><name>Orthophore&gt;Minorax</name></author>
	</entry>
</feed>