Minecraft Wiki
잔글편집 요약 없음
잔글편집 요약 없음
 
(같은 사용자의 중간 판 28개는 보이지 않습니다)
3번째 줄: 3번째 줄:
   
 
local getType = function( namespace, page )
 
local getType = function( namespace, page )
local pageType = 'template'
+
local pageType = ''
 
if namespace == 'Module' then
 
if namespace == 'Module' then
pageType = 'module'
+
pageType = '모듈'
 
elseif namespace == 'Widget' then
 
elseif namespace == 'Widget' then
pageType = 'widget'
+
pageType = '소도구'
 
elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.css$' ) then
 
elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.css$' ) then
pageType = 'stylesheet'
+
pageType = '스타일시트'
 
elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.js$' ) then
 
elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.js$' ) then
pageType = 'script'
+
pageType = '스크립트'
 
elseif namespace == 'MediaWiki' then
 
elseif namespace == 'MediaWiki' then
pageType = 'message'
+
pageType = '메시지'
 
end
 
end
 
 
19번째 줄: 19번째 줄:
 
end
 
end
   
  +
-- Creating a documentation page or transclution through {{subst:doc}}
local pageTypeToKoreanText = function( pageType )
 
if 'template' == pageType then
 
return '틀'
 
elseif 'module' == pageType then
 
return '모듈'
 
elseif 'widget' == pageType then
 
return '소도구'
 
elseif 'stylesheet' == pageType then
 
return '스타일시트'
 
elseif 'script' == pageType then
 
return '스크립트'
 
elseif 'message' == pageType then
 
return '메시지'
 
else
 
return pageType
 
end
 
end
 
 
-- 설명문서를 생성하거나 {{subst:doc}}으로 끼워넣기
 
 
function p.create( f )
 
function p.create( f )
 
local args = require( '모듈:ProcessArgs' ).norm()
 
local args = require( '모듈:ProcessArgs' ).norm()
45번째 줄: 27번째 줄:
 
local out
 
local out
 
if not args.content and tostring( page ) == docPage then
 
if not args.content and tostring( page ) == docPage then
out = f:preprocess( '{{subst:Template:Documentation/preload}}' )
+
out = f:preprocess( '{{subst::Documentation/preload}}' )
 
else
 
else
 
local templateArgs = {}
 
local templateArgs = {}
60번째 줄: 42번째 줄:
 
 
 
if not args.content then
 
if not args.content then
out = out .. '\n<!-- 설명문서 페이지에 분류/인터위키를 넣으세요 -->'
+
out = out .. '\n<!-- Put categories/interwiki on the documentation page -->'
 
end
 
end
 
end
 
end
74번째 줄: 56번째 줄:
 
end
 
end
   
  +
-- Header on the documentation page
-- 설명문서에 사용되는 헤더
 
 
function p.docPage( f )
 
function p.docPage( f )
local args = require( 'Module:ProcessArgs' ).merge( true )
+
local args = require( '모듈:ProcessArgs' ).merge( true )
 
local badDoc = args.baddoc
 
local badDoc = args.baddoc
 
if f:callParserFunction( '#dplvar', '$doc noheader' ) == '1' then
 
if f:callParserFunction( '#dplvar', '$doc noheader' ) == '1' then
99번째 줄: 81번째 줄:
 
:tag( 'div' )
 
:tag( 'div' )
 
:css( 'float', 'right' )
 
:css( 'float', 'right' )
:wikitext( '[[', page:fullUrl( 'action=purge' ), ' purge]]' )
+
:wikitext( '[[', page:fullUrl( 'action=purge' ), ' 캐시 제거]]' )
 
:done()
 
:done()
 
:wikitext(
 
:wikitext(
'이 문서는 설명문서입니다. ',translatedPageType, ' 페이지 본문에 삽입',
+
'이 문서는 설명문서입니다. ', pageType, ' 페이지 본문에 삽입',
translatedPageType == '모듈' and '될 것입' or '되어야 합',
+
pageType == '모듈' and '될 것입' or '되어야 합',
 
'니다. ',
 
'니다. ',
'자세한 정보는 [[틀:설명문서]]를 참조하십시오.'
+
'자세한 정보는 [[틀:Documentation]]를 참조하십시오.'
 
)
 
)
 
if badDoc then
 
if badDoc then
body:wikitext( "<br>''이 ", translatedPageType, "의 설명문서는 개선 또는 추가 정보가 필요합니다.'''" )
+
body:wikitext( "<br>'''이 ", pageType, "의 설명문서는 개선 또는 추가 정보가 필요합니다.'''" )
 
end
 
end
 
if not ( args.nocat or namespace == 'User' ) then
 
if not ( args.nocat or namespace == 'User' ) then
117번째 줄: 99번째 줄:
 
end
 
end
   
  +
-- Wrapper around the documentation on the main page
-- 본문의 설명문서에 사용되는 Wrapper
 
 
function p.page( f )
 
function p.page( f )
-- mw.text.trim은 mw.ustring.gsub을 사용해서 긴 문자열에서는 오류가 나지 않아도 실패할 있다
+
-- mw.text.trim uses mw.ustring.gsub, which silently fails on large strings
 
local function trim( s )
 
local function trim( s )
return string.gsub( s, '^[\t\r\n\f ]*(.-)[\t\r\n\f ]*$', '%1' )
+
return (s:gsub( '^[\t\r\n\f ]+', '' ):gsub( '[\t\r\n\f ]+$', '' ))
 
end
 
end
 
local args = require( '모듈:ProcessArgs' ).merge( true )
 
local args = require( '모듈:ProcessArgs' ).merge( true )
163번째 줄: 145번째 줄:
 
if noDoc then
 
if noDoc then
 
action = '만들기'
 
action = '만들기'
preload = '&preload=틀:설명문서/프리로드'
+
preload = '&preload=틀:Documentation/preload'
 
colour = 'F9EAEA'
 
colour = 'F9EAEA'
message = "'''이 " .. translatedPageType .. "의 설명문서가 없습니다. " ..
+
message = "'''이 " .. pageType .. "의 설명문서가 없습니다. " ..
"이 " .. translatedPageType .. "의 사용 방법을 안다면, 설명문서를 만들어 주십시오.'''"
+
"이 " .. pageType .. "의 사용 방법을 안다면, 설명문서를 만들어 주십시오.'''"
 
if not ( args.nocat or namespace == 'User' ) then
 
if not ( args.nocat or namespace == 'User' ) then
category = '설명문서가 없는 ' .. translatedPageType
+
category = '설명문서가 없는 ' .. pageType
 
if not mw.title.new( '분류:' .. category ).exists then
 
if not mw.title.new( '분류:' .. category ).exists then
 
category = '설명문서가 없는 페이지'
 
category = '설명문서가 없는 페이지'
175번째 줄: 157번째 줄:
 
elseif badDoc then
 
elseif badDoc then
 
colour = 'F9F2EA'
 
colour = 'F9F2EA'
message = "'''이 " .. translatedPageType .. "의 설명문서는 개선 또는 추가 정보가 필요합니다.'''\n"
+
message = "'''이 " .. pageType .. "의 설명문서는 개선 또는 추가 정보가 필요합니다.'''\n"
 
if not ( args.nocat or namespace == 'User' ) then
 
if not ( args.nocat or namespace == 'User' ) then
category = '설명문서가 잘못된 ' .. translatedPageType
+
category = '설명문서가 잘못된 ' .. pageType
 
if not mw.title.new( '분류:' .. category ).exists then
 
if not mw.title.new( '분류:' .. category ).exists then
 
category = '설명문서가 잘못된 페이지'
 
category = '설명문서가 잘못된 페이지'
225번째 줄: 207번째 줄:
 
 
 
local codePages = {
 
local codePages = {
module = true,
+
['모듈'] = true,
stylesheet = true,
+
['스타일시트'] = true,
script = true,
+
['스크립트'] = true,
 
}
 
}
 
if not noDoc and codePages[pageType] then
 
if not noDoc and codePages[pageType] then
260번째 줄: 242번째 줄:
 
 
 
local anchor = ''
 
local anchor = ''
if not noDoc and pageType ~= 'template' and pageType ~= 'message' then
+
if not noDoc and pageType ~= '' and pageType ~= '메시지' then
 
anchor = mw.html.create( 'div' ):attr( 'id', 'the-code' )
 
anchor = mw.html.create( 'div' ):attr( 'id', 'the-code' )
 
end
 
end

2020년 9월 8일 (화) 02:30 기준 최신판

이 모듈은 {{Documentation}}(설명문서)를 구현합니다.

종속

[보기 | 편집 | 역사 | 캐시 제거]위 설명문서는 모듈:Documentation/doc에서 왔습니다.
local p = {}
local defaultDocPage = 'doc'

local getType = function( namespace, page )
	local pageType = '틀'
	if namespace == 'Module' then
		pageType = '모듈'
	elseif namespace == 'Widget' then
		pageType = '소도구'
	elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.css$' ) then
		pageType = '스타일시트'
	elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.js$' ) then
		pageType = '스크립트'
	elseif namespace == 'MediaWiki' then
		pageType = '메시지'
	end
	
	return pageType
end

-- Creating a documentation page or transclution through {{subst:doc}}
function p.create( f )
	local args = require( '모듈:ProcessArgs' ).norm()
	local page = mw.title.getCurrentTitle()
	local docPage = args.page or page.nsText .. ':' .. page.baseText .. '/' .. defaultDocPage
	
	local out
	if not args.content and tostring( page ) == docPage then
		out = f:preprocess( '{{subst:틀:Documentation/preload}}' )
	else
		local templateArgs = {}
		for _, key in ipairs{ 'type', 'page', 'content' } do
			local val = args[key]
			if val then
				if key == 'content' then val = '\n' .. val .. '\n' end
				table.insert( templateArgs, key .. '=' .. val )
			end
		end
		
		out = '{{documentation|' .. table.concat( templateArgs, '|' ) .. '}}'
		out = out:gsub( '|}}', '}}' )
		
		if not args.content then
			out = out .. '\n<!-- Put categories/interwiki on the documentation page -->'
		end
	end
	
	if not mw.isSubsting() then
		out = f:preprocess( out )
		if not args.nocat then
			out = out .. '[[분류:대체가 필요한 틀이 있는 문서]]'
		end
	end
	
	return out
end

-- Header on the documentation page
function p.docPage( f )
	local args = require( '모듈:ProcessArgs' ).merge( true )
	local badDoc = args.baddoc
	if f:callParserFunction( '#dplvar', '$doc noheader' ) == '1' then
		if badDoc then
			f:callParserFunction( '#dplvar:set', '$doc bad', '1' )
		end
		return
	end
	
	local page = mw.title.getCurrentTitle()
	local namespace = page.nsText
	local pageType = mw.ustring.lower( args.type or getType( namespace, page ) )
	
	local body = mw.html.create( 'div' ):addClass( 'documentation-header' )
	body
		:css{
			['margin-bottom'] = '0.8em',
			padding = '0.8em 1em 0.7em',
			['background-color'] = '#' .. ( badDoc and 'F9F2EA' or 'EAF4F9' ),
			border = '1px solid #AAA'
		}
		:tag( 'div' )
			:css( 'float', 'right' )
			:wikitext( '[[', page:fullUrl( 'action=purge' ), ' 캐시 제거]]' )
		:done()
		:wikitext(
			'이 문서는 설명문서입니다. ', pageType, ' 페이지 본문에 삽입',
			pageType == '모듈' and '될 것입' or '되어야 합',
			'니다. ',
			'자세한 정보는 [[틀:Documentation]]를 참조하십시오.'
		)
	if badDoc then
		body:wikitext( "<br>'''이 ", pageType, "의 설명문서는 개선 또는 추가 정보가 필요합니다.'''" )
	end
	if not ( args.nocat or namespace == 'User' ) then
		body:wikitext( '[[분류:설명문서 페이지]]' )
	end
	
	return body
end

-- Wrapper around the documentation on the main page
function p.page( f )
	-- mw.text.trim uses mw.ustring.gsub, which silently fails on large strings
	local function trim( s )
		return (s:gsub( '^[\t\r\n\f ]+', '' ):gsub( '[\t\r\n\f ]+$', '' ))
	end
	local args = require( '모듈:ProcessArgs' ).merge( true )
	local page = mw.title.getCurrentTitle()
	local namespace = page.nsText
	local docText = trim( args.content or '' )
	if docText == '' then docText = nil end
	
	local docPage
	local noDoc
	if docText then
		docPage = page
	else
		docPage = mw.title.new( args.page or namespace .. ':' .. page.text .. '/' .. defaultDocPage )
		noDoc = args.nodoc or not docPage.exists
	end
	local badDoc = args.baddoc
	local pageType = mw.ustring.lower( args.type or getType( namespace, page ) )
	
	if not docText and not noDoc then
		f:callParserFunction( '#dplvar:set', '$doc noheader', '1' )
		docText = trim( f:expandTemplate{ title = ':' .. docPage.fullText }  )
		if f:callParserFunction( '#dplvar', '$doc bad' ) == '1' then
			badDoc = 1
		end
		
		if docText == '' then
			docText = nil
			noDoc = 1
		end
	end
	if docText then
		docText = '\n' .. docText .. '\n'
	end
	
	local action = '편집'
	local preload = ''
	local colour = 'EAF4F9'
	local message
	local category
	if noDoc then
		action = '만들기'
		preload = '&preload=틀:Documentation/preload'
		colour = 'F9EAEA'
		message = "'''이 " .. pageType .. "의 설명문서가 없습니다. " ..
			"이 " .. pageType .. "의 사용 방법을 안다면, 설명문서를 만들어 주십시오.'''"
		if not ( args.nocat or namespace == 'User' ) then
			category = '설명문서가 없는 ' .. pageType
			if not mw.title.new( '분류:' .. category ).exists then
				category = '설명문서가 없는 페이지'
			end
		end
	elseif badDoc then
		colour = 'F9F2EA'
		message = "'''이 " .. pageType .. "의 설명문서는 개선 또는 추가 정보가 필요합니다.'''\n"
		if not ( args.nocat or namespace == 'User' ) then
			category = '설명문서가 잘못된 ' .. pageType
			if not mw.title.new( '분류:' .. category ).exists then
				category = '설명문서가 잘못된 페이지'
			end
		end
	end
	
	local links = {
		'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
		'[' .. docPage:fullUrl( 'action=history' ) .. ' 역사]',
		'[' .. page:fullUrl( 'action=purge' ) .. ' 캐시 제거]'
	}
	if not noDoc and page ~= docPage then
		table.insert( links, 1, '[[' .. docPage.fullText .. '|보기]]' )
	end
	links = mw.html.create( 'span' )
		:css( 'float', 'right' )
		:wikitext( mw.text.nowiki( '[' ), table.concat( links, ' | ' ), mw.text.nowiki( ']' ) )
	
	local body = mw.html.create( 'div' ):addClass( 'documentation' )
	body:css{
		['background-color'] = '#' .. colour,
		border = '1px solid #AAA',
		padding = '0.8em 1em 0.7em',
		['margin-top'] = '1em',
		clear = 'both'
	}
	
	local header = mw.html.create( 'div' )
		:css{
			margin = '-0.8em -1em 0.8em',
			padding = '0.8em 1em 0.7em',
			['background-color'] = '#EAF4F9',
			['border-bottom'] = 'inherit'
		}
	
	header
		:node( links )
		:tag( 'span' )
			:css{
				['font-weight'] = 'bold',
				['font-size'] = '130%',
				['margin-right'] = '1em',
				['line-height'] = '1'
			}
			:wikitext( '설명문서' )
	
	local codePages = {
		['모듈'] = true,
		['스타일시트'] = true,
		['스크립트'] = true,
	}
	if not noDoc and codePages[pageType] then
		header
			:tag( 'span' )
				:css( 'white-space', 'nowrap' )
				:wikitext( '[[#the-code|Jump to code ↴]]' )
	end
	
	body
		:node( header ):done()
		:wikitext( message )
		:wikitext( docText )
	
	if not noDoc and page ~= docPage then
		body
			:tag( 'div' )
				:css{
					margin = '0.7em -1em -0.7em',
					['background-color'] = '#EAF4F9',
					['border-top'] = 'inherit',
					padding = '0.8em 1em 0.7em',
					clear = 'both'
				}
				:node( links )
				:wikitext( '위 설명문서는 [[', docPage.fullText, ']]에서 왔습니다.' )
	end
	
	if category then
		body:wikitext( f:expandTemplate{ title = 'Translation category', args = { category, project = '0' } } )
	end
	
	local anchor = ''
	if not noDoc and pageType ~= '틀' and pageType ~= '메시지' then
		anchor = mw.html.create( 'div' ):attr( 'id', 'the-code' )
	end
	
	return tostring( body ) .. tostring( anchor )
end

return p