Khác biệt giữa bản sửa đổi của “Mô đun:Labelled list hatnote”
Bước tới điều hướng
Bước tới tìm kiếm
Thẻ: Lùi tất cả Đã bị lùi lại |
Không có tóm lược sửa đổi Thẻ: Đã bị lùi lại |
||
Dòng 7: | Dòng 7: | ||
-------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ||
local mHatnote = require(' | local mHatnote = require('Module:Hatnote') | ||
local mHatlist = require(' | local mHatlist = require('Module:Hatnote list') | ||
local mArguments --initialize lazily | local mArguments --initialize lazily | ||
local p = {} | local p = {} | ||
Dòng 14: | Dòng 14: | ||
-- Defaults global to this module | -- Defaults global to this module | ||
local defaults = { | local defaults = { | ||
label = ' | label = '문서를 참고하십시오', --Final fallback for label argument | ||
labelForm = '%s | labelForm = '%s %s', | ||
prefixes = {'label', 'label | prefixes = {'label', 'label ', 'l'}, | ||
template = ' | template = 'Module:Labelled list hatnote' | ||
} | } | ||
Dòng 45: | Dòng 45: | ||
-- The main frame (template definition) takes 1 or 2 arguments, for a singular | -- The main frame (template definition) takes 1 or 2 arguments, for a singular | ||
-- and (optionally) plural label respectively: | -- and (optionally) plural label respectively: | ||
-- * {{# | -- * {{#invoke:Labelled list hatnote|labelledList|Singular label|Plural label}} | ||
-- The resulting template takes pagename & label parameters normally. | -- The resulting template takes pagename & label parameters normally. | ||
function p.labelledList (frame) | function p.labelledList (frame) | ||
mArguments = require(' | mArguments = require('Module:Arguments') | ||
local labels = {frame.args[1] or defaults.label} | local labels = {frame.args[1] or defaults.label} | ||
labels[2] = frame.args[2] or labels[1] | labels[2] = frame.args[2] or labels[1] | ||
Dòng 58: | Dòng 58: | ||
category = args.category, | category = args.category, | ||
selfref = frame.args.selfref or args.selfref, | selfref = frame.args.selfref or args.selfref, | ||
explanation = frame.args['설명'] or args['설명'] or '', -- 한국어 위키백과에서만 사용되는 비표준 변수 | |||
template = template | template = template | ||
} | } | ||
if frame.args['설명'] or args['설명'] then | |||
options.explanation = options.explanation .. ' ' -- 한국어 위키백과에서만 사용되는 비표준 변수 | |||
end | |||
return p._labelledList(pages, labels, options) | return p._labelledList(pages, labels, options) | ||
end | end | ||
Dòng 67: | Dòng 71: | ||
if #pages == 0 then | if #pages == 0 then | ||
return mHatnote.makeWikitextError( | return mHatnote.makeWikitextError( | ||
' | '문서 이름을 지정하지 않았습니다', | ||
(options.template or defaults.template) .. '# | (options.template or defaults.template) .. '#오류', | ||
options.category | options.category | ||
) | ) | ||
Dòng 75: | Dòng 79: | ||
local text = string.format( | local text = string.format( | ||
options.labelForm or defaults.labelForm, | options.labelForm or defaults.labelForm, | ||
'[[file:Crystal Clear app xmag.svg|16px|링크=|<nowiki />]] ' .. | |||
mHatlist.andList(pages, true) | options.explanation .. -- 한국어 위키백과에서만 사용되는 비표준 변수 | ||
mHatlist.andList(pages, true), | |||
label | |||
) | ) | ||
local hnOptions = { | local hnOptions = { |
Phiên bản lúc 08:39, ngày 21 tháng 7 năm 2023
Có thể viết tài liệu về mô đun này tại Mô đun:Labelled list hatnote/tài liệu.
--------------------------------------------------------------------------------
-- Labelled list --
-- --
-- This module does the core work of creating a hatnote composed of a list --
-- prefixed by a colon-terminated label, i.e. "LABEL: [andList of pages]", --
-- for {{see also}} and similar templates. --
--------------------------------------------------------------------------------
local mHatnote = require('Module:Hatnote')
local mHatlist = require('Module:Hatnote list')
local mArguments --initialize lazily
local p = {}
-- Defaults global to this module
local defaults = {
label = '문서를 참고하십시오', --Final fallback for label argument
labelForm = '%s %s',
prefixes = {'label', 'label ', 'l'},
template = 'Module:Labelled list hatnote'
}
-- Helper function that pre-combines display parameters into page arguments.
-- Also compresses sparse arrays, as a desirable side-effect.
function p.preprocessDisplays (args, prefixes)
-- Prefixes specify which parameters, in order, to check for display options
-- They each have numbers auto-appended, e.g. 'label1', 'label 1', & 'l1'
prefixes = prefixes or defaults.prefixes
local pages = {}
for k, v in pairs(args) do
if type(k) == 'number' then
local display
for i = 1, #prefixes do
display = args[prefixes[i] .. k]
if display then break end
end
local page = display and
string.format('%s|%s', string.gsub(v, '|.*$', ''), display) or v
pages[#pages + 1] = page
end
end
return pages
end
-- Produces a labelled pages-list hatnote.
-- The main frame (template definition) takes 1 or 2 arguments, for a singular
-- and (optionally) plural label respectively:
-- * {{#invoke:Labelled list hatnote|labelledList|Singular label|Plural label}}
-- The resulting template takes pagename & label parameters normally.
function p.labelledList (frame)
mArguments = require('Module:Arguments')
local labels = {frame.args[1] or defaults.label}
labels[2] = frame.args[2] or labels[1]
local template = frame:getParent():getTitle()
local args = mArguments.getArgs(frame, {parentOnly = true})
local pages = p.preprocessDisplays(args)
local options = {
extraclasses = frame.args.extraclasses,
category = args.category,
selfref = frame.args.selfref or args.selfref,
explanation = frame.args['설명'] or args['설명'] or '', -- 한국어 위키백과에서만 사용되는 비표준 변수
template = template
}
if frame.args['설명'] or args['설명'] then
options.explanation = options.explanation .. ' ' -- 한국어 위키백과에서만 사용되는 비표준 변수
end
return p._labelledList(pages, labels, options)
end
function p._labelledList (pages, labels, options)
labels = labels or {}
if #pages == 0 then
return mHatnote.makeWikitextError(
'문서 이름을 지정하지 않았습니다',
(options.template or defaults.template) .. '#오류',
options.category
)
end
label = (#pages == 1 and labels[1] or labels[2]) or defaults.label
local text = string.format(
options.labelForm or defaults.labelForm,
'[[file:Crystal Clear app xmag.svg|16px|링크=|<nowiki />]] ' ..
options.explanation .. -- 한국어 위키백과에서만 사용되는 비표준 변수
mHatlist.andList(pages, true),
label
)
local hnOptions = {
extraclasses = options.extraclasses,
selfref = options.selfref
}
return mHatnote._hatnote(text, hnOptions)
end
return p