<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.boxofrocks.net/index.php?action=history&amp;feed=atom&amp;title=Module%3ARecipe_list</id>
	<title>Module:Recipe list - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.boxofrocks.net/index.php?action=history&amp;feed=atom&amp;title=Module%3ARecipe_list"/>
	<link rel="alternate" type="text/html" href="https://wiki.boxofrocks.net/index.php?title=Module:Recipe_list&amp;action=history"/>
	<updated>2026-05-31T02:05:17Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>https://wiki.boxofrocks.net/index.php?title=Module:Recipe_list&amp;diff=705&amp;oldid=prev</id>
		<title>BoxWiki: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://wiki.boxofrocks.net/index.php?title=Module:Recipe_list&amp;diff=705&amp;oldid=prev"/>
		<updated>2021-05-13T18:21:36Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&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;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;Revision as of 18:21, 13 May 2021&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>BoxWiki</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.boxofrocks.net/index.php?title=Module:Recipe_list&amp;diff=704&amp;oldid=prev</id>
		<title>Decoration&gt;Majr: So yeah this is 2-4 times faster now...</title>
		<link rel="alternate" type="text/html" href="https://wiki.boxofrocks.net/index.php?title=Module:Recipe_list&amp;diff=704&amp;oldid=prev"/>
		<updated>2018-04-22T11:08:15Z</updated>

		<summary type="html">&lt;p&gt;So yeah this is 2-4 times faster now...&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;
function p.type( f )&lt;br /&gt;
	local args = f.args&lt;br /&gt;
	local text = require( [[Module:Text]] )&lt;br /&gt;
	local crafting = require( [[Module:Crafting]] ).table&lt;br /&gt;
	local type = text.trim( args[1] )&lt;br /&gt;
&lt;br /&gt;
	local argList = {&lt;br /&gt;
		'type', 'upcoming', 'name', 'ingredients', 'arggroups',&lt;br /&gt;
		1, 2, 3, 4, 5, 6, 7, 8, 9,&lt;br /&gt;
		'A1', 'B1', 'C1', 'A2', 'B2', 'C2', 'A3', 'B3', 'C3',&lt;br /&gt;
		'Output', 'description', 'fixed', 'notfixed',&lt;br /&gt;
		'A1title', 'A1link', 'B1title', 'B1link', 'C1title', 'C1link',&lt;br /&gt;
		'A2title', 'A2link', 'B2title', 'B2link', 'C2title', 'C2link',&lt;br /&gt;
		'A3title', 'A3link', 'B3title', 'B3link', 'C3title', 'C3link',&lt;br /&gt;
		'Otitle', 'Olink',&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	local data = f:callParserFunction( '#dpl:', {&lt;br /&gt;
		category = type .. ' recipe',&lt;br /&gt;
		include = '{Crafting}:' .. table.concat( argList, ':' ),&lt;br /&gt;
		mode = 'userformat',&lt;br /&gt;
		secseparators = '====',&lt;br /&gt;
		multisecseparators = '===='&lt;br /&gt;
	} )&lt;br /&gt;
	&lt;br /&gt;
	local out = {}&lt;br /&gt;
	local showDesciption&lt;br /&gt;
	local templates = {}&lt;br /&gt;
	for template in text.gsplit( data, '====' ) do&lt;br /&gt;
		-- If type matches&lt;br /&gt;
		if template:find( '^%s*' .. type .. '%s*|' ) then&lt;br /&gt;
			local tArgs = {}&lt;br /&gt;
			local i = 0&lt;br /&gt;
			-- Extract the arguments from the DPL query&lt;br /&gt;
			for tArg in text.gsplit( template, '\n|' ) do&lt;br /&gt;
				i = i + 1&lt;br /&gt;
				if tArg ~= '' then&lt;br /&gt;
					local key = argList[i]&lt;br /&gt;
					tArgs[key] = tArg&lt;br /&gt;
				end&lt;br /&gt;
			end&lt;br /&gt;
			&lt;br /&gt;
			if tArgs.description then&lt;br /&gt;
				showDescription = true&lt;br /&gt;
			end&lt;br /&gt;
			&lt;br /&gt;
			tArgs.nocat = '1'&lt;br /&gt;
			&lt;br /&gt;
			table.insert( templates, tArgs )&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	if #templates == 0 then&lt;br /&gt;
		return&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	templates[1].head = '1'&lt;br /&gt;
	templates[1].showname = '1'&lt;br /&gt;
	if showDescription and args.showdesciption ~= '0' or args.showdesciption == '1' then&lt;br /&gt;
		templates[1].showdescription = '1'&lt;br /&gt;
	end&lt;br /&gt;
	if not args.continue then&lt;br /&gt;
		templates[#templates].foot = '1'&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	local out = {}&lt;br /&gt;
	for i, v in ipairs( templates ) do&lt;br /&gt;
		table.insert( out, crafting( v ) )&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	return table.concat( out, '\n' )&lt;br /&gt;
end&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Decoration&gt;Majr</name></author>
		
	</entry>
</feed>