<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.filipefonseca.pt/index.php?action=history&amp;feed=atom&amp;title=Module%3AAbout</id>
	<title>Module:About - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.filipefonseca.pt/index.php?action=history&amp;feed=atom&amp;title=Module%3AAbout"/>
	<link rel="alternate" type="text/html" href="http://wiki.filipefonseca.pt/index.php?title=Module:About&amp;action=history"/>
	<updated>2026-04-18T21:23:13Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>http://wiki.filipefonseca.pt/index.php?title=Module:About&amp;diff=6043&amp;oldid=prev</id>
		<title>FilipeFonseca: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="http://wiki.filipefonseca.pt/index.php?title=Module:About&amp;diff=6043&amp;oldid=prev"/>
		<updated>2021-07-10T08:27:49Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&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;
		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>FilipeFonseca</name></author>
	</entry>
</feed>