<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="pl">
	<id>https://wiki.idzie.xn--t-wha.xn--drog-eta.pl/index.php?action=history&amp;feed=atom&amp;title=Modu%C5%82%3AString%2FUNIQ</id>
	<title>Moduł:String/UNIQ - Historia wersji</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.idzie.xn--t-wha.xn--drog-eta.pl/index.php?action=history&amp;feed=atom&amp;title=Modu%C5%82%3AString%2FUNIQ"/>
	<link rel="alternate" type="text/html" href="https://wiki.idzie.xn--t-wha.xn--drog-eta.pl/index.php?title=Modu%C5%82:String/UNIQ&amp;action=history"/>
	<updated>2026-07-10T09:12:14Z</updated>
	<subtitle>Historia wersji tej strony wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wiki.idzie.xn--t-wha.xn--drog-eta.pl/index.php?title=Modu%C5%82:String/UNIQ&amp;diff=389&amp;oldid=prev</id>
		<title>Żółty Kapłan: 1 wersja</title>
		<link rel="alternate" type="text/html" href="https://wiki.idzie.xn--t-wha.xn--drog-eta.pl/index.php?title=Modu%C5%82:String/UNIQ&amp;diff=389&amp;oldid=prev"/>
		<updated>2025-12-07T20:56:05Z</updated>

		<summary type="html">&lt;p&gt;1 wersja&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;pl&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← poprzednia wersja&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Wersja z 22:56, 7 gru 2025&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot; class=&quot;diff-notice&quot; lang=&quot;pl&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(Brak różnic)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key wiki_droga:diff:1.41:old-388:rev-389 --&gt;
&lt;/table&gt;</summary>
		<author><name>Żółty Kapłan</name></author>
	</entry>
	<entry>
		<id>https://wiki.idzie.xn--t-wha.xn--drog-eta.pl/index.php?title=Modu%C5%82:String/UNIQ&amp;diff=388&amp;oldid=prev</id>
		<title>wpl&gt;Malarz pl: znacznik może być od początku, wtedy przed jest puste ale jest</title>
		<link rel="alternate" type="text/html" href="https://wiki.idzie.xn--t-wha.xn--drog-eta.pl/index.php?title=Modu%C5%82:String/UNIQ&amp;diff=388&amp;oldid=prev"/>
		<updated>2024-11-06T16:04:03Z</updated>

		<summary type="html">&lt;p&gt;znacznik może być od początku, wtedy przed jest puste ale jest&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nowa strona&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local function posUNIQ(text, tag)&lt;br /&gt;
	if text then&lt;br /&gt;
		local pattern = &amp;quot;\127&amp;#039;\&amp;quot;`UNIQ&amp;quot;&lt;br /&gt;
		if tag then&lt;br /&gt;
			pattern = pattern..&amp;quot;--&amp;quot;..tag..&amp;quot;-&amp;quot;&lt;br /&gt;
		end&lt;br /&gt;
&lt;br /&gt;
		local b, _ = mw.ustring.find(text, pattern, 1, true)&lt;br /&gt;
		return b&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return {&lt;br /&gt;
	&lt;br /&gt;
podziel = function(text, tag, def)&lt;br /&gt;
	local pos = posUNIQ(text, tag)&lt;br /&gt;
	if text and pos and (pos &amp;gt; 0) then&lt;br /&gt;
		local before = mw.ustring.sub(text, 1, pos - 1)&lt;br /&gt;
		local after = mw.ustring.sub(text, pos)&lt;br /&gt;
		return before, after&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	return text, def&lt;br /&gt;
end,&lt;br /&gt;
&lt;br /&gt;
pozycja = function(frame)&lt;br /&gt;
	local text = frame.args[1]&lt;br /&gt;
	return posUNIQ(text, frame.args.tag)&lt;br /&gt;
end,&lt;br /&gt;
&lt;br /&gt;
przed = function(frame)&lt;br /&gt;
	local text = frame.args[1]&lt;br /&gt;
	local pos = posUNIQ(text, frame.args.tag)&lt;br /&gt;
	if text and pos and (pos &amp;gt; 0) then&lt;br /&gt;
		return mw.ustring.sub(text, 1, pos - 1)&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	return text&lt;br /&gt;
end,&lt;br /&gt;
&lt;br /&gt;
od = function(frame)&lt;br /&gt;
	local text = frame.args[1]&lt;br /&gt;
	local pos = posUNIQ(text, frame.args.tag)&lt;br /&gt;
	if text and pos and (pos &amp;gt; 0) then&lt;br /&gt;
		return mw.ustring.sub(text, pos)&lt;br /&gt;
	end&lt;br /&gt;
end,&lt;br /&gt;
&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>wpl&gt;Malarz pl</name></author>
	</entry>
</feed>