<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh-Hans-CN">
	<id>https://wiki.statsape.com/index.php?action=history&amp;feed=atom&amp;title=%E6%A8%A1%E5%9D%97%3AAbout</id>
	<title>模块:About - 版本历史</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.statsape.com/index.php?action=history&amp;feed=atom&amp;title=%E6%A8%A1%E5%9D%97%3AAbout"/>
	<link rel="alternate" type="text/html" href="https://wiki.statsape.com/index.php?title=%E6%A8%A1%E5%9D%97:About&amp;action=history"/>
	<updated>2026-04-03T21:52:49Z</updated>
	<subtitle>本wiki上该页面的版本历史</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://wiki.statsape.com/index.php?title=%E6%A8%A1%E5%9D%97:About&amp;diff=1551&amp;oldid=prev</id>
		<title>Zeroclanzhang：​创建页面，内容为“local mArguments --initialize lazily local mHatnote = require(&#039;Module:Hatnote&#039;) local mHatList = require(&#039;Module:Hatnote list&#039;) local libraryUtil = require(&#039;libraryUtil&#039;) local checkType = libraryUtil.checkType local p = {}  function p.about (frame) 	-- A passthrough that gets args from the frame and all 	mArguments = require(&#039;Module:Arguments&#039;) 	args = mArguments.getArgs(frame) 	return p._about(args) end   function p._about (args, options) 	-- Produces &quot;about&quot;…”</title>
		<link rel="alternate" type="text/html" href="https://wiki.statsape.com/index.php?title=%E6%A8%A1%E5%9D%97:About&amp;diff=1551&amp;oldid=prev"/>
		<updated>2023-08-09T16:30:57Z</updated>

		<summary type="html">&lt;p&gt;创建页面，内容为“local mArguments --initialize lazily local mHatnote = require(&amp;#039;Module:Hatnote&amp;#039;) local mHatList = require(&amp;#039;Module:Hatnote list&amp;#039;) local libraryUtil = require(&amp;#039;libraryUtil&amp;#039;) local checkType = libraryUtil.checkType local p = {}  function p.about (frame) 	-- A passthrough that gets args from the frame and all 	mArguments = require(&amp;#039;Module:Arguments&amp;#039;) 	args = mArguments.getArgs(frame) 	return p._about(args) end   function p._about (args, options) 	-- Produces &amp;quot;about&amp;quot;…”&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新页面&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local mArguments --initialize lazily&lt;br /&gt;
local mHatnote = require(&amp;#039;Module:Hatnote&amp;#039;)&lt;br /&gt;
local mHatList = require(&amp;#039;Module:Hatnote list&amp;#039;)&lt;br /&gt;
local libraryUtil = require(&amp;#039;libraryUtil&amp;#039;)&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(&amp;#039;Module:Arguments&amp;#039;)&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(&amp;#039;_about&amp;#039;, 1, args, &amp;#039;table&amp;#039;, true)&lt;br /&gt;
	args = args or {}&lt;br /&gt;
	checkType(&amp;#039;_about&amp;#039;, 2, options, &amp;#039;table&amp;#039;, true)&lt;br /&gt;
	options = options or {}&lt;br /&gt;
	local defaultOptions = {&lt;br /&gt;
		aboutForm = &amp;#039;This %s is about %s. &amp;#039;,&lt;br /&gt;
		PageType = require(&amp;#039;Module:Pagetype&amp;#039;).main(),&lt;br /&gt;
		namespace = mw.title.getCurrentTitle().namespace,&lt;br /&gt;
		otherText = nil, --included for complete list&lt;br /&gt;
		sectionString = &amp;#039;section&amp;#039;&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 = &amp;#039;&amp;#039;&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;
		icon = &amp;#039;WikimediaUI-ArticleDisambiguation-ltr.svg&amp;#039;&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>Zeroclanzhang</name></author>
	</entry>
</feed>