<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
	<id>https://www.bioeticawiki.com/w/index.php?action=history&amp;feed=atom&amp;title=M%C3%B3dulo%3AP%C3%A1ginas</id>
	<title>Módulo:Páginas - Historial de revisiones</title>
	<link rel="self" type="application/atom+xml" href="https://www.bioeticawiki.com/w/index.php?action=history&amp;feed=atom&amp;title=M%C3%B3dulo%3AP%C3%A1ginas"/>
	<link rel="alternate" type="text/html" href="https://www.bioeticawiki.com/w/index.php?title=M%C3%B3dulo:P%C3%A1ginas&amp;action=history"/>
	<updated>2026-05-05T13:47:40Z</updated>
	<subtitle>Historial de revisiones de esta página en la wiki</subtitle>
	<generator>MediaWiki 1.37.0</generator>
	<entry>
		<id>https://www.bioeticawiki.com/w/index.php?title=M%C3%B3dulo:P%C3%A1ginas&amp;diff=103448&amp;oldid=prev</id>
		<title>Fjramiro: 1 revisión importada</title>
		<link rel="alternate" type="text/html" href="https://www.bioeticawiki.com/w/index.php?title=M%C3%B3dulo:P%C3%A1ginas&amp;diff=103448&amp;oldid=prev"/>
		<updated>2019-12-28T18:41:20Z</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=&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;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 20:41 28 dic 2019&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key w_bioeticawiki:diff::1.12:old-103447:rev-103448 --&gt;
&lt;/table&gt;</summary>
		<author><name>Fjramiro</name></author>
	</entry>
	<entry>
		<id>https://www.bioeticawiki.com/w/index.php?title=M%C3%B3dulo:P%C3%A1ginas&amp;diff=103447&amp;oldid=prev</id>
		<title>W&gt;Agabi10: Añadido alias página</title>
		<link rel="alternate" type="text/html" href="https://www.bioeticawiki.com/w/index.php?title=M%C3%B3dulo:P%C3%A1ginas&amp;diff=103447&amp;oldid=prev"/>
		<updated>2015-12-14T17:38:26Z</updated>

		<summary type="html">&lt;p&gt;Añadido alias página&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local paginas = {}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-- Módulos y funciones externos&lt;br /&gt;
local obtenerArgumentos = require('Módulo:Argumentos').obtenerArgumentos&lt;br /&gt;
local enTabla           = require('Módulo:Tablas').en&lt;br /&gt;
&lt;br /&gt;
-- Constantes&lt;br /&gt;
-- Ver Módulo:Citas/Configuración		citation_config.uncategorized_namespaces.&lt;br /&gt;
-- Espacios de nombres para los cuales no se categorizan automáticamente sus artículos&lt;br /&gt;
paginas.espaciosNoCategorizables = { 'Usuario', 'Usuaria', 'Discusión', 'Usuario_discusión', 'Usuario_Discusión','Usuaria_Discusión', 'Usuaria_discusión', 'Wikipedia_discusión', 'Archivo_discusión', &lt;br /&gt;
	'Plantilla_discusión',	'Ayuda_discusión', 'Categoría_discusión', 'Portal_Discusión', 'Book_talk', 'Draft', 'Draft_talk', 'Education_Program_talk', &lt;br /&gt;
	'Módulo_discusión', 'MediaWiki_discusión', 'Wikipedia', 'Wikiproyecto', 'Wikiproyecto_discusión' }&lt;br /&gt;
&lt;br /&gt;
function paginas.existe(frame)&lt;br /&gt;
	local articulo&lt;br /&gt;
	&lt;br /&gt;
	if not frame then&lt;br /&gt;
		return&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	if type(frame) == 'string' then&lt;br /&gt;
		articulo= frame&lt;br /&gt;
	else&lt;br /&gt;
		articulo= obtenerArgumentos(frame)[1]&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	if not articulo then &lt;br /&gt;
		return&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local a= mw.title.new(articulo)&lt;br /&gt;
	&lt;br /&gt;
	if a and a.exists then&lt;br /&gt;
		return a.fullText&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function paginas.existeCategoria(frame)&lt;br /&gt;
	local categoria&lt;br /&gt;
	&lt;br /&gt;
	if not frame then&lt;br /&gt;
		return&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	if type(frame) == 'string' then&lt;br /&gt;
		categoria = frame&lt;br /&gt;
	else&lt;br /&gt;
		categoria = obtenerArgumentos(frame)[1]&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	if not categoria then &lt;br /&gt;
		return&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	local a= mw.title.makeTitle(14, categoria)&lt;br /&gt;
	&lt;br /&gt;
	if a and a.exists then&lt;br /&gt;
		return a.fullText&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function paginas.nombrePagina(opciones)&lt;br /&gt;
	nombrePagina = mw.title.getCurrentTitle().text &lt;br /&gt;
	&lt;br /&gt;
	-- Eliminar el texto entre paréntesis&lt;br /&gt;
	if opciones and opciones.desambiguar == 'sí' then&lt;br /&gt;
		nombrePagina = mw.ustring.gsub(nombrePagina,'%s%(.*%)','')&lt;br /&gt;
	end&lt;br /&gt;
      &lt;br /&gt;
	return nombrePagina&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function paginas.sePuedeCategorizar()&lt;br /&gt;
	if enTabla(paginas.espaciosNoCategorizables, mw.title.getCurrentTitle().nsText) then&lt;br /&gt;
		return false&lt;br /&gt;
	else&lt;br /&gt;
		return true&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function paginas.obtenerSubpaginas(frame)&lt;br /&gt;
	local argumentos = obtenerArgumentos(frame)&lt;br /&gt;
	local nombrePagina = argumentos['página'] or argumentos['pagina'] or mw.title.getCurrentTitle().text&lt;br /&gt;
	local truncar = not (argumentos['truncar'] and argumentos['truncar'] == 'no')&lt;br /&gt;
	&lt;br /&gt;
	local parametroTruncar = (truncar and '|stripprefix=1') or ''&lt;br /&gt;
	&lt;br /&gt;
	local lista = frame:preprocess('{{Special:PrefixIndex/' .. nombrePagina .. parametroTruncar .. '}}')&lt;br /&gt;
	&lt;br /&gt;
	return lista&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return paginas&lt;/div&gt;</summary>
		<author><name>W&gt;Agabi10</name></author>
	</entry>
</feed>