<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.roatpkz.com/index.php?action=history&amp;feed=atom&amp;title=Module%3ASwitch_infobox</id>
	<title>Module:Switch infobox - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.roatpkz.com/index.php?action=history&amp;feed=atom&amp;title=Module%3ASwitch_infobox"/>
	<link rel="alternate" type="text/html" href="https://wiki.roatpkz.com/index.php?title=Module:Switch_infobox&amp;action=history"/>
	<updated>2026-04-29T12:09:00Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://wiki.roatpkz.com/index.php?title=Module:Switch_infobox&amp;diff=2590&amp;oldid=prev</id>
		<title>Hefner: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://wiki.roatpkz.com/index.php?title=Module:Switch_infobox&amp;diff=2590&amp;oldid=prev"/>
		<updated>2024-03-30T22:16:41Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 22:16, 30 March 2024&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Hefner</name></author>
	</entry>
	<entry>
		<id>https://wiki.roatpkz.com/index.php?title=Module:Switch_infobox&amp;diff=2589&amp;oldid=prev</id>
		<title>Bosses&gt;Cook Me Plox: Created page with &quot;local p = {}  function p.main(frame) 	local args = frame:getParent().args 	local contents = {}  	local i = 1 	while args[&#039;item&#039;..i] do 		table.insert(contents, { text = args[&#039;...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.roatpkz.com/index.php?title=Module:Switch_infobox&amp;diff=2589&amp;oldid=prev"/>
		<updated>2018-10-03T03:54:28Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;local p = {}  function p.main(frame) 	local args = frame:getParent().args 	local contents = {}  	local i = 1 	while args[&amp;#039;item&amp;#039;..i] do 		table.insert(contents, { text = args[&amp;#039;...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
	local args = frame:getParent().args&lt;br /&gt;
	local contents = {}&lt;br /&gt;
&lt;br /&gt;
	local i = 1&lt;br /&gt;
	while args[&amp;#039;item&amp;#039;..i] do&lt;br /&gt;
		table.insert(contents, { text = args[&amp;#039;text&amp;#039;..i] or (&amp;#039;Item &amp;#039;..i),&lt;br /&gt;
					content = &amp;#039;\n&amp;#039; .. args[&amp;#039;item&amp;#039;..i] })&lt;br /&gt;
		i = i + 1&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local ret = mw.html.create(&amp;#039;div&amp;#039;)&lt;br /&gt;
			:addClass(&amp;#039;switch-infobox&amp;#039;)&lt;br /&gt;
			:addClass(&amp;#039;loading&amp;#039;)&lt;br /&gt;
			:tag(&amp;#039;span&amp;#039;)&lt;br /&gt;
				:addClass(&amp;#039;loading-button&amp;#039;)&lt;br /&gt;
				:addClass(&amp;#039;button&amp;#039;)&lt;br /&gt;
				:wikitext(&amp;#039;Loading...&amp;#039;)&lt;br /&gt;
			:done()&lt;br /&gt;
	local mah_triggers = ret:tag(&amp;#039;div&amp;#039;)&lt;br /&gt;
				:addClass(&amp;#039;switch-infobox-triggers&amp;#039;)&lt;br /&gt;
&lt;br /&gt;
	for i, v in ipairs(contents) do&lt;br /&gt;
		mah_triggers	:tag(&amp;#039;span&amp;#039;)&lt;br /&gt;
					:addClass(&amp;#039;trigger&amp;#039;)&lt;br /&gt;
					:addClass(&amp;#039;button&amp;#039;)&lt;br /&gt;
					:attr(&amp;#039;data-id&amp;#039;,i)&lt;br /&gt;
					:wikitext(v.text)&lt;br /&gt;
				:done()&lt;br /&gt;
&lt;br /&gt;
		ret	:tag(&amp;#039;div&amp;#039;)&lt;br /&gt;
				:addClass(&amp;#039;item&amp;#039;)&lt;br /&gt;
				:addClass(i==1 and &amp;#039;showing&amp;#039; or &amp;#039;&amp;#039;)&lt;br /&gt;
				:attr(&amp;#039;data-id&amp;#039;,i)&lt;br /&gt;
				:wikitext(v.content)&lt;br /&gt;
			:done()&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return frame:preprocess(tostring(ret))&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Bosses&gt;Cook Me Plox</name></author>
	</entry>
</feed>