<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.thegoonshow.co.uk/wiki/index.php?action=history&amp;feed=atom&amp;title=Module%3ATechnical_reasons</id>
	<title>Module:Technical reasons - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.thegoonshow.co.uk/wiki/index.php?action=history&amp;feed=atom&amp;title=Module%3ATechnical_reasons"/>
	<link rel="alternate" type="text/html" href="https://www.thegoonshow.co.uk/wiki/index.php?title=Module:Technical_reasons&amp;action=history"/>
	<updated>2026-04-26T11:02:07Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.38.2</generator>
	<entry>
		<id>https://www.thegoonshow.co.uk/wiki/index.php?title=Module:Technical_reasons&amp;diff=18466&amp;oldid=prev</id>
		<title>Kurt: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://www.thegoonshow.co.uk/wiki/index.php?title=Module:Technical_reasons&amp;diff=18466&amp;oldid=prev"/>
		<updated>2022-09-11T02:45:18Z</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 21:45, 10 September 2022&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>Kurt</name></author>
	</entry>
	<entry>
		<id>https://www.thegoonshow.co.uk/wiki/index.php?title=Module:Technical_reasons&amp;diff=18465&amp;oldid=prev</id>
		<title>en&gt;Ahecht: cleanup</title>
		<link rel="alternate" type="text/html" href="https://www.thegoonshow.co.uk/wiki/index.php?title=Module:Technical_reasons&amp;diff=18465&amp;oldid=prev"/>
		<updated>2018-08-23T18:56:48Z</updated>

		<summary type="html">&lt;p&gt;cleanup&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local mHatnote = require('Module:Hatnote')&lt;br /&gt;
local mHatlist = require('Module:Hatnote list')&lt;br /&gt;
local mArguments --initialize lazily&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.technicalReasons (frame)&lt;br /&gt;
	mArguments = require('Module:Arguments')&lt;br /&gt;
	local args = mArguments.getArgs(frame)&lt;br /&gt;
	return p._technicalReasons(args)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p._technicalReasons (args)&lt;br /&gt;
	--Return an error if no redirect's provided&lt;br /&gt;
	if not args[1] then&lt;br /&gt;
		return mHatnote.makeWikitextError(&lt;br /&gt;
			'no redirect provided',&lt;br /&gt;
			'Template:Technical reasons',&lt;br /&gt;
			args.category&lt;br /&gt;
		)&lt;br /&gt;
	end&lt;br /&gt;
	--get maxArg manually because getArgs() and table.maxn aren't friends&lt;br /&gt;
	local maxArg = 0&lt;br /&gt;
	for k, v in pairs(args) do&lt;br /&gt;
		if type(k) == 'number' and k &amp;gt; maxArg then maxArg = k end&lt;br /&gt;
	end&lt;br /&gt;
	--If there's only 1–2 arguments, set from to 1 to default things nicely.&lt;br /&gt;
	--Note that if (not args[2]) this doesn't matter either way.&lt;br /&gt;
	local from = maxArg &amp;gt; 2 and 2 or 1&lt;br /&gt;
	--Structure the forSee table&lt;br /&gt;
	local forSee = mHatlist.forSeeArgsToTable(args, from)&lt;br /&gt;
	--Suppresses defaulting; for-see table rows that would include defaulting&lt;br /&gt;
	--are set to nil.&lt;br /&gt;
	for k, v in pairs(forSee) do&lt;br /&gt;
		if not v.use or #v.pages == 0 then forSee[k] = nil end&lt;br /&gt;
	end&lt;br /&gt;
	--Stringify the forSee table or set it nil&lt;br /&gt;
	forSee = #forSee ~= 0 and mHatlist.forSeeTableToString(forSee) or nil&lt;br /&gt;
	local lead = string.format(&lt;br /&gt;
		'For [[Wikipedia:Naming conventions (technical restrictions)#Forbidden characters|technical reasons]], &amp;quot;%s&amp;quot; redirects here.',&lt;br /&gt;
		args[1]&lt;br /&gt;
	)&lt;br /&gt;
	local text = table.concat({lead, forSee}, ' ')&lt;br /&gt;
	&lt;br /&gt;
	local options = {extraclasses = 'plainlinks selfreference noprint', selfref = true}&lt;br /&gt;
	&lt;br /&gt;
	return mHatnote._hatnote(text, options)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>en&gt;Ahecht</name></author>
	</entry>
</feed>