<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.endmyopia.org/index.php?action=history&amp;feed=atom&amp;title=Module%3ATfd_links</id>
	<title>Module:Tfd links - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.endmyopia.org/index.php?action=history&amp;feed=atom&amp;title=Module%3ATfd_links"/>
	<link rel="alternate" type="text/html" href="https://wiki.endmyopia.org/index.php?title=Module:Tfd_links&amp;action=history"/>
	<updated>2026-05-05T01:35:47Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.endmyopia.org/index.php?title=Module:Tfd_links&amp;diff=10696&amp;oldid=prev</id>
		<title>Viceroy Sam: 1 revision imported: Module:Science redirect Module:Science redirect/conf Module:Tfd links Template:Tfd links</title>
		<link rel="alternate" type="text/html" href="https://wiki.endmyopia.org/index.php?title=Module:Tfd_links&amp;diff=10696&amp;oldid=prev"/>
		<updated>2020-06-12T11:23:21Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported: Module:Science redirect Module:Science redirect/conf Module:Tfd links Template:Tfd links&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;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 11:23, 12 June 2020&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key jakeendmy_mw1720-mwnr_:diff::1.12:old-10695:rev-10696 --&gt;
&lt;/table&gt;</summary>
		<author><name>Viceroy Sam</name></author>
	</entry>
	<entry>
		<id>https://wiki.endmyopia.org/index.php?title=Module:Tfd_links&amp;diff=10695&amp;oldid=prev</id>
		<title>wiki&gt;Pppery: TfD is (finally) no longer badly backlogged, so re-enabling all of the links</title>
		<link rel="alternate" type="text/html" href="https://wiki.endmyopia.org/index.php?title=Module:Tfd_links&amp;diff=10695&amp;oldid=prev"/>
		<updated>2019-05-29T02:52:30Z</updated>

		<summary type="html">&lt;p&gt;TfD is (finally) no longer badly backlogged, so re-enabling all of the links&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;-- This module implements [[Template:Tfd links]]&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
local function urlencode(text)&lt;br /&gt;
	-- Return equivalent of {{urlencode:text}}.&lt;br /&gt;
	local function byte(char)&lt;br /&gt;
		return string.format('%%%02X', string.byte(char))&lt;br /&gt;
	end&lt;br /&gt;
	return text:gsub('[^ %w%-._]', byte):gsub(' ', '+')&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function fullurllink(t, a, s)&lt;br /&gt;
	return '[//en.wikipedia.org/w/index.php?title=' .. urlencode(t) .. '&amp;amp;' .. a .. ' ' .. s .. ']'&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
	local args = frame:getParent().args&lt;br /&gt;
	local ns = ((args['catfd'] and args['catfd'] ~= '') and 'Category')&lt;br /&gt;
		or ((args['module'] and args['module'] ~= '') and 'Module') &lt;br /&gt;
		or  'Template'&lt;br /&gt;
	local tname = mw.getContentLanguage():ucfirst(args['1'] or 'Example')&lt;br /&gt;
	local fname = ns .. ':' .. tname&lt;br /&gt;
	local ymd = args['2'] or ''&lt;br /&gt;
	local fullpagename = (ymd ~= '')&lt;br /&gt;
		and	'WP:Templates for discussion/Log/' .. ymd&lt;br /&gt;
		or frame:preprocess('{{FULLPAGENAME}}')&lt;br /&gt;
	local sep = '&amp;amp;nbsp;&amp;lt;b&amp;gt;·&amp;lt;/b&amp;gt; '&lt;br /&gt;
	&lt;br /&gt;
	local res = '&amp;lt;span id=&amp;quot;' .. ns .. ':' .. tname &lt;br /&gt;
		.. '&amp;quot; class=&amp;quot;plainlinks nourlexpansion 1x&amp;quot;&amp;gt;'&lt;br /&gt;
		.. '[[:' .. ns .. ':' .. tname .. ']]&amp;amp;nbsp;('&lt;br /&gt;
	&lt;br /&gt;
	if ymd ~= '' then&lt;br /&gt;
		local dmy = frame:expandTemplate{ title='date', args={ymd, 'dmy'} } &lt;br /&gt;
		res = res .. '[[' .. fullpagename .. '#' .. fname &lt;br /&gt;
			.. '|' .. dmy .. ']]) ('&lt;br /&gt;
	end&lt;br /&gt;
	res = res .. fullurllink(fname, 'action=edit', 'edit') .. sep&lt;br /&gt;
	res = res .. '[[' .. ns .. ' talk:' .. tname .. '|talk]]' .. sep&lt;br /&gt;
	res = res .. fullurllink(fname, 'action=history', 'history') .. sep&lt;br /&gt;
	if ns ~= 'Category' then&lt;br /&gt;
		res = res .. fullurllink('Special:Whatlinkshere/' &lt;br /&gt;
			.. fname, 'limit=5000', 'links') .. sep&lt;br /&gt;
		res = res .. fullurllink('Special:Whatlinkshere/' &lt;br /&gt;
			.. fname, 'limit=5000&amp;amp;hidelinks=1', 'transclusions') .. sep&lt;br /&gt;
	end&lt;br /&gt;
	res = res .. fullurllink('Special:Log', 'page=' &lt;br /&gt;
		.. urlencode(fname), 'logs') .. sep&lt;br /&gt;
	res = res .. '[[Special:PrefixIndex/' .. fname .. '/|subpages]]'&lt;br /&gt;
	res = res .. '&amp;lt;span class=&amp;quot;sysop-show&amp;quot;&amp;gt;' .. sep .. fullurllink(fname, 'action=delete&amp;amp;wpReason=' &lt;br /&gt;
		.. urlencode('[[' .. fullpagename .. '#' .. fname .. ']]'), 'delete') .. '&amp;lt;/span&amp;gt;'&lt;br /&gt;
	res = res .. ')&amp;lt;/span&amp;gt;'&lt;br /&gt;
	&lt;br /&gt;
	return res&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>wiki&gt;Pppery</name></author>
	</entry>
</feed>