<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.mechsploit.me/index.php?action=history&amp;feed=atom&amp;title=Module%3ACode_review_entry</id>
	<title>Module:Code review entry - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.mechsploit.me/index.php?action=history&amp;feed=atom&amp;title=Module%3ACode_review_entry"/>
	<link rel="alternate" type="text/html" href="https://wiki.mechsploit.me/index.php?title=Module:Code_review_entry&amp;action=history"/>
	<updated>2026-04-08T15:39:06Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://wiki.mechsploit.me/index.php?title=Module:Code_review_entry&amp;diff=292&amp;oldid=prev</id>
		<title>MechsploWikiSysop: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://wiki.mechsploit.me/index.php?title=Module:Code_review_entry&amp;diff=292&amp;oldid=prev"/>
		<updated>2025-09-02T02:50:19Z</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:50, 1 September 2025&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>MechsploWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://wiki.mechsploit.me/index.php?title=Module:Code_review_entry&amp;diff=291&amp;oldid=prev</id>
		<title>mw&gt;MarkTraceur at 06:25, 31 August 2013</title>
		<link rel="alternate" type="text/html" href="https://wiki.mechsploit.me/index.php?title=Module:Code_review_entry&amp;diff=291&amp;oldid=prev"/>
		<updated>2013-08-31T06:25:11Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local Gerrit = require( &amp;#039;Module:Gerrit&amp;#039; )&lt;br /&gt;
&lt;br /&gt;
local description = function ( desc, done )&lt;br /&gt;
	local isdone = ( done == &amp;#039;done&amp;#039; )&lt;br /&gt;
	local entry = &amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
	if isdone then&lt;br /&gt;
		entry = entry .. &amp;#039;&amp;lt;s&amp;gt;&amp;#039;&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	entry = entry .. desc&lt;br /&gt;
&lt;br /&gt;
	if isdone then&lt;br /&gt;
		entry = entry .. &amp;#039;&amp;lt;/s&amp;gt;&amp;#039;&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return entry&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local linkhead = function ( link, done )&lt;br /&gt;
	local isdone = ( done == &amp;#039;done&amp;#039; )&lt;br /&gt;
	local entry = &amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
	if isdone then&lt;br /&gt;
		entry = entry .. &amp;#039;&amp;lt;s&amp;gt;&amp;#039;&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	entry = entry .. link&lt;br /&gt;
&lt;br /&gt;
	if isdone then&lt;br /&gt;
		entry = entry .. &amp;#039;&amp;lt;/s&amp;gt;&amp;#039;&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return entry&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local dl = function ( link, desc, done )&lt;br /&gt;
	local entry = &amp;#039;; &amp;#039;&lt;br /&gt;
&lt;br /&gt;
	origurl = link&lt;br /&gt;
	matches = string.match( origurl, &amp;#039;https?%:%/%/gerrit%.wikimedia%.org%/r%/(%d+)&amp;#039; )&lt;br /&gt;
	constraintmatches = string.match( origurl, &amp;#039;https?%:%/%/gerrit%.wikimedia%.org%/r%/%#%/q%/(.*),n,z&amp;#039; )&lt;br /&gt;
&lt;br /&gt;
	if matches ~= nil then&lt;br /&gt;
		link = Gerrit._link_to_gerrit_number( matches )&lt;br /&gt;
	elseif constraintmatches ~= nil then&lt;br /&gt;
		local ownermatch = string.match( constraintmatches, &amp;#039;owner%:([^%+ ]*)&amp;#039; )&lt;br /&gt;
		local projectmatch = string.match( constraintmatches, &amp;#039;project%:([^%+ ]*)&amp;#039; )&lt;br /&gt;
		local statusmatch = string.match( constraintmatches, &amp;#039;status%:([^%+ ]*)&amp;#039; )&lt;br /&gt;
		local constraints = {}&lt;br /&gt;
&lt;br /&gt;
		if ownermatch ~= nil then&lt;br /&gt;
			constraints.owner = ownermatch&lt;br /&gt;
		end&lt;br /&gt;
&lt;br /&gt;
		if projectmatch ~= nil then&lt;br /&gt;
			constraints.project = projectmatch&lt;br /&gt;
		end&lt;br /&gt;
&lt;br /&gt;
		if statusmatch ~= nil then&lt;br /&gt;
			constraints.status = statusmatch&lt;br /&gt;
		end&lt;br /&gt;
&lt;br /&gt;
		link = Gerrit._link_to_gerrit_constraints( constraints )&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return &amp;#039;; &amp;#039; .. linkhead( link, done ) .. &amp;#039; : &amp;#039; .. description( desc, done )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return {&lt;br /&gt;
	_dl = dl,&lt;br /&gt;
&lt;br /&gt;
	dl = function ( d )&lt;br /&gt;
		link = d.args[1]&lt;br /&gt;
		desc = d.args[2]&lt;br /&gt;
		done = d.args[3]&lt;br /&gt;
&lt;br /&gt;
		return dl( d.args[1], d.args[2], d.args[3] )&lt;br /&gt;
	end&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>mw&gt;MarkTraceur</name></author>
	</entry>
</feed>