Модуль:List: различия между версиями

Материал из in.wiki
Перейти к навигации Перейти к поиску
(export multiline)
(нет различий)

Версия от 05:36, 12 декабря 2019

Ошибка Lua в Модуль:Uses_TemplateStyles на строке 41: attempt to call field 'makeList' (a nil value).

This module outputs various kinds of lists. At present, it supports bulleted lists, unbulleted lists, horizontal lists, ordered lists (numbered or alphabetical), and horizontal ordered lists. It allows for easy css styling of the list or of the individual list items.

Usage

Quick usage

{{#invoke:list|function|first item|second item|third item|...}}

All parameters

{{#invoke:list|function
|first item|second item|third item|...
|start           = start number for ordered lists
|type            = type of numbering for ordered lists
|list_style_type = type of marker for ordered lists (uses CSS)
|class           = class
|style           = style
|list_style      = style for the list
|item_style      = style for all list items
|item1_style     = style for the first list item |item2_style = style for the second list item |...
|item1_value     = value for the first list item |item2_value = value for the second list item |...
|indent          = indent for horizontal lists
}}

Arguments passed from parent template

{{#invoke:list|function}}

Functions

Function name Produces Example output Template using the function
bulleted Bulleted lists Ошибка скрипта: Функции «bulleted» не существует. {{bulleted list}}
unbulleted Unbulleted lists Ошибка скрипта: Функции «unbulleted» не существует. {{unbulleted list}}
horizontal Horizontal bulleted lists Ошибка скрипта: Функции «horizontal» не существует. {{hlist}}
ordered Ordered lists (numbered lists and alphabetical lists) Ошибка скрипта: Функции «ordered» не существует. {{ordered list}}
horizontal_ordered Horizontal ordered lists Ошибка скрипта: Функции «horizontal_ordered» не существует. {{horizontal ordered list}}

Parameters

  • Positional parameters (1, 2, 3...) - these are the list items. If no list items are present, the module will output nothing.
  • start - sets the start item for ordered lists. This can be a start number for numbered lists, or a start letter for alphabetical lists. Horizontal ordered lists only support numbers.
  • type - the type of marker used in ordered lists. Possible values are "1" for numbers (the default), "A" for uppercase letters, "a" for lowercase letters, "I" for uppercase Roman numerals, and "i" for lowercase Roman numerals. Not supported in horizontal ordered lists. See also the list_style_type parameter.
  • list_style_type - the type of marker used in ordered lists. This uses CSS styling, and has more types available than the type parameter, which uses an html attribute. Possible values are listed at MDN's list-style-type page. Support may vary by browser. list-style-type is an alias for this parameter.
  • class - a custom class for the <div> tags surrounding the list, e.g. plainlinks.
  • style - a custom css style for the <div> tags surrounding the list, e.g. font-size: 90%;.
  • list_style - a custom css style for the list itself. The format is the same as for the |style = parameter.
  • item_style - a custom css style for all of the list items (the <li> tags). The format is the same as for the |style = parameter.
  • item1_style, item2_style, item3_style... - custom css styles for each of the list items. The format is the same as for the |style = parameter.
  • item1_value, item2_value, item3_value... - custom value for the given list item. List items following the one given will increment from the specified value. The value should be a positive integer. (Note that this option only has an effect on ordered lists.)
  • indent - this parameter indents the list, for horizontal and horizontal ordered lists only. The value must be a number, e.g. 2. The indent is calculated in em, and is 1.6 times the value specified. If no indent is specified, the default is zero.

Examples

Bulleted lists

Code Result
{{#invoke:list|bulleted|First item|Second item|Third item}} Ошибка скрипта: Функции «bulleted» не существует.
{{#invoke:list|bulleted|First item|Second item|Third item|item_style=color:blue;}} Ошибка скрипта: Функции «bulleted» не существует.
{{#invoke:list|bulleted|First item|Second item|Third item|item1_style=background-color:yellow;|item2_style=background-color:silver;}} Ошибка скрипта: Функции «bulleted» не существует.

Unbulleted lists

Code Result
{{#invoke:list|unbulleted|First item|Second item|Third item}} Ошибка скрипта: Функции «unbulleted» не существует.
{{#invoke:list|unbulleted|First item|Second item|Third item|item_style=color:blue;}} Ошибка скрипта: Функции «unbulleted» не существует.
{{#invoke:list|unbulleted|First item|Second item|Third item|item1_style=background-color:yellow;|item2_style=background-color:silver;}} Ошибка скрипта: Функции «unbulleted» не существует.

Horizontal lists

Code Result
{{#invoke:list|horizontal|First item|Second item|Third item}} Ошибка скрипта: Функции «horizontal» не существует.
{{#invoke:list|horizontal|First item|Second item|Third item|indent=2}} Ошибка скрипта: Функции «horizontal» не существует.

Ordered lists

Code Result
{{#invoke:list|ordered|First item|Second item|Third item}} Ошибка скрипта: Функции «ordered» не существует.
{{#invoke:list|ordered|First item|Second item|Third item|start=3}} Ошибка скрипта: Функции «ordered» не существует.
Lowercase Roman numerals: {{#invoke:list|ordered|First item|Second item|Third item|type=i}} Ошибка скрипта: Функции «ordered» не существует.
Lowercase Greek alphabet: {{#invoke:list|ordered|First item|Second item|Third item|list_style_type=lower-greek}} Ошибка скрипта: Функции «ordered» не существует.

Horizontal ordered lists

Code Result
{{#invoke:list|horizontal_ordered|First item|Second item|Third item}} Ошибка скрипта: Функции «horizontal_ordered» не существует.
{{#invoke:list|horizontal_ordered|First item|Second item|Third item|start=3}} Ошибка скрипта: Функции «horizontal_ordered» не существует.
{{#invoke:list|horizontal_ordered|First item|Second item|Third item|indent=2}} Ошибка скрипта: Функции «horizontal_ordered» не существует.

Tracking/maintenance category

See also


local p = {}

local function get_args (frame)
	-- На случай вызова из шаблона и из модуля:
	local args = frame:getParent () and mw.clone (frame:getParent ().args) or {}
	-- Overrides:
	for key, val in pairs (frame.args) do
		args [key] = val
	end
	return args
end		-- local function get_args (frame)

local function remove_empty (list)
	local ret = {}
	for i, item in ipairs (list) do
		if item ~= '' then
			ret [#ret + 1] = item
		end
	end
	return ret
end		-- local function remove_empty (list)

local function multiline (list, mark, header)
	local ret = ''
	for _, item in ipairs (list) do
		ret = ret .. '\n' .. mark .. ' ' .. tostring (item)
	end
	if ret ~= '' and header then
		ret = header .. ret
	end
	return ret
end		-- local function multiline (list, mark, header)

p.multiline = multiline

function p.l (frame)
	local args = get_args (frame)

	-- Извлекаем параметры — не пункты списка:
	local header = args ['заголовок']
	local separator = args ['разделитель']
	-- Для явно заданного разделителя, вроде «•», «и» не нужно:
	local last = separator or args ['последний']

	-- Случай многострочного списка:
	if separator == '*' or separator == '#' then
		return multiline (remove_empty (args), separator, header)
	else
		local ret = mw.text.listToText (remove_empty (args), separator, last)
		if ret ~= '' and header then
			ret = header .. ' ' .. ret
		end
		return ret
	end
end		-- function p.l (frame)

function p.bl (frame)
	local args = get_args (frame)
	-- Общий маркёр:
	local bullet = args ['маркёр'] or args ['bullet'] or '{{*}}'

	local lines = {}
	for i = 1, #args, 2 do
		lines [#lines + 1] = {bullet = args [i] or bullet, str = args [i + 1] or ''}
	end
	local ret = ''
	if #lines > 0 then
		ret = ret .. '<table style="background: transparent; vertical-align: top;">'
		for _, line in ipairs (lines) do
			ret = ret .. '\n<tr><td style="vertical-align:top; padding-top: 0.3ex">' .. line.bullet
					  .. '</td><td style="vertical-align:top">' .. line.str .. '</td></tr>'
		end
		ret = ret .. '\n</table>'
	end
	return ret
end		-- function p.bl (frame)

function p.ul (frame)
	local args = get_args (frame)
	-- Извлекаем параметры — не пункты списка:
	local header = args ['заголовок']
	return multiline (remove_empty (args), '*', header)
end	-- function p.ul (frame)

function p.ol (frame)
	local args = get_args (frame)
	-- Извлекаем параметры — не пункты списка:
	local header = args ['заголовок']
	return multiline (remove_empty (args), '#', header)
end	-- function p.ol (frame)

return p