<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://telupedia.w.kmwc.org/index.php?action=history&amp;feed=atom&amp;title=Module%3ACslist</id>
	<title>Module:Cslist - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://telupedia.w.kmwc.org/index.php?action=history&amp;feed=atom&amp;title=Module%3ACslist"/>
	<link rel="alternate" type="text/html" href="https://telupedia.w.kmwc.org/index.php?title=Module:Cslist&amp;action=history"/>
	<updated>2026-04-06T16:56:24Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://telupedia.w.kmwc.org/index.php?title=Module:Cslist&amp;diff=5723&amp;oldid=prev</id>
		<title>Maxisnt: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://telupedia.w.kmwc.org/index.php?title=Module:Cslist&amp;diff=5723&amp;oldid=prev"/>
		<updated>2025-11-15T17:10:34Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&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;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 17:10, 15 November 2025&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key telupedia:diff:1.41:old-5722:rev-5723 --&gt;
&lt;/table&gt;</summary>
		<author><name>Maxisnt</name></author>
	</entry>
	<entry>
		<id>https://telupedia.w.kmwc.org/index.php?title=Module:Cslist&amp;diff=5722&amp;oldid=prev</id>
		<title>Wikipedia&gt;MusikBot II: Changed protection settings for &quot;Module:Cslist&quot;: High-risk template or module: 2504 transclusions (more info) ([Edit=Require extended confirmed access] (indefinite) [Move=Require extended confirmed access] (indefinite))</title>
		<link rel="alternate" type="text/html" href="https://telupedia.w.kmwc.org/index.php?title=Module:Cslist&amp;diff=5722&amp;oldid=prev"/>
		<updated>2025-05-04T18:00:54Z</updated>

		<summary type="html">&lt;p&gt;Changed protection settings for &amp;quot;&lt;a href=&quot;/w/Module:Cslist&quot; title=&quot;Module:Cslist&quot;&gt;Module:Cslist&lt;/a&gt;&amp;quot;: &lt;a href=&quot;https://en.wikipedia.org/wiki/High-risk_templates&quot; class=&quot;extiw&quot; title=&quot;wikipedia:High-risk templates&quot;&gt;High-risk template or module&lt;/a&gt;: 2504 transclusions (&lt;a href=&quot;/index.php?title=User:MusikBot_II/TemplateProtector&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;User:MusikBot II/TemplateProtector (page does not exist)&quot;&gt;more info&lt;/a&gt;) ([Edit=Require extended confirmed access] (indefinite) [Move=Require extended confirmed access] (indefinite))&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;p = {}&lt;br /&gt;
&lt;br /&gt;
p.makelist = function(frame)&lt;br /&gt;
	local args = frame.args&lt;br /&gt;
	if not args[1] then&lt;br /&gt;
		args = frame:getParent().args&lt;br /&gt;
		if not args[1] then return end&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	local semi = args.semi&lt;br /&gt;
	if semi then semi = semi:lower() end&lt;br /&gt;
	local oxford = args.oxford&lt;br /&gt;
	if oxford then oxford = oxford:lower() end&lt;br /&gt;
	local embedded = args.embedded&lt;br /&gt;
	if embedded then embedded = embedded:lower() end&lt;br /&gt;
	&lt;br /&gt;
	local out = &amp;quot;&amp;quot;&lt;br /&gt;
	for k, v in ipairs(args) do&lt;br /&gt;
		v = mw.text.trim(v)&lt;br /&gt;
		if v ~= &amp;quot;&amp;quot; then&lt;br /&gt;
			out = out .. &amp;quot;&amp;lt;li&amp;gt;&amp;quot; .. v .. &amp;quot;&amp;lt;/li&amp;gt;&amp;quot;&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	local listclass = &amp;quot;&amp;quot;&lt;br /&gt;
	if semi then&lt;br /&gt;
		listclass = listclass .. &amp;quot;sslist&amp;quot;&lt;br /&gt;
	else&lt;br /&gt;
		if oxford then&lt;br /&gt;
			if args[3] then&lt;br /&gt;
				listclass = listclass .. &amp;quot;andlistoxford&amp;quot;&lt;br /&gt;
			else&lt;br /&gt;
				listclass = listclass .. &amp;quot;andlist&amp;quot;&lt;br /&gt;
			end&lt;br /&gt;
		else&lt;br /&gt;
			listclass = listclass .. &amp;quot;cslist&amp;quot;&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	if embedded then&lt;br /&gt;
		listclass = listclass .. &amp;quot; cslist-embedded&amp;quot;&lt;br /&gt;
	end&lt;br /&gt;
	if out ~= &amp;quot;&amp;quot; then&lt;br /&gt;
		return &amp;#039;&amp;lt;ul class=&amp;quot;&amp;#039;.. listclass ..&amp;#039;&amp;quot;&amp;gt;&amp;#039; .. out .. &amp;#039;&amp;lt;/ul&amp;gt;&amp;#039;&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Wikipedia&gt;MusikBot II</name></author>
	</entry>
</feed>