Модуль:Common

<div style="color: #555555; font-size: 80%; font-style: italic; font-family: serif; text-align: center;">Материал из '''Библиотеки Теопедии''', http://ru.teopedia.org/lib</div>
Версия от 03:34, 1 февраля 2024; Павел Малахов (дополнение | вклад) (Новая страница: «local common = {} -- common functions package for common usage through Teopedia Library pages -- Return TRUE if string is empty or not defined (null). local func...»)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Для документации этого модуля может быть создана страница Модуль:Common/doc

local common = {} -- common functions package for common usage through Teopedia Library pages

-- Return TRUE if string is empty or not defined (null).
local function isempty(s)
  return s == nil or s == ''
end

-- Create unique sortable page ID in multy-volume book: V:PPP
-- Used in: Шаблон:Исходный текст ТД начинается
-- ID example: 1-017
-- Call examples: {{#invoke: Common | page_id | volume=1 | page=17 }}
--   {{#invoke: Common | page_id | volume=1 | page=17 
--    | volume_digits=2 | page_digits=4 
--    | page_number_type=roman	
--   }}
-- By default volume has 1 digit, page has 3 digits and page number in arabic 
-- style, but this could be changed.
function common.page_id( frame )
	local vNum = frame.args['volume']
	local pNum = string.format("%.3d", frame.args['page'])

	-- Check if we should alter default values
	if not isempty(frame.args['volume_digits']) then
		local digitFormat = '%.'.. frame.args['volume_digits'] ..'d'
		vNum = string.format(digitFormat, frame.args['volume_digits'])
	end
	if not isempty(frame.args['page_digits']) then
		local digitFormat = '%.'.. frame.args['page_digits'] ..'d'
		pNum = string.format(digitFormat, frame.args['page_digits'])
	end

	return vNum .. ':' .. pNum 
end

return common