Khác biệt giữa bản sửa đổi của “Mô đun:Labelled list hatnote”
Tạo trang mới với nội dung “-------------------------------------------------------------------------------- -- 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.…” |
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, | ||
'[[파일:Crystal Clear app xmag.svg|16px|링크=|<nowiki />]] ' .. | |||
mHatlist.andList(pages, true) | options.explanation .. -- 한국어 위키백과에서만 사용되는 비표준 변수 | ||
mHatlist.andList(pages, true), | |||
label | |||
) | ) | ||
local hnOptions = { | local hnOptions = { | ||