모듈:Navbar: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
편집 요약 없음
편집 요약 없음 |
편집 요약 없음 |
||
60번째 줄: | 60번째 줄: | ||
if not title then | if not title then | ||
return htmlError(' | return htmlError('문서가 존재하지 않습니다') | ||
end | end | ||
66번째 줄: | 66번째 줄: | ||
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 historyurl = title:fullUrl('action=history'); | |||
local viewLink, talkLink, editLink = ' | local viewLink, talkLink, editLink, historyLink = '보기', '토론', '편집', '역사' | ||
if args.mini then | if args.mini then | ||
viewLink, talkLink, editLink = 'v', 't', 'e' | viewLink, talkLink, editLink, historyLink = 'v', 't', 'e', 'h' | ||
end | end | ||
106번째 줄: | 107번째 줄: | ||
.wikitext('[[' .. mainpage .. '|') | .wikitext('[[' .. mainpage .. '|') | ||
.tag('span') | .tag('span') | ||
.attr('title', ' | .attr('title', '이 틀을 보기') | ||
.cssText(args.fontstyle or '') | .cssText(args.fontstyle or '') | ||
.wikitext(viewLink) | .wikitext(viewLink) | ||
116번째 줄: | 117번째 줄: | ||
.wikitext('[[' .. talkpage .. '|') | .wikitext('[[' .. talkpage .. '|') | ||
.tag('span') | .tag('span') | ||
.attr('title', ' | .attr('title', '이 틀에 대한 토론') | ||
.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 | ||
128번째 줄: | 129번째 줄: | ||
.wikitext('[' .. editurl .. ' ') | .wikitext('[' .. editurl .. ' ') | ||
.tag('span') | .tag('span') | ||
.attr('title', ' | .attr('title', '이 틀을 편집하기') | ||
.cssText(args.fontstyle or '') | .cssText(args.fontstyle or '') | ||
.wikitext(editLink) | .wikitext(editLink) | ||
.done() | .done() | ||
.wikitext(']'); | .wikitext(']'); | ||
ul | |||
.tag('li') | |||
.addClass('nv-history') | |||
.wikitext('[' .. historyurl .. ' ') | |||
.tag('span') | |||
.attr('title', '이 틀의 역사') | |||
.cssText(args.fontstyle or '') | |||
.wikitext(historyLink) | |||
.done() | |||
.wikitext(']'); | |||
end | end | ||