<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="yi">
	<id>https://yi.hamichlol.org.il/w/index.php?action=history&amp;feed=atom&amp;title=%D7%99%D7%97%D7%99%D7%93%D7%94%3AWikibase</id>
	<title>יחידה:Wikibase - ווערסיע היסטאריע</title>
	<link rel="self" type="application/atom+xml" href="https://yi.hamichlol.org.il/w/index.php?action=history&amp;feed=atom&amp;title=%D7%99%D7%97%D7%99%D7%93%D7%94%3AWikibase"/>
	<link rel="alternate" type="text/html" href="https://yi.hamichlol.org.il/w/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:Wikibase&amp;action=history"/>
	<updated>2026-04-22T19:48:16Z</updated>
	<subtitle>ווערסיע היסטאריע פאר דעם בלאט אויפן וויקי</subtitle>
	<generator>MediaWiki 1.39.4</generator>
	<entry>
		<id>https://yi.hamichlol.org.il/w/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:Wikibase&amp;diff=209729&amp;oldid=prev</id>
		<title>תנא קמא: געשאַפן בלאַט מיט '---------- Module:Wikibase ---------------- local p = {}  -- Return the item ID of the item linked to the current page. function p.id(frame) 	if not mw.wikibase then 		return &quot;no mw.wikibase&quot; 	end  	entity = mw.wikibase.getEntityObject()  	if entity == nil then 		return &quot;no entity&quot; 	end  	return entity.id end 	 -- Return the label of a given data item, or of connected page -- if no argument is provided to this method. function p.label(frame) 	local label,...'</title>
		<link rel="alternate" type="text/html" href="https://yi.hamichlol.org.il/w/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:Wikibase&amp;diff=209729&amp;oldid=prev"/>
		<updated>2023-03-06T12:59:23Z</updated>

		<summary type="html">&lt;p&gt;געשאַפן בלאַט מיט &amp;#039;---------- Module:Wikibase ---------------- local p = {}  -- Return the item ID of the item linked to the current page. function p.id(frame) 	if not mw.wikibase then 		return &amp;quot;no mw.wikibase&amp;quot; 	end  	entity = mw.wikibase.getEntityObject()  	if entity == nil then 		return &amp;quot;no entity&amp;quot; 	end  	return entity.id end 	 -- Return the label of a given data item, or of connected page -- if no argument is provided to this method. function p.label(frame) 	local label,...&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;נייער בלאַט&lt;/b&gt;&lt;/p&gt;&lt;div&gt;---------- Module:Wikibase ----------------&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
-- Return the item ID of the item linked to the current page.&lt;br /&gt;
function p.id(frame)&lt;br /&gt;
	if not mw.wikibase then&lt;br /&gt;
		return &amp;quot;no mw.wikibase&amp;quot;&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	entity = mw.wikibase.getEntityObject()&lt;br /&gt;
&lt;br /&gt;
	if entity == nil then&lt;br /&gt;
		return &amp;quot;no entity&amp;quot;&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return entity.id&lt;br /&gt;
end&lt;br /&gt;
	&lt;br /&gt;
-- Return the label of a given data item, or of connected page&lt;br /&gt;
-- if no argument is provided to this method.&lt;br /&gt;
function p.label(frame)&lt;br /&gt;
	local label, lang = mw.wikibase.label( frame.args[1] )&lt;br /&gt;
	return label&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
-- Return the description of a given data item, or of connected page&lt;br /&gt;
-- if no argument is provided to this method.&lt;br /&gt;
-- The description is in localized language, i.e.:&lt;br /&gt;
-- in the Wiki's content language (on monolingual wikis) or the user's language (on multilingual wikis)&lt;br /&gt;
function p.description_localized(frame)&lt;br /&gt;
	if (frame.args[1] == nil ) or ( frame.args[1]=='') then&lt;br /&gt;
		entity = mw.wikibase.getEntity()&lt;br /&gt;
	else&lt;br /&gt;
		entity = mw.wikibase.getEntity(frame.args[1])&lt;br /&gt;
	end&lt;br /&gt;
	if not entity then return nil end&lt;br /&gt;
	&lt;br /&gt;
	local description, lang = entity:getDescriptionWithLang()&lt;br /&gt;
	if description == nil then&lt;br /&gt;
		return nil&lt;br /&gt;
	end&lt;br /&gt;
	lang = entity.descriptions[lang]&lt;br /&gt;
	lang = lang['language'] -- fix https://phabricator.wikimedia.org/T152241&lt;br /&gt;
	if ( lang == 'he') then&lt;br /&gt;
		return description&lt;br /&gt;
	else&lt;br /&gt;
		return nil&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
-- Return the description of a given data item, or of connected page&lt;br /&gt;
-- if no argument is provided to this method.&lt;br /&gt;
function p.description(frame)&lt;br /&gt;
	if (frame.args[1] == nil ) or ( frame.args[1]=='') then&lt;br /&gt;
		entity = mw.wikibase.getEntityObject()&lt;br /&gt;
		if not entity then return nil end&lt;br /&gt;
&lt;br /&gt;
		id = entity.id&lt;br /&gt;
	else&lt;br /&gt;
		id = frame.args[1]&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local description, lang = mw.wikibase.description( id )&lt;br /&gt;
	return description&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-- Return the local page about a given data item, or of connected page&lt;br /&gt;
-- if id is not specified.&lt;br /&gt;
function p.page(frame)&lt;br /&gt;
	if frame.args[1] == nil then&lt;br /&gt;
		entity = mw.wikibase.getEntityObject()&lt;br /&gt;
		if not entity then return &amp;quot;xxx&amp;quot; end&lt;br /&gt;
&lt;br /&gt;
		id = entity.id&lt;br /&gt;
	else&lt;br /&gt;
		id = frame.args[1]&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	return mw.wikibase.sitelink( id )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.resolvePropertyId(frame)&lt;br /&gt;
	return mw.wikibase.resolvePropertyId( frame.args[1] )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>תנא קמא</name></author>
	</entry>
</feed>