<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wikiminati.blogmanju.com/wikim/index.php?action=history&amp;feed=atom&amp;title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB%3AIs_article</id>
	<title>モジュール:Is article - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wikiminati.blogmanju.com/wikim/index.php?action=history&amp;feed=atom&amp;title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB%3AIs_article"/>
	<link rel="alternate" type="text/html" href="https://wikiminati.blogmanju.com/wikim/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Is_article&amp;action=history"/>
	<updated>2026-05-17T17:08:13Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.39.2</generator>
	<entry>
		<id>https://wikiminati.blogmanju.com/wikim/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Is_article&amp;diff=1668&amp;oldid=prev</id>
		<title>WikiminatiWebMaster: 1版 をインポートしました: Anime and manga articles using obsolete and incorrect infobox parameters</title>
		<link rel="alternate" type="text/html" href="https://wikiminati.blogmanju.com/wikim/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Is_article&amp;diff=1668&amp;oldid=prev"/>
		<updated>2023-03-20T11:40:38Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました: Anime and manga articles using obsolete and incorrect infobox parameters&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&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;ja&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;2023年3月20日 (月) 20:40時点における版&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key xs666319_wikiminati:diff::1.12:old-1667:rev-1668 --&gt;
&lt;/table&gt;</summary>
		<author><name>WikiminatiWebMaster</name></author>
	</entry>
	<entry>
		<id>https://wikiminati.blogmanju.com/wikim/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Is_article&amp;diff=1667&amp;oldid=prev</id>
		<title>Anime and manga articles using obsolete and incorrect infobox parameters&gt;Gonnym: this should work without the loop</title>
		<link rel="alternate" type="text/html" href="https://wikiminati.blogmanju.com/wikim/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Is_article&amp;diff=1667&amp;oldid=prev"/>
		<updated>2022-07-10T21:25:20Z</updated>

		<summary type="html">&lt;p&gt;this should work without the loop&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
local disambiguationTemplates = {&lt;br /&gt;
	&amp;quot;[Dd]isambiguation&amp;quot;,&lt;br /&gt;
	&amp;quot;[Dd]isambig&amp;quot;,&lt;br /&gt;
	&amp;quot;[Dd]isamb&amp;quot;,&lt;br /&gt;
	&amp;quot;[Dd]ab&amp;quot;,&lt;br /&gt;
	&amp;quot;[Ss]urname&amp;quot;,&lt;br /&gt;
	&amp;quot;[Tt]emplate disambiguation&amp;quot;,&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
	local getArgs = require(&amp;quot;Module:Arguments&amp;quot;).getArgs&lt;br /&gt;
	local args = getArgs(frame)&lt;br /&gt;
	local page = mw.title.new(args[1], 0)&lt;br /&gt;
	&lt;br /&gt;
	if not page then&lt;br /&gt;
		return &amp;quot;badtitle&amp;quot;&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	if not page.exists then&lt;br /&gt;
		return &amp;quot;empty&amp;quot;&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	if page.isRedirect then&lt;br /&gt;
		return &amp;quot;redirect&amp;quot;&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local content = page:getContent()&lt;br /&gt;
	if content then&lt;br /&gt;
		content = string.gsub(content, &amp;quot;noinclude&amp;quot;, &amp;quot;&amp;lt;!-- noinclude --&amp;gt;&amp;quot;)&lt;br /&gt;
		for _, name in ipairs(disambiguationTemplates) do&lt;br /&gt;
			if content:match(&amp;quot;{{%s?&amp;quot; .. name .. &amp;quot;%s?}}&amp;quot;) and not content:match(&amp;quot;{{{%s?&amp;quot; .. name .. &amp;quot;%s?}}}&amp;quot;) then -- to disable false positives in parameter names {{{disamb}}}&lt;br /&gt;
				return &amp;quot;dab&amp;quot;&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return &amp;quot;article&amp;quot;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Anime and manga articles using obsolete and incorrect infobox parameters&gt;Gonnym</name></author>
	</entry>
</feed>