<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="he">
	<id>https://chabadpedia.co.il/index.php?action=history&amp;feed=atom&amp;title=%D7%99%D7%97%D7%99%D7%93%D7%94%3ACSV</id>
	<title>יחידה:CSV - היסטוריית גרסאות</title>
	<link rel="self" type="application/atom+xml" href="https://chabadpedia.co.il/index.php?action=history&amp;feed=atom&amp;title=%D7%99%D7%97%D7%99%D7%93%D7%94%3ACSV"/>
	<link rel="alternate" type="text/html" href="https://chabadpedia.co.il/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:CSV&amp;action=history"/>
	<updated>2026-04-28T20:59:41Z</updated>
	<subtitle>היסטוריית הגרסאות של הדף הזה בוויקי</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://chabadpedia.co.il/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:CSV&amp;diff=804342&amp;oldid=prev</id>
		<title>מ. רובין: מ. רובין העביר את הדף יחידה:Csv לשם יחידה:CSV בלי להשאיר הפניה</title>
		<link rel="alternate" type="text/html" href="https://chabadpedia.co.il/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:CSV&amp;diff=804342&amp;oldid=prev"/>
		<updated>2025-09-29T21:52:33Z</updated>

		<summary type="html">&lt;p&gt;מ. רובין העביר את הדף &lt;a href=&quot;/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:Csv&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;יחידה:Csv (הדף אינו קיים)&quot;&gt;יחידה:Csv&lt;/a&gt; לשם &lt;a href=&quot;/index.php/%D7%99%D7%97%D7%99%D7%93%D7%94:CSV&quot; title=&quot;יחידה:CSV&quot;&gt;יחידה:CSV&lt;/a&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;גרסה מ־00:52, 30 בספטמבר 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://chabadpedia.co.il/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:CSV&amp;diff=500617&amp;oldid=prev</id>
		<title>חלוקת קונטרסים: מויקיפדיה: https://he.wikipedia.org/wiki/%D7%99%D7%97%D7%99%D7%93%D7%94:CSV</title>
		<link rel="alternate" type="text/html" href="https://chabadpedia.co.il/index.php?title=%D7%99%D7%97%D7%99%D7%93%D7%94:CSV&amp;diff=500617&amp;oldid=prev"/>
		<updated>2021-10-17T18:20:58Z</updated>

		<summary type="html">&lt;p&gt;מויקיפדיה: https://he.wikipedia.org/wiki/%D7%99%D7%97%D7%99%D7%93%D7%94:CSV&lt;/p&gt;
&lt;p&gt;&lt;b&gt;דף חדש&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local function csv_to_table( csv )&lt;br /&gt;
	local tab = {}&lt;br /&gt;
	for row in mw.text.gsplit( csv, &amp;#039;\n&amp;#039;) do&lt;br /&gt;
		table.insert(tab, mw.text.split(row, &amp;#039;,&amp;#039;))&lt;br /&gt;
	end&lt;br /&gt;
	return tab&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function table_to_html( tab, th_first, table_attrib, tr_attrib, th_attrib, td_attrib, content_only ) &lt;br /&gt;
	local htmlrows = {}&lt;br /&gt;
	for ind, line in ipairs(tab) do &lt;br /&gt;
		local titlerow = th_first and ind == 1&lt;br /&gt;
		local opener = titlerow and &amp;#039;&amp;lt;th%s%s&amp;gt;&amp;#039; or &amp;#039;&amp;lt;td%s%s&amp;gt;&amp;#039;&lt;br /&gt;
		local closer = titlerow and &amp;#039;&amp;lt;/th&amp;gt;&amp;#039; or &amp;#039;&amp;lt;/td&amp;gt;&amp;#039;&lt;br /&gt;
		local row_attrib = titlerow and (th_attrib or &amp;#039;&amp;#039;) or (td_attrib or &amp;#039;&amp;#039;)&lt;br /&gt;
		mw.log(ind, &amp;#039; td_attrib&amp;#039;, td_attrib)&lt;br /&gt;
		opener = mw.ustring.format(opener, row_attrib and &amp;#039; &amp;#039; or &amp;#039;&amp;#039;, row_attrib)&lt;br /&gt;
		local htmlrow = opener .. table.concat(line, closer .. opener) .. closer&lt;br /&gt;
		table.insert(htmlrows, mw.ustring.format(&amp;#039;&amp;lt;tr%s%s&amp;gt;%s&amp;lt;/tr&amp;gt;&amp;#039;, tr_attrib and &amp;#039; &amp;#039; or &amp;#039;&amp;#039;, tr_attrib or &amp;#039;&amp;#039;, htmlrow))&lt;br /&gt;
	end&lt;br /&gt;
	local content = table.concat(htmlrows)&lt;br /&gt;
	return content_only and content&lt;br /&gt;
		or mw.ustring.format(&amp;#039;&amp;lt;table%s%s&amp;gt;%s&amp;lt;/table&amp;gt;&amp;#039;, table_attrib and &amp;#039; &amp;#039; or &amp;#039;&amp;#039;, table_attrib or &amp;#039;&amp;#039;, content)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function csv_to_wikitable( frame )&lt;br /&gt;
	local args = frame.args&lt;br /&gt;
	local csv = args.csv&lt;br /&gt;
	local tab = csv_to_table(csv)&lt;br /&gt;
	local table_attrib = args[&amp;#039;table-attrib&amp;#039;] or &amp;#039;class=&amp;quot;wikitable sortable&amp;quot;&amp;#039;&lt;br /&gt;
	return table_to_html(tab, not args[&amp;#039;no-title&amp;#039;], table_attrib, args[&amp;#039;tr-attrib&amp;#039;], args[&amp;#039;th-attrib&amp;#039;], args[&amp;#039;td-attrib&amp;#039;], args[&amp;#039;content-only&amp;#039;])&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
return {&lt;br /&gt;
	[&amp;#039;wikitable&amp;#039;] = csv_to_wikitable,&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>חלוקת קונטרסים</name></author>
	</entry>
</feed>