<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
	<id>https://techshareroom.com/techshareroom_wiki/index.php?action=history&amp;feed=atom&amp;title=M%C3%B3dulo%3AWikibase</id>
	<title>Módulo:Wikibase - Historial de revisiones</title>
	<link rel="self" type="application/atom+xml" href="https://techshareroom.com/techshareroom_wiki/index.php?action=history&amp;feed=atom&amp;title=M%C3%B3dulo%3AWikibase"/>
	<link rel="alternate" type="text/html" href="https://techshareroom.com/techshareroom_wiki/index.php?title=M%C3%B3dulo:Wikibase&amp;action=history"/>
	<updated>2026-05-17T00:14:00Z</updated>
	<subtitle>Historial de revisiones de esta página en la wiki</subtitle>
	<generator>MediaWiki 1.47.0-alpha</generator>
	<entry>
		<id>https://techshareroom.com/techshareroom_wiki/index.php?title=M%C3%B3dulo:Wikibase&amp;diff=550&amp;oldid=prev</id>
		<title>Adgellida: 1 revisión importada</title>
		<link rel="alternate" type="text/html" href="https://techshareroom.com/techshareroom_wiki/index.php?title=M%C3%B3dulo:Wikibase&amp;diff=550&amp;oldid=prev"/>
		<updated>2021-08-25T20:59:41Z</updated>

		<summary type="html">&lt;p&gt;1 revisión importada&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw-interface=&quot;&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;es&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Revisión anterior&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revisión del 22:59 25 ago 2021&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot; class=&quot;diff-notice&quot; lang=&quot;es&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(Sin diferencias)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key techshareroom_wiki:diff:1.41:old-549:rev-550 --&gt;
&lt;/table&gt;</summary>
		<author><name>Adgellida</name></author>
	</entry>
	<entry>
		<id>https://techshareroom.com/techshareroom_wiki/index.php?title=M%C3%B3dulo:Wikibase&amp;diff=549&amp;oldid=prev</id>
		<title>Plantilla&gt;Ezarate: Ezarate trasladó la página Módulo:Zona de pruebas/Julián L. Páez/Wikibase a Módulo:Wikibase sin dejar una redirección: optimizando</title>
		<link rel="alternate" type="text/html" href="https://techshareroom.com/techshareroom_wiki/index.php?title=M%C3%B3dulo:Wikibase&amp;diff=549&amp;oldid=prev"/>
		<updated>2021-03-24T00:21:58Z</updated>

		<summary type="html">&lt;p&gt;Ezarate trasladó la página &lt;a href=&quot;/techshareroom_wiki/index.php?title=M%C3%B3dulo:Zona_de_pruebas/Juli%C3%A1n_L._P%C3%A1ez/Wikibase&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Módulo:Zona de pruebas/Julián L. Páez/Wikibase (la página no existe)&quot;&gt;Módulo:Zona de pruebas/Julián L. Páez/Wikibase&lt;/a&gt; a &lt;a href=&quot;/wiki/M%C3%B3dulo:Wikibase&quot; title=&quot;Módulo:Wikibase&quot;&gt;Módulo:Wikibase&lt;/a&gt; sin dejar una redirección: optimizando&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;-- Module:Wikibase&lt;br /&gt;
local p = {}&lt;br /&gt;
 &lt;br /&gt;
-- Devuelve la ID del ítem, el nombre o el enlace de la página en la wiki local.&lt;br /&gt;
function p.id(frame)&lt;br /&gt;
        if not mw.wikibase then&lt;br /&gt;
           return &amp;quot;módulo wikibase no encontrado&amp;quot;&lt;br /&gt;
        end&lt;br /&gt;
 &lt;br /&gt;
        return mw.wikibase.getEntityIdForCurrentPage() or &amp;#039;&amp;#039;&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
-- Devuelve la etiqueta de un ítem dado.&lt;br /&gt;
function p.etiqueta(frame)&lt;br /&gt;
        return mw.wikibase.getLabel(frame.args[1])&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
-- Devuelve la página local de un ítem dado.&lt;br /&gt;
function p.enlace(frame)&lt;br /&gt;
        if frame.args[1] == nil then&lt;br /&gt;
            id = mw.wikibase.getEntityIdForCurrentPage()&lt;br /&gt;
            if not id then return nil end&lt;br /&gt;
        else&lt;br /&gt;
            id = frame.args[1]&lt;br /&gt;
        end&lt;br /&gt;
 &lt;br /&gt;
        return mw.wikibase.getSitelink( id )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
-- Devuelve la descripción de un ítem dado.&lt;br /&gt;
function p.descripcion(frame)&lt;br /&gt;
		return mw.wikibase.getDescription(frame.args[1])&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Plantilla&gt;Ezarate</name></author>
	</entry>
</feed>