모듈:Sidebar: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
잔글편집 요약 없음 |
(작업 중) |
||
28번째 줄: | 28번째 줄: | ||
return false | return false | ||
end | end | ||
end | |||
local param_ko = { | |||
-- {{사이드바}}의 한국어 변수 | |||
['자식'] = 'child', | |||
--[''] = 'wraplinks', | |||
--[''] = 'bodyclass', | |||
--[''] = 'class', | |||
--[''] = 'float', | |||
--[''] = 'width', | |||
--[''] = 'bodystyle', | |||
--[''] = 'style', | |||
--[''] = 'outertitle', | |||
--[''] = 'outertitleclass', | |||
--[''] = 'outertitlestyle', | |||
--[''] = 'topimage', | |||
--[''] = 'topimageclass', | |||
--[''] = 'topimagestyle', | |||
--[''] = 'topcaption', | |||
--[''] = 'topcaptionstyle', | |||
--[''] = 'pretitle', | |||
--[''] = 'pretitleclass', | |||
--[''] = 'pretitlestyle', | |||
--[''] = 'title', | |||
--[''] = 'titleclass', | |||
--[''] = 'titlestyle', | |||
--[''] = 'image', | |||
--[''] = 'imageclass', | |||
--[''] = 'imagestyle', | |||
--[''] = 'caption', | |||
--[''] = 'captionstyle', | |||
--[''] = 'above', | |||
--[''] = 'aboveclass', | |||
--[''] = 'headingclass', | |||
--[''] = 'headingstyle', | |||
--[''] = 'contentclass', | |||
--[''] = 'contentstyle', | |||
--[''] = 'below', | |||
--[''] = 'belowclass', | |||
--[''] = 'tnavbar', | |||
--[''] = 'name', | |||
--[''] = 'navbarfontstyle', | |||
--[''] = 'tnavbarfontstyle', | |||
-- {{접이식 사이드바}}의 한국어 변수 | |||
['윗제목모양'] = 'abovestyle', | |||
['아랫글모양'] = 'belowstyle', | |||
['안내바모양'] = 'navbarstyle', | |||
-- [''] = 'tnavbarstyle', -- 본래 틀에 없던 항목 | |||
['안내바'] = 'navbar', | |||
['확장'] = 'expanded', | |||
['목록틀모양'] = 'listframestyle', | |||
['목록제목모양'] = 'listtitlestyle', | |||
['기본모양'] = 'basestyle', -- 본래 틀에 없던 항목 | |||
['목록속성'] = 'listclass', | |||
['목록모양'] = 'liststyle' | |||
} | |||
local function localname(parameter) | |||
return param_ko[parameter] or parameter | |||
end | end | ||
36번째 줄: | 95번째 줄: | ||
local root = mw.html.create() | local root = mw.html.create() | ||
local child = args.child and mw.text.trim(args.child) == 'yes' | local child = args.child and mw.text.trim(args.child) == 'yes' | ||
local parent_args = args | |||
for k, v in pairs(parent_args) do | |||
if v ~= '' then | |||
args[localname(k)] = v | |||
end | |||
end | |||
root = root:tag('table') | root = root:tag('table') | ||
237번째 줄: | 303번째 줄: | ||
function p.collapsible(frame) | function p.collapsible(frame) | ||
local args = getArgs(frame) | local args = getArgs(frame) | ||
local parent_args = args | |||
for k, v in pairs(parent_args) do | |||
if v ~= '' then | |||
args[localname(k)] = v | |||
end | |||
end | |||
args.abovestyle = 'border-top: 1px solid #aaa; border-bottom: 1px solid #aaa;' .. (args.abovestyle or '') | args.abovestyle = 'border-top: 1px solid #aaa; border-bottom: 1px solid #aaa;' .. (args.abovestyle or '') | ||
248번째 줄: | 321번째 줄: | ||
for k, v in pairs(args) do | for k, v in pairs(args) do | ||
local num = string.match(k, '^list(%d+)$') | local num = string.match(k, '^(list|목록)(%d+)$') | ||
if num then | if num then | ||
local expand = args.expanded and (args.expanded == 'all' or args.expanded == args['list' .. num .. 'name']) | local expand = args.expanded and (args.expanded == 'all' or args.expanded == ( args['list' .. num .. 'name'] or args['목록' .. num .. '이름'] ) ) | ||
local row = mw.html.create('div') | local row = mw.html.create('div') | ||
259번째 줄: | 332번째 줄: | ||
:css('padding', 0) | :css('padding', 0) | ||
:cssText(args.listframestyle) | :cssText(args.listframestyle) | ||
:cssText(args['list' .. num .. 'framestyle']) | :cssText(args['list' .. num .. 'framestyle'] or args['목록' .. num .. '틀모양']) | ||
:tag('div') | :tag('div') | ||
:addClass('NavHead') | :addClass('NavHead') | ||
268번째 줄: | 341번째 줄: | ||
:cssText(args.basestyle) | :cssText(args.basestyle) | ||
:cssText(args.listtitlestyle) | :cssText(args.listtitlestyle) | ||
:cssText(args['list' .. num .. 'titlestyle']) | :cssText(args['list' .. num .. 'titlestyle'] or args['목록' .. num .. '제목모양']) | ||
:wikitext(trimAndAddAutomaticNewline(args['list' .. num .. 'title'] or 'List')) | :wikitext(trimAndAddAutomaticNewline(args['list' .. num .. 'title'] or args['목록' .. num .. '제목'] or 'List')) | ||
:done() | :done() | ||
:tag('div') | :tag('div') | ||
:addClass('NavContent') | :addClass('NavContent') | ||
:addClass(args.listclass) | :addClass(args.listclass) | ||
:addClass(args['list' .. num .. 'class']) | :addClass(args['list' .. num .. 'class'] or args['목록' .. num .. '속성']) | ||
:css('font-size', '105%') | :css('font-size', '105%') | ||
:css('padding', '0.2em 0 0.4em') | :css('padding', '0.2em 0 0.4em') | ||
:css('text-align', 'center') | :css('text-align', 'center') | ||
:cssText(args.liststyle) | :cssText(args.liststyle) | ||
:cssText(args['list' .. num .. 'style']) | :cssText(args['list' .. num .. 'style'] or args['목록' .. num .. '모양']) | ||
:wikitext(trimAndAddAutomaticNewline(args['list' .. num])) | :wikitext(trimAndAddAutomaticNewline(args['list' .. num] or args['목록' .. num])) | ||
contentArgs['content' .. num] = tostring(row) | contentArgs['content' .. num] = tostring(row) |
2019년 9월 3일 (화) 23:24 판
이 모듈의 자세한 설명은 en:Module:Sidebar/doc 항목을 참고하십시오.
--
-- 이 모듈은 {{Sidebar}}에 적용되는 모듈입니다.
--
require('Module:No globals')
local p = {}
local getArgs = require('Module:Arguments').getArgs
local navbar = require('Module:Navbar')._navbar
local function trimAndAddAutomaticNewline(s)
-- For compatibility with the original {{sidebar with collapsible lists}}
-- implementation, which passed some parameters through {{#if}} to trim
-- their whitespace. This also triggered the automatic newline behavior.
-- ([[meta:Help:Newlines and spaces#Automatic newline]])
s = mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1")
if mw.ustring.find(s, '^[#*:;]') or mw.ustring.find(s, '^{|') then
return '\n' .. s
else
return s
end
end
local function hasSubgroup(s)
if mw.ustring.find(s, 'vertical%-navbox%-subgroup') then
return true
else
return false
end
end
local param_ko = {
-- {{사이드바}}의 한국어 변수
['자식'] = 'child',
--[''] = 'wraplinks',
--[''] = 'bodyclass',
--[''] = 'class',
--[''] = 'float',
--[''] = 'width',
--[''] = 'bodystyle',
--[''] = 'style',
--[''] = 'outertitle',
--[''] = 'outertitleclass',
--[''] = 'outertitlestyle',
--[''] = 'topimage',
--[''] = 'topimageclass',
--[''] = 'topimagestyle',
--[''] = 'topcaption',
--[''] = 'topcaptionstyle',
--[''] = 'pretitle',
--[''] = 'pretitleclass',
--[''] = 'pretitlestyle',
--[''] = 'title',
--[''] = 'titleclass',
--[''] = 'titlestyle',
--[''] = 'image',
--[''] = 'imageclass',
--[''] = 'imagestyle',
--[''] = 'caption',
--[''] = 'captionstyle',
--[''] = 'above',
--[''] = 'aboveclass',
--[''] = 'headingclass',
--[''] = 'headingstyle',
--[''] = 'contentclass',
--[''] = 'contentstyle',
--[''] = 'below',
--[''] = 'belowclass',
--[''] = 'tnavbar',
--[''] = 'name',
--[''] = 'navbarfontstyle',
--[''] = 'tnavbarfontstyle',
-- {{접이식 사이드바}}의 한국어 변수
['윗제목모양'] = 'abovestyle',
['아랫글모양'] = 'belowstyle',
['안내바모양'] = 'navbarstyle',
-- [''] = 'tnavbarstyle', -- 본래 틀에 없던 항목
['안내바'] = 'navbar',
['확장'] = 'expanded',
['목록틀모양'] = 'listframestyle',
['목록제목모양'] = 'listtitlestyle',
['기본모양'] = 'basestyle', -- 본래 틀에 없던 항목
['목록속성'] = 'listclass',
['목록모양'] = 'liststyle'
}
local function localname(parameter)
return param_ko[parameter] or parameter
end
function p.sidebar(frame, args)
if not args then
args = getArgs(frame)
end
local root = mw.html.create()
local child = args.child and mw.text.trim(args.child) == 'yes'
local parent_args = args
for k, v in pairs(parent_args) do
if v ~= '' then
args[localname(k)] = v
end
end
root = root:tag('table')
if not child then
root
:addClass('vertical-navbox')
:addClass(args.wraplinks ~= 'true' and 'nowraplinks' or nil)
:addClass(args.bodyclass or args.class)
:css('float', args.float or 'right')
:css('clear', (args.float == 'none' and 'both') or args.float or 'right')
:css('width', args.width or '22.0em')
:css('margin', args.float == 'left' and '0 1.0em 1.0em 0' or '0 0 1.0em 1.0em')
:css('background', '#f9f9f9')
:css('border', '1px solid #aaa')
:css('padding', '0.2em')
:css('border-spacing', '0.4em 0')
:css('text-align', 'center')
:css('line-height', '1.4em')
:css('font-size', '88%')
:cssText(args.bodystyle or args.style)
if args.outertitle then
root
:tag('caption')
:addClass(args.outertitleclass)
:css('padding-bottom', '0.2em')
:css('font-size', '125%')
:css('line-height', '1.2em')
:css('font-weight', 'bold')
:cssText(args.outertitlestyle)
:wikitext(args.outertitle)
end
if args.topimage then
local imageCell = root:tag('tr'):tag('td')
imageCell
:addClass(args.topimageclass)
:css('padding', '0.4em 0')
:cssText(args.topimagestyle)
:wikitext(args.topimage)
if args.topcaption then
imageCell
:tag('div')
:css('padding-top', '0.2em')
:css('line-height', '1.2em')
:cssText(args.topcaptionstyle)
:wikitext(args.topcaption)
end
end
if args.pretitle then
root
:tag('tr')
:tag('td')
:addClass(args.pretitleclass)
:cssText(args.basestyle)
:css('padding-top', args.topimage and '0.2em' or '0.4em')
:css('line-height', '1.2em')
:cssText(args.pretitlestyle)
:wikitext(args.pretitle)
end
else
root
:addClass('vertical-navbox-subgroup')
:css('width', '100%')
:css('margin', '0px')
:css('border-spacing', '0px')
:addClass(args.bodyclass or args.class)
:cssText(args.bodystyle or args.style)
end
if args.title then
if child then
root
:wikitext(args.title)
else
root
:tag('tr')
:tag('th')
:addClass(args.titleclass)
:cssText(args.basestyle)
:css('padding', '0.2em 0.4em 0.2em')
:css('padding-top', args.pretitle and 0)
:css('font-size', '145%')
:css('line-height', '1.2em')
:cssText(args.titlestyle)
:wikitext(args.title)
end
end
if args.image then
local imageCell = root:tag('tr'):tag('td')
imageCell
:addClass(args.imageclass)
:css('padding', '0.2em 0 0.4em')
:cssText(args.imagestyle)
:wikitext(args.image)
if args.caption then
imageCell
:tag('div')
:css('padding-top', '0.2em')
:css('line-height', '1.2em')
:cssText(args.captionstyle)
:wikitext(args.caption)
end
end
if args.above then
root
:tag('tr')
:tag('td')
:addClass(args.aboveclass)
:css('padding', '0.3em 0.4em 0.3em')
:css('font-weight', 'bold')
:cssText(args.abovestyle)
:newline() -- newline required for bullet-points to work
:wikitext(args.above)
end
local rowNums = {}
for k, v in pairs(args) do
k = '' .. k
local num = k:match('^heading(%d+)$') or k:match('^content(%d+)$')
if num then table.insert(rowNums, tonumber(num)) end
end
table.sort(rowNums)
-- remove duplicates from the list (e.g. 3 will be duplicated if both heading3 and content3 are specified)
for i = #rowNums, 1, -1 do
if rowNums[i] == rowNums[i - 1] then
table.remove(rowNums, i)
end
end
for i, num in ipairs(rowNums) do
local heading = args['heading' .. num]
if heading then
root
:tag('tr')
:tag('th')
:addClass(args.headingclass)
:css('padding', '0.1em')
:cssText(args.basestyle)
:cssText(args.headingstyle)
:cssText(args['heading' .. num .. 'style'])
:newline()
:wikitext(heading)
end
local content = args['content' .. num]
if content then
root
:tag('tr')
:tag('td')
:addClass(args.contentclass)
:css('padding', hasSubgroup(content) and '0.1em 0 0.2em' or '0 0.1em 0.4em')
:cssText(args.contentstyle)
:cssText(args['content' .. num .. 'style'])
:newline()
:wikitext(content)
:done()
:newline() -- Without a linebreak after the </td>, a nested list like "* {{hlist| ...}}" doesn't parse correctly.
end
end
if args.below then
root
:tag('tr')
:tag('td')
:addClass(args.belowclass)
:css('padding', '0.3em 0.4em 0.3em')
:css('font-weight', 'bold')
:cssText(args.belowstyle)
:newline()
:wikitext(args.below)
end
if not child then
local navbarArg = args.navbar or args.tnavbar
if navbarArg ~= 'none' and navbarArg ~= 'off' and (args.name or frame:getParent():getTitle():gsub('/연습장$', '') ~= '틀:사이드바') then
root
:tag('tr')
:tag('td')
:css('text-align', 'right')
:css('font-size', '115%')
:cssText(args.navbarstyle or args.tnavbarstyle)
:wikitext(navbar{
args.name,
mini = 1,
fontstyle = args.navbarfontstyle or args.tnavbarfontstyle
})
end
end
return tostring(root) .. (child and '[[분류:Child 변수가 있는 사이드바를 사용한 문서]]' or '')
end
function p.collapsible(frame)
local args = getArgs(frame)
local parent_args = args
for k, v in pairs(parent_args) do
if v ~= '' then
args[localname(k)] = v
end
end
args.abovestyle = 'border-top: 1px solid #aaa; border-bottom: 1px solid #aaa;' .. (args.abovestyle or '')
args.belowstyle = 'border-top: 1px solid #aaa; border-bottom: 1px solid #aaa;' .. (args.belowstyle or '')
args.navbarstyle = 'padding-top: 0.6em;' .. (args.navbarstyle or args.tnavbarstyle or '')
if not args.name and frame:getParent():getTitle():gsub('/연습장$', '') == '틀:접이식 사이드바' then
args.navbar = 'none'
end
local contentArgs = {}
for k, v in pairs(args) do
local num = string.match(k, '^(list|목록)(%d+)$')
if num then
local expand = args.expanded and (args.expanded == 'all' or args.expanded == ( args['list' .. num .. 'name'] or args['목록' .. num .. '이름'] ) )
local row = mw.html.create('div')
row
:addClass('NavFrame')
:addClass((not expand) and 'collapsed' or nil)
:css('border', 'none')
:css('padding', 0)
:cssText(args.listframestyle)
:cssText(args['list' .. num .. 'framestyle'] or args['목록' .. num .. '틀모양'])
:tag('div')
:addClass('NavHead')
:addClass(args.listtitleclass)
:css('font-size', '105%')
:css('background', 'transparent')
:css('text-align', 'left')
:cssText(args.basestyle)
:cssText(args.listtitlestyle)
:cssText(args['list' .. num .. 'titlestyle'] or args['목록' .. num .. '제목모양'])
:wikitext(trimAndAddAutomaticNewline(args['list' .. num .. 'title'] or args['목록' .. num .. '제목'] or 'List'))
:done()
:tag('div')
:addClass('NavContent')
:addClass(args.listclass)
:addClass(args['list' .. num .. 'class'] or args['목록' .. num .. '속성'])
:css('font-size', '105%')
:css('padding', '0.2em 0 0.4em')
:css('text-align', 'center')
:cssText(args.liststyle)
:cssText(args['list' .. num .. 'style'] or args['목록' .. num .. '모양'])
:wikitext(trimAndAddAutomaticNewline(args['list' .. num] or args['목록' .. num]))
contentArgs['content' .. num] = tostring(row)
end
end
for k, v in pairs(contentArgs) do
args[k] = v
end
return p.sidebar(frame, args)
end
return p