<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="pl">
	<id>https://sunnyray.catk.it/w/index.php?action=history&amp;feed=atom&amp;title=Modu%C5%82%3AAbout</id>
	<title>Moduł:About - Historia wersji</title>
	<link rel="self" type="application/atom+xml" href="https://sunnyray.catk.it/w/index.php?action=history&amp;feed=atom&amp;title=Modu%C5%82%3AAbout"/>
	<link rel="alternate" type="text/html" href="https://sunnyray.catk.it/w/index.php?title=Modu%C5%82:About&amp;action=history"/>
	<updated>2026-04-13T01:02:38Z</updated>
	<subtitle>Historia wersji tej strony wiki</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>https://sunnyray.catk.it/w/index.php?title=Modu%C5%82:About&amp;diff=332&amp;oldid=prev</id>
		<title>Catkitty: 1 wersja</title>
		<link rel="alternate" type="text/html" href="https://sunnyray.catk.it/w/index.php?title=Modu%C5%82:About&amp;diff=332&amp;oldid=prev"/>
		<updated>2020-06-09T14:30:20Z</updated>

		<summary type="html">&lt;p&gt;1 wersja&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;pl&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← poprzednia wersja&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;Wersja z 14:30, 9 cze 2020&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;pl&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(Brak różnic)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Catkitty</name></author>
		
	</entry>
	<entry>
		<id>https://sunnyray.catk.it/w/index.php?title=Modu%C5%82:About&amp;diff=331&amp;oldid=prev</id>
		<title>en&gt;Galobtter: add selfref and &quot;text=&quot; options; use pagetype module for detecting namespace</title>
		<link rel="alternate" type="text/html" href="https://sunnyray.catk.it/w/index.php?title=Modu%C5%82:About&amp;diff=331&amp;oldid=prev"/>
		<updated>2018-03-31T10:24:13Z</updated>

		<summary type="html">&lt;p&gt;add selfref and &amp;quot;text=&amp;quot; options; use pagetype module for detecting namespace&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nowa strona&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local mArguments --initialize lazily&lt;br /&gt;
local mHatnote = require('Module:Hatnote')&lt;br /&gt;
local mHatList = require('Module:Hatnote list')&lt;br /&gt;
local libraryUtil = require('libraryUtil')&lt;br /&gt;
local checkType = libraryUtil.checkType&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.about (frame)&lt;br /&gt;
	-- A passthrough that gets args from the frame and all&lt;br /&gt;
	mArguments = require('Module:Arguments')&lt;br /&gt;
	args = mArguments.getArgs(frame)&lt;br /&gt;
	return p._about(args)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function p._about (args, options)&lt;br /&gt;
	-- Produces &amp;quot;about&amp;quot; hatnote.&lt;br /&gt;
&lt;br /&gt;
	-- Type checks and defaults&lt;br /&gt;
	checkType('_about', 1, args, 'table', true)&lt;br /&gt;
	args = args or {}&lt;br /&gt;
	checkType('_about', 2, options, 'table', true)&lt;br /&gt;
	options = options or {}&lt;br /&gt;
	local defaultOptions = {&lt;br /&gt;
		aboutForm = 'This %s is about %s. ',&lt;br /&gt;
		PageType = require('Module:Pagetype').main(),&lt;br /&gt;
		namespace = mw.title.getCurrentTitle().namespace,&lt;br /&gt;
		otherText = nil, --included for complete list&lt;br /&gt;
		sectionString = 'section'&lt;br /&gt;
	}&lt;br /&gt;
	for k, v in pairs(defaultOptions) do&lt;br /&gt;
		if options[k] == nil then options[k] = v end&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	-- Set initial &amp;quot;about&amp;quot; string&lt;br /&gt;
	local pageType = (args.section and options.sectionString) or options.PageType&lt;br /&gt;
	local about = ''&lt;br /&gt;
	if args[1] then&lt;br /&gt;
		about = string.format(options.aboutForm, pageType, args[1])&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	--Allow passing through certain options&lt;br /&gt;
	local fsOptions = {&lt;br /&gt;
		otherText = options.otherText,&lt;br /&gt;
		extratext = args.text&lt;br /&gt;
	}&lt;br /&gt;
	local hnOptions = {&lt;br /&gt;
		selfref = args.selfref&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	-- Set for-see list&lt;br /&gt;
	local forSee = mHatList._forSee(args, 2, fsOptions)&lt;br /&gt;
&lt;br /&gt;
	-- Concatenate and return&lt;br /&gt;
	return mHatnote._hatnote(about .. forSee, hnOptions)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>en&gt;Galobtter</name></author>
		
	</entry>
</feed>