<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="he">
	<id>https://text.chabadpedia.com/index.php?action=history&amp;feed=atom&amp;title=%D7%99%D7%97%D7%99%D7%93%D7%94%3A%D7%90%D7%A0%D7%93%D7%A8%D7%A1%D7%9F</id>
	<title>יחידה:אנדרסן - היסטוריית גרסאות</title>
	<link rel="self" type="application/atom+xml" href="https://text.chabadpedia.com/index.php?action=history&amp;feed=atom&amp;title=%D7%99%D7%97%D7%99%D7%93%D7%94%3A%D7%90%D7%A0%D7%93%D7%A8%D7%A1%D7%9F"/>
	<link rel="alternate" type="text/html" href="https://text.chabadpedia.com/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:%D7%90%D7%A0%D7%93%D7%A8%D7%A1%D7%9F&amp;action=history"/>
	<updated>2026-05-11T06:34:20Z</updated>
	<subtitle>היסטוריית הגרסאות של הדף הזה בוויקי</subtitle>
	<generator>MediaWiki 1.40.3</generator>
	<entry>
		<id>https://text.chabadpedia.com/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:%D7%90%D7%A0%D7%93%D7%A8%D7%A1%D7%9F&amp;diff=23729&amp;oldid=prev</id>
		<title>מ. רובין: גרסה אחת יובאה</title>
		<link rel="alternate" type="text/html" href="https://text.chabadpedia.com/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:%D7%90%D7%A0%D7%93%D7%A8%D7%A1%D7%9F&amp;diff=23729&amp;oldid=prev"/>
		<updated>2025-09-07T08:02:28Z</updated>

		<summary type="html">&lt;p&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;he&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;→ הגרסה הקודמת&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;גרסה מ־11:02, 7 בספטמבר 2025&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;he&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(אין הבדלים)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>מ. רובין</name></author>
	</entry>
	<entry>
		<id>https://text.chabadpedia.com/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:%D7%90%D7%A0%D7%93%D7%A8%D7%A1%D7%9F&amp;diff=23728&amp;oldid=prev</id>
		<title>ויקיטקסט&gt;אנדרסן ב־20:56, 21 במאי 2023</title>
		<link rel="alternate" type="text/html" href="https://text.chabadpedia.com/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:%D7%90%D7%A0%D7%93%D7%A8%D7%A1%D7%9F&amp;diff=23728&amp;oldid=prev"/>
		<updated>2023-05-21T20:56:26Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;דף חדש&lt;/b&gt;&lt;/p&gt;&lt;div&gt;o = {}&lt;br /&gt;
&lt;br /&gt;
local articleTitle = function(day, month, year)&lt;br /&gt;
	heb = &amp;quot;נאום זלסקי&amp;quot;&lt;br /&gt;
	return &amp;quot;[[&amp;quot; .. heb .. &amp;quot; (&amp;quot; .. day .. &amp;quot; ב&amp;quot; .. MonthGetName(month) .. &amp;quot; &amp;quot; .. year .. &amp;quot;)|&amp;quot; .. day .. &amp;quot;]]&amp;quot;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
p = {}&lt;br /&gt;
p.isLeapYear = function (year) -- year MUST be an integer&lt;br /&gt;
	return math.fmod(year,4) == 0 and (math.fmod(year,100) &amp;gt; 0 or math.fmod(year,400) == 0);&lt;br /&gt;
end&lt;br /&gt;
local Month = {&lt;br /&gt;
	&amp;quot;Jan&amp;quot;, &amp;quot;Feb&amp;quot;, &amp;quot;Mar&amp;quot;, &amp;quot;Apr&amp;quot;,&lt;br /&gt;
	&amp;quot;May&amp;quot;, &amp;quot;Jun&amp;quot;, &amp;quot;Jul&amp;quot;, &amp;quot;Aug&amp;quot;,&lt;br /&gt;
	&amp;quot;Sep&amp;quot;, &amp;quot;Oct&amp;quot;, &amp;quot;Nov&amp;quot;, &amp;quot;Dec&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
local monthNumber = {}&lt;br /&gt;
local monthInit = function()&lt;br /&gt;
	for i, name in ipairs(Month) do monthNumber[i] = name end -- working as a dict&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
MonthGetName = function (month) &lt;br /&gt;
	if month ==	1 then return &amp;quot;ינואר&amp;quot;&lt;br /&gt;
	elseif month == 2 then return  &amp;quot;פברואר&amp;quot;&lt;br /&gt;
	elseif month == 3 then return  &amp;quot;מרץ&amp;quot;&lt;br /&gt;
	elseif month == 4 then return  &amp;quot;אפריל&amp;quot;&lt;br /&gt;
	elseif month == 5 then return  &amp;quot;מאי&amp;quot;&lt;br /&gt;
	elseif month == 6 then return  &amp;quot;יוני&amp;quot;&lt;br /&gt;
	elseif month == 7 then return  &amp;quot;יולי&amp;quot;&lt;br /&gt;
	elseif month == 8 then return  &amp;quot;אוגוסט&amp;quot;&lt;br /&gt;
	elseif month == 9 then return  &amp;quot;ספטמבר&amp;quot;&lt;br /&gt;
	elseif month == 10 then return  &amp;quot;אוקטובר&amp;quot;&lt;br /&gt;
	elseif month == 11 then return  &amp;quot;נובמבר&amp;quot;&lt;br /&gt;
	elseif month == 12 then return  &amp;quot;דצמבר&amp;quot;	&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
MonthGetNumberOfDays = function (month, year)&lt;br /&gt;
	if month == 1 or month == 3 or month == 5 or month == 7 or month == 8 or month == 10 or month == 12 then return 31&lt;br /&gt;
	elseif month == 4 or month == 6 or month == 9 or month == 11 then return 30 end&lt;br /&gt;
	if p.isLeapYear(year) then return 29 else return 28 end&lt;br /&gt;
end&lt;br /&gt;
--Month.printM = function (month)&lt;br /&gt;
--	return &amp;quot;called&amp;quot;;&lt;br /&gt;
--	return Month.printM(month, 1) -- default&lt;br /&gt;
--end&lt;br /&gt;
&lt;br /&gt;
MonthPrintM = function (month, start)&lt;br /&gt;
	local ans = &amp;quot;&amp;quot;&lt;br /&gt;
	for i = start, MonthGetNumberOfDays(month), 1 do&lt;br /&gt;
		ans = ans .. &amp;quot; &amp;quot; .. i&lt;br /&gt;
		if math.fmod(i, 10) == 0 then ans = ans .. &amp;quot;\n&amp;quot; end&lt;br /&gt;
	end&lt;br /&gt;
	return ans;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local firstYear = 2022;&lt;br /&gt;
local firstMonth = Feb;&lt;br /&gt;
local firstDay = 24;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
local years = p.years; -- years as an array&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-- +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-&lt;br /&gt;
printDays = function(day, month, year)&lt;br /&gt;
	local daysInMonth = MonthGetNumberOfDays(month, year)&lt;br /&gt;
	local text = MonthGetName(month) .. &amp;quot; &amp;quot; .. year&lt;br /&gt;
	text = &amp;quot;[[:w:he:&amp;quot; .. text .. &amp;quot;|&amp;quot; .. text .. &amp;quot;]]\t&amp;quot;&lt;br /&gt;
	for d = day, daysInMonth, 1 do&lt;br /&gt;
		text = text .. d&lt;br /&gt;
		if d + 1 &amp;lt; daysInMonth - 1 then text = text .. &amp;quot; • &amp;quot; end&lt;br /&gt;
	end&lt;br /&gt;
	return text;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
o.printDays = function(vars)&lt;br /&gt;
	local day = tonumber(vars.args[1])&lt;br /&gt;
	local month = tonumber(vars.args[2])&lt;br /&gt;
	local year = tonumber(vars.args[3])&lt;br /&gt;
	local daysInMonth = MonthGetNumberOfDays(month, year)&lt;br /&gt;
	local text = &amp;quot;&amp;quot;--MonthGetName(month)&lt;br /&gt;
	--text = text .. &amp;quot; &amp;quot; .. year&lt;br /&gt;
	--text = &amp;quot;[[:w:he:&amp;quot; .. text .. &amp;quot;|&amp;quot; .. text .. &amp;quot;]]\t&amp;quot;&lt;br /&gt;
	for d = day, daysInMonth, 1 do&lt;br /&gt;
		text = text .. articleTitle(d, month, year) &lt;br /&gt;
		if d ~= daysInMonth then text = text .. &amp;quot; • &amp;quot; end&lt;br /&gt;
	end&lt;br /&gt;
	return text;&lt;br /&gt;
end&lt;br /&gt;
p.main = function(main)&lt;br /&gt;
	monthInit();&lt;br /&gt;
	local text = &amp;quot;&amp;quot;&lt;br /&gt;
	&lt;br /&gt;
	text = text .. printDays(24, 2, 2022) .. &amp;quot;&amp;lt;br&amp;gt;&amp;quot;&lt;br /&gt;
	&lt;br /&gt;
	for i = 3, 12, 1 do &lt;br /&gt;
		text = text .. printDays(1, i, 2022) .. &amp;quot;&amp;lt;br&amp;gt;&amp;quot;&lt;br /&gt;
		end&lt;br /&gt;
	for i = 1, 12, 1 do&lt;br /&gt;
		text = text .. printDays(1, i, 2023) .. &amp;quot;&amp;lt;br&amp;gt;&amp;quot;&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	return text;&lt;br /&gt;
	--return table.foreach(Month, Month.printM)&lt;br /&gt;
	&lt;br /&gt;
	--for i = 1, i &amp;lt; 12&lt;br /&gt;
	--local text = &amp;quot;&amp;quot;;&lt;br /&gt;
	--text = text .. &lt;br /&gt;
	--return Month.printM(Month[&amp;quot;Jan&amp;quot;], 1);&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
p.main2 = function()&lt;br /&gt;
	line1 = &amp;quot;{{ניווט קבוצות&amp;quot;&lt;br /&gt;
	line2 = &amp;quot;| כותרת = נאומי [[:w:he:וולודימיר זלנסקי|וולודימיר זלנסקי]] בעת [[:w:he:הפלישה הרוסית לאוקראינה|הפלישה הרוסית לאוקראינה]]&amp;quot;&lt;br /&gt;
	line3 = &amp;quot;| תמונה = [[קובץ:Do everything you can for us to withstand together in this war for our freedom and independence - address by President of Ukraine Volodymyr Zelenskyy. (51977034742) (cropped).jpg|100px]]&amp;quot;	&lt;br /&gt;
	line4 = &amp;quot;| קבוצה1 = 2022&amp;quot;&lt;br /&gt;
	line5 = &amp;quot;| רשימה1 =&amp;quot;&lt;br /&gt;
	line6 = &amp;quot;}}&amp;quot;&lt;br /&gt;
	return line1 .. line2 .. line3 .. line4 .. line5 .. line6&lt;br /&gt;
	&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return o;&lt;/div&gt;</summary>
		<author><name>ויקיטקסט&gt;אנדרסן</name></author>
	</entry>
</feed>