<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://limipedia.any64.de/index.php?action=history&amp;feed=atom&amp;title=Modul%3AInfobox</id>
	<title>Modul:Infobox - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://limipedia.any64.de/index.php?action=history&amp;feed=atom&amp;title=Modul%3AInfobox"/>
	<link rel="alternate" type="text/html" href="https://limipedia.any64.de/index.php?title=Modul:Infobox&amp;action=history"/>
	<updated>2026-06-13T04:55:04Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Limipedia</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://limipedia.any64.de/index.php?title=Modul:Infobox&amp;diff=10&amp;oldid=prev</id>
		<title>Admin: 1 Version importiert</title>
		<link rel="alternate" type="text/html" href="https://limipedia.any64.de/index.php?title=Modul:Infobox&amp;diff=10&amp;oldid=prev"/>
		<updated>2026-01-03T20:09:17Z</updated>

		<summary type="html">&lt;p&gt;1 Version importiert&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&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;de&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Nächstältere Version&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version vom 3. Januar 2026, 20:09 Uhr&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot; class=&quot;diff-notice&quot; lang=&quot;de&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(kein Unterschied)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key limipedia:diff:1.41:old-9:rev-10 --&gt;
&lt;/table&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://limipedia.any64.de/index.php?title=Modul:Infobox&amp;diff=9&amp;oldid=prev</id>
		<title>wikipedia&gt;Zukunft99 am 11. Juli 2025 um 15:00 Uhr</title>
		<link rel="alternate" type="text/html" href="https://limipedia.any64.de/index.php?title=Modul:Infobox&amp;diff=9&amp;oldid=prev"/>
		<updated>2025-07-11T15:00:39Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {}&lt;br /&gt;
local getArgs = require(&amp;#039;Modul:Arguments&amp;#039;).getArgs&lt;br /&gt;
&lt;br /&gt;
function p.tab(frame)&lt;br /&gt;
	local args = getArgs(frame)&lt;br /&gt;
	local index = {}&lt;br /&gt;
	local i = 0&lt;br /&gt;
	for datum = 1, 80 do i = i + 1&lt;br /&gt;
		if args[&amp;#039;name&amp;#039;..i] or args[&amp;#039;wert&amp;#039;..i] or args[&amp;#039;farbe&amp;#039;..i] or args[&amp;#039;unter&amp;#039;..i] or args[&amp;#039;datei&amp;#039;..i] then table.insert(index, i) end&lt;br /&gt;
		if args[&amp;#039;wertzwei&amp;#039;..i] then wertzwei = true end&lt;br /&gt;
		if args[&amp;#039;wertdrei&amp;#039;..i] then wertdrei = true end&lt;br /&gt;
	end&lt;br /&gt;
	cspan = wertdrei and 4 or wertzwei and 3 or 2&lt;br /&gt;
	&lt;br /&gt;
	local root = mw.html.create(&amp;#039;table&amp;#039;):css(&amp;#039;clear&amp;#039;, &amp;#039;left&amp;#039;):css(&amp;#039;float&amp;#039;, &amp;#039;right&amp;#039;):css(&amp;#039;font-size&amp;#039;, &amp;#039;96%&amp;#039;):css(&amp;#039;border&amp;#039;, &amp;#039;0.1px solid silver&amp;#039;):css(&amp;#039;border-collapse&amp;#039;, &amp;#039;collapse&amp;#039;):css(&amp;#039;line-height&amp;#039;, &amp;#039;1.5em&amp;#039;):css(&amp;#039;min-width&amp;#039;, &amp;#039;20em&amp;#039;)&lt;br /&gt;
	row = root:tag(&amp;#039;tr&amp;#039;)&lt;br /&gt;
	&lt;br /&gt;
	row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
		:wikitext(args[&amp;#039;titel&amp;#039;] or &amp;#039;Titel&amp;#039;)&lt;br /&gt;
		:css(&amp;#039;background-color&amp;#039;, &amp;#039;#CCF&amp;#039;)&lt;br /&gt;
		:css(&amp;#039;text-align&amp;#039;, &amp;#039;center&amp;#039;)&lt;br /&gt;
		:css(&amp;#039;font-weight&amp;#039;, &amp;#039;bold&amp;#039;)&lt;br /&gt;
		:css(&amp;#039;padding-top&amp;#039;, &amp;#039;0.2em&amp;#039;)&lt;br /&gt;
		:css(&amp;#039;padding-bottom&amp;#039;, &amp;#039;0.2em&amp;#039;)&lt;br /&gt;
		:css(&amp;#039;font-size&amp;#039;, &amp;#039;110%&amp;#039;)&lt;br /&gt;
		:attr(&amp;#039;colspan&amp;#039;, cspan)	&lt;br /&gt;
&lt;br /&gt;
	for k, v in pairs(index) do&lt;br /&gt;
		text = args[&amp;#039;wertzwei&amp;#039;..v] and &amp;#039;center&amp;#039; or &amp;#039;left&amp;#039; &lt;br /&gt;
		if args[&amp;#039;wert&amp;#039;..v] or args[&amp;#039;farbe&amp;#039;..v] or args[&amp;#039;unter&amp;#039;..v] or args[&amp;#039;datei&amp;#039;..v] then&lt;br /&gt;
			row = root:tag(&amp;#039;tr&amp;#039;)&lt;br /&gt;
			if args[&amp;#039;unter&amp;#039;..v] then&lt;br /&gt;
				row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
					:wikitext(args[&amp;#039;unter&amp;#039;..v])&lt;br /&gt;
					:css(&amp;#039;font-weight&amp;#039;, &amp;#039;bold&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;text-align&amp;#039;, &amp;#039;center&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;background-color&amp;#039;, &amp;#039;#EBEBFF&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;padding-top&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;padding-bottom&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;padding-left&amp;#039;, &amp;#039;0.5em&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;padding-right&amp;#039;, &amp;#039;0.5em&amp;#039;)&lt;br /&gt;
					:attr(&amp;#039;colspan&amp;#039;, cspan)&lt;br /&gt;
			elseif args[&amp;#039;datei&amp;#039;..v] then&lt;br /&gt;
				row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
					:wikitext(args[&amp;#039;datei&amp;#039;..v])&lt;br /&gt;
					:css(&amp;#039;text-align&amp;#039;, &amp;#039;center&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;vertical-align&amp;#039;, &amp;#039;top&amp;#039;)&lt;br /&gt;
					:attr(&amp;#039;colspan&amp;#039;, cspan)&lt;br /&gt;
			elseif args[&amp;#039;farbe&amp;#039;..v] then&lt;br /&gt;
				row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;background-color&amp;#039;, &amp;#039;rgb(170 170 170 / 0.1)&amp;#039;)&lt;br /&gt;
				row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
					:wikitext(&amp;#039;&amp;lt;div style=&amp;quot;background-color:#&amp;#039;..args[&amp;#039;farbe&amp;#039;..v]..&amp;#039;;height:0.8em;width:100%&amp;gt;&amp;lt;/div&amp;gt;&amp;#039;)&lt;br /&gt;
				if args[&amp;#039;farbezwei&amp;#039;..v] then&lt;br /&gt;
					row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
						:wikitext(&amp;#039;&amp;lt;div style=&amp;quot;background-color:#&amp;#039;..args[&amp;#039;farbezwei&amp;#039;..v]..&amp;#039;;height:0.8em;width:100%&amp;gt;&amp;lt;/div&amp;gt;&amp;#039;)&lt;br /&gt;
					if args[&amp;#039;farbedrei&amp;#039;..v] then&lt;br /&gt;
						row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
							:wikitext(&amp;#039;&amp;lt;div style=&amp;quot;background-color:#&amp;#039;..args[&amp;#039;farbedrei&amp;#039;..v]..&amp;#039;;height:0.8em;width:100%&amp;gt;&amp;lt;/div&amp;gt;&amp;#039;)&lt;br /&gt;
					end&lt;br /&gt;
				end&lt;br /&gt;
			else&lt;br /&gt;
				row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
					:wikitext(args[&amp;#039;name&amp;#039;..v] or &amp;#039;&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;font-weight&amp;#039;, &amp;#039;bold&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;background-color&amp;#039;, &amp;#039;rgb(170 170 170 / 0.1)&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;color&amp;#039;, &amp;#039;var(--color-base, #202122)&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;vertical-align&amp;#039;, &amp;#039;top&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;padding-top&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;padding-bottom&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;padding-left&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;padding-right&amp;#039;, &amp;#039;0.8em&amp;#039;)&lt;br /&gt;
					:css(&amp;#039;border-top&amp;#039;, &amp;#039;0.1px solid #E6E6E6&amp;#039;)&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
		if args[&amp;#039;wert&amp;#039;..v] then&lt;br /&gt;
			if wertzwei then&lt;br /&gt;
				if args[&amp;#039;wertzwei&amp;#039;..v] then&lt;br /&gt;
					row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
						:wikitext(args[&amp;#039;wert&amp;#039;..v])&lt;br /&gt;
						:css(&amp;#039;text-align&amp;#039;, text)&lt;br /&gt;
						:css(&amp;#039;padding-top&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-bottom&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-left&amp;#039;, &amp;#039;0.2em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-right&amp;#039;, &amp;#039;0.2em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;border-top&amp;#039;, &amp;#039;0.1px solid #E6E6E6&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;vertical-align&amp;#039;, &amp;#039;top&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;max-width&amp;#039;, args[&amp;#039;wertdrei&amp;#039;..v] and &amp;#039;112px&amp;#039; or &amp;#039;135px&amp;#039;)&lt;br /&gt;
					row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
						:wikitext(args[&amp;#039;wertzwei&amp;#039;..v])&lt;br /&gt;
						:css(&amp;#039;text-align&amp;#039;, text)	&lt;br /&gt;
						:css(&amp;#039;padding-top&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-bottom&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-left&amp;#039;, &amp;#039;0.2em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-right&amp;#039;, &amp;#039;0.2em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;border-top&amp;#039;, &amp;#039;0.1px solid #E6E6E6&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;vertical-align&amp;#039;, &amp;#039;top&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;max-width&amp;#039;, args[&amp;#039;wertdrei&amp;#039;..v] and &amp;#039;112px&amp;#039; or &amp;#039;135px&amp;#039;)&lt;br /&gt;
					if args[&amp;#039;wertdrei&amp;#039;..v]  then&lt;br /&gt;
						row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
							:wikitext(args[&amp;#039;wertdrei&amp;#039;..v])&lt;br /&gt;
							:css(&amp;#039;text-align&amp;#039;, text)&lt;br /&gt;
							:css(&amp;#039;padding-top&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
							:css(&amp;#039;padding-bottom&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
							:css(&amp;#039;padding-left&amp;#039;, &amp;#039;0.2em&amp;#039;)&lt;br /&gt;
							:css(&amp;#039;padding-right&amp;#039;, &amp;#039;0.2em&amp;#039;)&lt;br /&gt;
							:css(&amp;#039;vertical-align&amp;#039;, &amp;#039;top&amp;#039;)&lt;br /&gt;
							:css(&amp;#039;border-top&amp;#039;, &amp;#039;0.1px solid #E6E6E6&amp;#039;)&lt;br /&gt;
							:css(&amp;#039;max-width&amp;#039;, &amp;#039;112px&amp;#039;)&lt;br /&gt;
					end&lt;br /&gt;
				else&lt;br /&gt;
					row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
						:wikitext(args[&amp;#039;wert&amp;#039;..v])&lt;br /&gt;
						:css(&amp;#039;text-align&amp;#039;, text)						&lt;br /&gt;
						:css(&amp;#039;padding-top&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-bottom&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-left&amp;#039;, &amp;#039;0.2em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-right&amp;#039;, &amp;#039;0.2em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;border-top&amp;#039;, &amp;#039;0.1px solid #E6E6E6&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;max-width&amp;#039;, &amp;#039;135px&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;vertical-align&amp;#039;, &amp;#039;top&amp;#039;)&lt;br /&gt;
						:attr(&amp;#039;colspan&amp;#039;, wertdrei and 3 or 2)&lt;br /&gt;
				end&lt;br /&gt;
			else&lt;br /&gt;
				row:tag(&amp;#039;td&amp;#039;)&lt;br /&gt;
					:wikitext(args[&amp;#039;wert&amp;#039;..v])&lt;br /&gt;
						:css(&amp;#039;text-align&amp;#039;, text)&lt;br /&gt;
						:css(&amp;#039;padding-top&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-bottom&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-left&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;padding-right&amp;#039;, &amp;#039;0.3em&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;vertical-align&amp;#039;, &amp;#039;top&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;border-top&amp;#039;, &amp;#039;0.1px solid #E6E6E6&amp;#039;)&lt;br /&gt;
						:css(&amp;#039;max-width&amp;#039;, &amp;#039;320px&amp;#039;)&lt;br /&gt;
				end&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	return root&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>wikipedia&gt;Zukunft99</name></author>
	</entry>
</feed>