imported>콩가루 m 사용자가 "모듈:Navbar" 문서를 보호했습니다: 훼손시 영향이 큰 틀 문서 ([편집=자동 인증된 사용자만 허용] (무기한) [옮기기=자동 인증된 사용자만 허용] (무기한)) |
imported>Jackmcbarn remove obnoxious pcall-and-rethrow behavior, now that real script errors include details |
||
| 6번째 줄: | 6번째 줄: | ||
local function trim(s) | local function trim(s) | ||
return mw.ustring.match(s, "^%s*(.-)%s*$") | return mw.ustring.match(s, "^%s*(.-)%s*$") | ||
end | end | ||
| 40번째 줄: | 28번째 줄: | ||
function p._navbar(args) | function p._navbar(args) | ||
local | local title, talk_title; | ||
local titleArg = 1 | local titleArg = 1 | ||
| 54번째 줄: | 42번째 줄: | ||
end | end | ||
title, talk_title = getTitle(args[titleArg] or (':' .. mw.getCurrentFrame():getParent():getTitle())); | |||
if not title then | if not title then | ||
error('Page does not exist') | |||
end | end | ||
| 66번째 줄: | 51번째 줄: | ||
local talkpage = talk_title and talk_title.fullText or '' | local talkpage = talk_title and talk_title.fullText or '' | ||
local editurl = title:fullUrl('action=edit'); | local editurl = title:fullUrl('action=edit'); | ||
local viewLink, talkLink, editLink | local viewLink, talkLink, editLink = 'view', 'talk', 'edit' | ||
if args.mini then | if args.mini then | ||
viewLink, talkLink, editLink | viewLink, talkLink, editLink = 'v', 't', 'e' | ||
end | end | ||
| 107번째 줄: | 91번째 줄: | ||
.wikitext('[[' .. mainpage .. '|') | .wikitext('[[' .. mainpage .. '|') | ||
.tag('span') | .tag('span') | ||
.attr('title', ' | .attr('title', 'View this template') | ||
.cssText(args.fontstyle or '') | .cssText(args.fontstyle or '') | ||
.wikitext(viewLink) | .wikitext(viewLink) | ||
| 117번째 줄: | 101번째 줄: | ||
.wikitext('[[' .. talkpage .. '|') | .wikitext('[[' .. talkpage .. '|') | ||
.tag('span') | .tag('span') | ||
.attr('title', ' | .attr('title', 'Discuss this template') | ||
.cssText(args.fontstyle or '') | .cssText(args.fontstyle or '') | ||
.wikitext(talkLink) | .wikitext(talkLink) | ||
.done() | .done() | ||
.wikitext(']]'); | .wikitext(']]'); | ||
if not args.noedit then | if not args.noedit then | ||
ul | ul | ||
| 129번째 줄: | 113번째 줄: | ||
.wikitext('[' .. editurl .. ' ') | .wikitext('[' .. editurl .. ' ') | ||
.tag('span') | .tag('span') | ||
.attr('title', ' | .attr('title', 'Edit this template') | ||
.cssText(args.fontstyle or '') | .cssText(args.fontstyle or '') | ||
.wikitext(editLink) | .wikitext(editLink) | ||
.done() | .done() | ||
.wikitext(']'); | .wikitext(']'); | ||
end | end | ||
2014년 11월 25일 (화) 06:07 판
이 모듈에 대한 설명문서는 모듈:Navbar/설명문서에서 만들 수 있습니다
local p = {}
local getArgs
local HtmlBuilder = require('Module:HtmlBuilder')
local function trim(s)
return mw.ustring.match(s, "^%s*(.-)%s*$")
end
local function getTitle(pageName)
pageName = trim(pageName);
local page_title, talk_page_title;
if mw.ustring.sub(pageName, 1, 1) == ':' then
page_title = mw.title.new( mw.ustring.sub(pageName, 2));
else
page_title = mw.title.new(pageName, 'Template');
end
if page_title then
talk_page_title = page_title.talkPageTitle;
else
talk_page_title = nil;
end
return page_title, talk_page_title;
end
function p._navbar(args)
local title, talk_title;
local titleArg = 1
if args.collapsible then
titleArg = 2
if not args.plain then
args.mini = 1
end
if args.fontcolor then
args.fontstyle = 'color:' .. args.fontcolor .. ';'
end
args.style = 'float:left; text-align:left; width:6em;'
end
title, talk_title = getTitle(args[titleArg] or (':' .. mw.getCurrentFrame():getParent():getTitle()));
if not title then
error('Page does not exist')
end
local mainpage = title.fullText;
local talkpage = talk_title and talk_title.fullText or ''
local editurl = title:fullUrl('action=edit');
local viewLink, talkLink, editLink = 'view', 'talk', 'edit'
if args.mini then
viewLink, talkLink, editLink = 'v', 't', 'e'
end
local div = HtmlBuilder.create().tag('div')
div
.addClass('plainlinks')
.addClass('hlist')
.addClass('navbar')
.cssText(args.style)
if args.mini then div.addClass('mini') end
if not (args.mini or args.plain) then
div
.tag('span')
.css('word-spacing', 0)
.cssText(args.fontstyle)
.wikitext(args.text or 'This box:')
.wikitext(' ')
end
if args.brackets then
div
.tag('span')
.css('margin-right', '-0.125em')
.cssText(args.fontstyle)
.wikitext('[')
.newline();
end
local ul = div.tag('ul');
ul
.tag('li')
.addClass('nv-view')
.wikitext('[[' .. mainpage .. '|')
.tag('span')
.attr('title', 'View this template')
.cssText(args.fontstyle or '')
.wikitext(viewLink)
.done()
.wikitext(']]')
.done()
.tag('li')
.addClass('nv-talk')
.wikitext('[[' .. talkpage .. '|')
.tag('span')
.attr('title', 'Discuss this template')
.cssText(args.fontstyle or '')
.wikitext(talkLink)
.done()
.wikitext(']]');
if not args.noedit then
ul
.tag('li')
.addClass('nv-edit')
.wikitext('[' .. editurl .. ' ')
.tag('span')
.attr('title', 'Edit this template')
.cssText(args.fontstyle or '')
.wikitext(editLink)
.done()
.wikitext(']');
end
if args.brackets then
div
.tag('span')
.css('margin-left', '-0.125em')
.cssText( args.fontstyle or '')
.wikitext(']')
.newline();
end
if args.collapsible then
div
.done()
.tag('span')
.css('font-size', '110%')
.cssText(args.fontstyle or '')
.wikitext(args[1])
end
return tostring(div.allDone())
end
function p.navbar(frame)
if not getArgs then
getArgs = require('Module:Arguments').getArgs
end
return p._navbar(getArgs(frame))
end
return p