<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.pttlink.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.pttlink.org/index.php?action=history&amp;feed=atom&amp;title=Module%3ATfd_links"/>
	<link rel="alternate" type="text/html" href="https://wiki.pttlink.org/index.php?title=Module:Tfd_links&amp;action=history"/>
	<updated>2026-05-04T18:42:46Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.5</generator>
	<entry>
		<id>https://wiki.pttlink.org/index.php?title=Module:Tfd_links&amp;diff=7301&amp;oldid=prev</id>
		<title>Kg7qin: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://wiki.pttlink.org/index.php?title=Module:Tfd_links&amp;diff=7301&amp;oldid=prev"/>
		<updated>2022-01-21T18:01:04Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left diff-editfont-monospace&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 18:01, 21 January 2022&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key mediawiki:diff::1.12:old-7300:rev-7301 --&gt;
&lt;/table&gt;</summary>
		<author><name>Kg7qin</name></author>
	</entry>
	<entry>
		<id>https://wiki.pttlink.org/index.php?title=Module:Tfd_links&amp;diff=7300&amp;oldid=prev</id>
		<title>Mediawiki&gt;Pppery: Restore support for |catfd=, which is actually used in a few places. This code runs purely in Lua so should has no effect on post-expand include size</title>
		<link rel="alternate" type="text/html" href="https://wiki.pttlink.org/index.php?title=Module:Tfd_links&amp;diff=7300&amp;oldid=prev"/>
		<updated>2021-08-23T23:49:21Z</updated>

		<summary type="html">&lt;p&gt;Restore support for |catfd=, which is actually used in a few places. This code runs purely in Lua so should has no effect on post-expand include size&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') or&lt;br /&gt;
		(args['module'] and args['module'] ~= '') and 'Module')&lt;br /&gt;
		or  'Template'&lt;br /&gt;
	local tname = mw.getContentLanguage():ucfirst(args['1'])&lt;br /&gt;
	local fname = ns .. ':' .. tname&lt;br /&gt;
	local fullpagename = 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;
	.. '[[' .. ns .. ' talk:' .. tname .. '|talk]]' .. sep&lt;br /&gt;
	.. fullurllink(fname, 'action=history', 'history') .. sep&lt;br /&gt;
	.. fullurllink('Special:Whatlinkshere/' .. fname, 'limit=5000&amp;amp;hidelinks=1&amp;amp;hideredirs=1', 'transclusions') .. sep&lt;br /&gt;
	.. fullurllink('Special:Log', 'page=' .. urlencode(fname), 'logs') .. sep&lt;br /&gt;
	.. '[[Special:PrefixIndex/' .. fname .. '/|subpages]]&amp;lt;span class=&amp;quot;sysop-show&amp;quot;&amp;gt;' .. sep &lt;br /&gt;
	.. fullurllink(fname, 'action=delete&amp;amp;wpReason=' .. urlencode('[[' .. fullpagename .. '#' .. fname .. ']]'), 'delete') .. '&amp;lt;/span&amp;gt;)&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>Mediawiki&gt;Pppery</name></author>
	</entry>
</feed>