<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.cern.ch/index.php?action=history&amp;feed=atom&amp;title=Module%3AWikidataCheck</id>
	<title>Module:WikidataCheck - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.cern.ch/index.php?action=history&amp;feed=atom&amp;title=Module%3AWikidataCheck"/>
	<link rel="alternate" type="text/html" href="https://wiki.cern.ch/index.php?title=Module:WikidataCheck&amp;action=history"/>
	<updated>2026-04-04T09:46:07Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://wiki.cern.ch/index.php?title=Module:WikidataCheck&amp;diff=7898&amp;oldid=prev</id>
		<title>Vigen: 1 revision imported from :wikipedia:Module:WikidataCheck</title>
		<link rel="alternate" type="text/html" href="https://wiki.cern.ch/index.php?title=Module:WikidataCheck&amp;diff=7898&amp;oldid=prev"/>
		<updated>2026-03-19T09:10:06Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported from &lt;a href=&quot;https://en.wikipedia.org/wiki/Module:WikidataCheck&quot; class=&quot;extiw&quot; title=&quot;wikipedia:Module:WikidataCheck&quot;&gt;wikipedia:Module:WikidataCheck&lt;/a&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 09:10, 19 March 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Vigen</name></author>
	</entry>
	<entry>
		<id>https://wiki.cern.ch/index.php?title=Module:WikidataCheck&amp;diff=7897&amp;oldid=prev</id>
		<title>wikipedia&gt;Zyxw: adding bug fix for prior edit request, see discussion at Template talk:WikidataCheck#Checking sourced properties only?</title>
		<link rel="alternate" type="text/html" href="https://wiki.cern.ch/index.php?title=Module:WikidataCheck&amp;diff=7897&amp;oldid=prev"/>
		<updated>2023-11-30T11:27:19Z</updated>

		<summary type="html">&lt;p&gt;adding bug fix for prior edit request, see discussion at &lt;a href=&quot;/index.php?title=Template_talk:WikidataCheck&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Template talk:WikidataCheck (page does not exist)&quot;&gt;Template talk:WikidataCheck#Checking sourced properties only?&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.wikidatacheck(frame)&lt;br /&gt;
	local pframe = frame:getParent()&lt;br /&gt;
	local config = frame.args -- the arguments passed BY the template, in the wikitext of the template itself&lt;br /&gt;
	local args = pframe.args -- the arguments passed TO the template, in the wikitext that transcludes the template&lt;br /&gt;
&lt;br /&gt;
	local property = config.property&lt;br /&gt;
	local value = config.value or &amp;quot;&amp;quot;&lt;br /&gt;
	local catbase = config.category&lt;br /&gt;
	local namespaces = config.namespaces&lt;br /&gt;
	local nocatsame = config.nocatsame or &amp;quot;&amp;quot;&lt;br /&gt;
	local ignorecase = config.ignorecase or &amp;quot;&amp;quot;&lt;br /&gt;
	local qid = config.qid or &amp;quot;&amp;quot;&lt;br /&gt;
	local onlysourced = (config.onlysourced == &amp;#039;yes&amp;#039;) or false&lt;br /&gt;
	local ok = false -- one-way flag to check if we&amp;#039;re in a good namespace&lt;br /&gt;
	local ns = mw.title.getCurrentTitle().namespace&lt;br /&gt;
	&lt;br /&gt;
	for v in mw.text.gsplit( namespaces, &amp;quot;,&amp;quot;, true) do&lt;br /&gt;
		if tonumber(v) == ns then&lt;br /&gt;
			ok = true&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	if not ok then -- not in one of the approved namespaces&lt;br /&gt;
		return &amp;quot;&amp;quot;&lt;br /&gt;
	end&lt;br /&gt;
	local entity&lt;br /&gt;
	if qid == &amp;quot;&amp;quot; then&lt;br /&gt;
		entity = mw.wikibase.getEntityObject()&lt;br /&gt;
	else&lt;br /&gt;
		entity = mw.wikibase.getEntityObject(qid)&lt;br /&gt;
	end&lt;br /&gt;
	if not entity then -- no Wikidata item&lt;br /&gt;
		return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; not in Wikidata]]&amp;quot;&lt;br /&gt;
	end&lt;br /&gt;
	if value == &amp;quot;&amp;quot; then&lt;br /&gt;
		return nil -- Using Wikidata&lt;br /&gt;
	end&lt;br /&gt;
	local claims = entity.claims or {}&lt;br /&gt;
	local hasProp = claims[property]&lt;br /&gt;
	if not hasProp then -- no claim of that property&lt;br /&gt;
		return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; not in Wikidata]]&amp;quot; -- bad. Bot needs to add the property&lt;br /&gt;
	end&lt;br /&gt;
	if ignorecase ~= &amp;quot;&amp;quot; then&lt;br /&gt;
		value = string.lower( value )&lt;br /&gt;
	end&lt;br /&gt;
	for i, v in ipairs(hasProp) do -- Now we try to iterate over all possible values?&lt;br /&gt;
		propValue = (v.mainsnak.datavalue or {}).value&lt;br /&gt;
		if ignorecase ~= &amp;quot;&amp;quot; then&lt;br /&gt;
			propValue = string.lower( propValue )&lt;br /&gt;
		end&lt;br /&gt;
		local sourced = false -- check for external refs a la Module:WikidataIB onlysourced&lt;br /&gt;
		if v.references then&lt;br /&gt;
			for j, vr in ipairs(v.references) do&lt;br /&gt;
				local ref = mw.wikibase.renderSnaks(vr.snaks)&lt;br /&gt;
				if not ref:find(&amp;quot;Wiki&amp;quot;) then&lt;br /&gt;
					sourced = true&lt;br /&gt;
					break&lt;br /&gt;
				end&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
		if propValue == value and (not onlysourced or sourced) then&lt;br /&gt;
			if nocatsame == &amp;quot;&amp;quot; then&lt;br /&gt;
				return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; same as Wikidata]]&amp;quot; -- yay!&lt;br /&gt;
			else&lt;br /&gt;
				return nil -- if nocatsame, the &amp;quot;same as&amp;quot; category is not added&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return &amp;quot;[[Category:&amp;quot; .. catbase .. &amp;quot; different from Wikidata]]&amp;quot; -- needs human review :(&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>wikipedia&gt;Zyxw</name></author>
	</entry>
</feed>