<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
		<id>http://www.jurliyuuri.info/w/index.php?action=history&amp;feed=atom&amp;title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB%3AUses_Wikidata</id>
		<title>モジュール:Uses Wikidata - 版の履歴</title>
		<link rel="self" type="application/atom+xml" href="http://www.jurliyuuri.info/w/index.php?action=history&amp;feed=atom&amp;title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB%3AUses_Wikidata"/>
		<link rel="alternate" type="text/html" href="http://www.jurliyuuri.info/w/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Uses_Wikidata&amp;action=history"/>
		<updated>2026-04-29T07:19:39Z</updated>
		<subtitle>このウィキのこのページに関する変更履歴</subtitle>
		<generator>MediaWiki 1.29.0</generator>

	<entry>
		<id>http://www.jurliyuuri.info/w/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Uses_Wikidata&amp;diff=373&amp;oldid=prev</id>
		<title>Admin: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="http://www.jurliyuuri.info/w/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Uses_Wikidata&amp;diff=373&amp;oldid=prev"/>
				<updated>2017-08-26T08:07:08Z</updated>
		
		<summary type="html">&lt;p&gt;1版 をインポートしました&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style='vertical-align: top;' lang='ja'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;2017年8月26日 (土) 08:07時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;' lang='ja'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>http://www.jurliyuuri.info/w/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Uses_Wikidata&amp;diff=372&amp;oldid=prev</id>
		<title>Zyxw: Trim any leading or trailing spaces from unnamed parameters passed by Template:Uses Wikidata that would prevent template/module from working as expected. Tested with template &amp; module /sandbox and Template:Uses Wikidata/testcases.</title>
		<link rel="alternate" type="text/html" href="http://www.jurliyuuri.info/w/index.php?title=%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB:Uses_Wikidata&amp;diff=372&amp;oldid=prev"/>
				<updated>2017-04-23T01:20:54Z</updated>
		
		<summary type="html">&lt;p&gt;Trim any leading or trailing spaces from unnamed parameters passed by &lt;a href=&quot;/wiki/%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88:Uses_Wikidata&quot; title=&quot;テンプレート:Uses Wikidata&quot;&gt;Template:Uses Wikidata&lt;/a&gt; that would prevent template/module from working as expected. Tested with template &amp;amp; module /sandbox and &lt;a href=&quot;/w/index.php?title=%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88:Uses_Wikidata/testcases&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;テンプレート:Uses Wikidata/testcases (存在しないページ)&quot;&gt;Template:Uses Wikidata/testcases&lt;/a&gt;.&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;
function p.usesProperty(frame)&lt;br /&gt;
	local parent = frame.getParent(frame)&lt;br /&gt;
	local result = ''&lt;br /&gt;
	local ii = 1&lt;br /&gt;
	while true do&lt;br /&gt;
		local p_num = mw.text.trim(parent.args[ii] or '')&lt;br /&gt;
		if p_num ~= '' then&lt;br /&gt;
			local label = mw.wikibase.label(p_num) or &amp;quot;NO LABEL&amp;quot;&lt;br /&gt;
			result = result .. &amp;quot;&amp;lt;li&amp;gt;&amp;lt;b&amp;gt;&amp;lt;i&amp;gt;[[d:Property:&amp;quot; .. p_num .. &amp;quot;|&amp;quot; .. label .. &amp;quot; &amp;lt;small&amp;gt;(&amp;quot; .. string.upper(p_num) .. &amp;quot;)&amp;lt;/small&amp;gt;]]&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt; (see [[d:Property talk:&amp;quot; .. p_num .. &amp;quot;|talk]]; [[d:Special:WhatLinksHere/Property:&amp;quot; .. p_num .. &amp;quot;|uses]])&amp;lt;/li&amp;gt;&amp;quot;&lt;br /&gt;
			ii = ii + 1&lt;br /&gt;
		else break&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return result&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Zyxw</name></author>	</entry>

	</feed>