<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="hu">
	<id>https://wiki.trashforum.org/index.php?action=history&amp;feed=atom&amp;title=Modul%3AAbout_other_people</id>
	<title>Modul:About other people - Laptörténet</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.trashforum.org/index.php?action=history&amp;feed=atom&amp;title=Modul%3AAbout_other_people"/>
	<link rel="alternate" type="text/html" href="https://wiki.trashforum.org/index.php?title=Modul:About_other_people&amp;action=history"/>
	<updated>2026-04-13T22:26:17Z</updated>
	<subtitle>Az oldal laptörténete a wikiben</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://wiki.trashforum.org/index.php?title=Modul:About_other_people&amp;diff=4761&amp;oldid=prev</id>
		<title>BarathéGábor: 1 változat importálva</title>
		<link rel="alternate" type="text/html" href="https://wiki.trashforum.org/index.php?title=Modul:About_other_people&amp;diff=4761&amp;oldid=prev"/>
		<updated>2025-01-21T19:52:08Z</updated>

		<summary type="html">&lt;p&gt;1 változat importálva&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;hu&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Régebbi változat&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;A lap 2025. január 21., 21:52-kori változata&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;hu&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(Nincs különbség)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>BarathéGábor</name></author>
	</entry>
	<entry>
		<id>https://wiki.trashforum.org/index.php?title=Modul:About_other_people&amp;diff=4760&amp;oldid=prev</id>
		<title>w&gt;MusikBot II: Protected &quot;Module:About other people&quot;: High-risk template or module: 374 transclusions (more info) ([Edit=Require autoconfirmed or confirmed access] (indefinite))</title>
		<link rel="alternate" type="text/html" href="https://wiki.trashforum.org/index.php?title=Modul:About_other_people&amp;diff=4760&amp;oldid=prev"/>
		<updated>2021-09-30T22:56:45Z</updated>

		<summary type="html">&lt;p&gt;Protected &amp;quot;&lt;a href=&quot;/Modul:About_other_people&quot; title=&quot;Modul:About other people&quot;&gt;Module:About other people&lt;/a&gt;&amp;quot;: &lt;a href=&quot;https://en.wikipedia.org/wiki/High-risk_templates&quot; class=&quot;extiw&quot; title=&quot;wikipedia:High-risk templates&quot;&gt;High-risk template or module&lt;/a&gt;: 374 transclusions (&lt;a href=&quot;/index.php?title=Szerkeszt%C5%91:MusikBot_II/TemplateProtector&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Szerkesztő:MusikBot II/TemplateProtector (a lap nem létezik)&quot;&gt;more info&lt;/a&gt;) ([Edit=Require autoconfirmed or confirmed access] (indefinite))&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Új lap&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local mAbout = require(&amp;#039;Module:About&amp;#039;)&lt;br /&gt;
local mHatnote = require(&amp;#039;Module:Hatnote&amp;#039;)&lt;br /&gt;
local mArguments = require(&amp;#039;Module:Arguments&amp;#039;)&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
local s = { --strings&lt;br /&gt;
	emptySubject = &amp;#039;no page subject specified&amp;#039;,&lt;br /&gt;
	templateName = &amp;#039;Template:About other people&amp;#039;,&lt;br /&gt;
	andKeyword = &amp;#039;and&amp;#039;,&lt;br /&gt;
	otherPeopleNamedForm = &amp;#039;other people %s %s&amp;#039;,&lt;br /&gt;
	named = &amp;#039;named&amp;#039;,&lt;br /&gt;
	otherPeopleSame = &amp;#039;other people with the same name&amp;#039;,&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function p.aboutOtherPeople (frame)&lt;br /&gt;
	local args = mArguments.getArgs(frame)&lt;br /&gt;
	--if not args[1], a different template would be better!&lt;br /&gt;
	if not args[1] then&lt;br /&gt;
		return mHatnote.makeWikitextError(&lt;br /&gt;
			s.emptySubject,&lt;br /&gt;
			s.templateName,&lt;br /&gt;
			args.category&lt;br /&gt;
		)&lt;br /&gt;
	end&lt;br /&gt;
	--get pages from arguments if applicable, with attempted default to args[2]&lt;br /&gt;
	local pages = {}&lt;br /&gt;
	for k, v in pairs(args) do&lt;br /&gt;
		if type(k) == &amp;#039;number&amp;#039; and k &amp;gt; 2 then&lt;br /&gt;
			if pages[1] then table.insert(pages, s.andKeyword) end&lt;br /&gt;
			table.insert(pages, v)&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	if #pages == 0 then pages = {args[2] and mHatnote.disambiguate(args[2])} end&lt;br /&gt;
	--translate args into args for _about(). [2] is nil to force otherText.&lt;br /&gt;
	local returnArgs = {text = args.text, args[1], nil, unpack(pages)}&lt;br /&gt;
	local options = {&lt;br /&gt;
		otherText = (args[2] and&lt;br /&gt;
			string.format(&lt;br /&gt;
					s.otherPeopleNamedForm,&lt;br /&gt;
					args.named or s.named,&lt;br /&gt;
					args[2]&lt;br /&gt;
				)&lt;br /&gt;
			) or s.otherPeopleSame&lt;br /&gt;
	}&lt;br /&gt;
	return mAbout._about(returnArgs, options)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>w&gt;MusikBot II</name></author>
	</entry>
</feed>