Warning: proc_open(): open_basedir restriction in effect. File(/dev/null) is not within the allowed path(s): (/home/moldova/.composer:/home/moldova/web/enciclopedia.md/public_html:/home/moldova/web/enciclopedia.md/private:/home/moldova/web/enciclopedia.md/public_shtml:/home/moldova/tmp:/tmp:/var/www/html:/bin:/usr/bin:/usr/local/bin:/usr/share:/opt) in /home/moldova/web/enciclopedia.md/public_html/extensions/Scribunto/includes/Engines/LuaStandalone/LuaStandaloneInterpreter.php on line 159

Warning: proc_open(/dev/null): Failed to open stream: Operation not permitted in /home/moldova/web/enciclopedia.md/public_html/extensions/Scribunto/includes/Engines/LuaStandalone/LuaStandaloneInterpreter.php on line 159
Modul:Cslist - MediaWiki

Modul:Cslist

Versiunea din 18 septembrie 2020 15:45, autor: https://en.wikipedia.org/wiki/$1>Izno (sync from sandbox)
(dif) ← Versiunea anterioară | Versiunea curentă (dif) | Versiunea următoare → (dif)

Documentația acestui modul poate fi creată la Modul:Cslist/doc

Eroare în script: Lua error: Cannot create process: proc_open(/dev/null): Failed to open stream: Operation not permitted

p = {}

p.makelist = function(frame)
	local args = frame.args
	if not args[1] then
		args = frame:getParent().args
		if not args[1] then return end
	end
	local semi = (args.semi or ""):sub(1,1):lower()
	semi = (semi == "t") or (semi == "y")
	local embedded = (args.embedded or ""):sub(1,1):lower()
	embedded = (embedded == "y")
	local out = ""
	for k, v in ipairs(args) do
		v = mw.text.trim(v)
		if v ~= "" then
			out = out .. "<li>" .. v .. "</li>"
		end
	end
	local listclass = ""
	if semi then
		listclass = listclass .. "sslist"
	else
		listclass = listclass .. "cslist"
	end
	if embedded then
		listclass = listclass .. " cslist-embedded"
	end
	if out ~= "" then
		return '<ul class="'.. listclass ..'">' .. out .. '</ul>'
	end
end

return p