Minecraft Wiki
(一部和訳)
(和訳の訂正)
78行目: 78行目:
 
: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(
  +
'これは、メイン', pageType, 'ページにトランスクルードされる',
'This is the documentation page, it ',
 
 
pageType == 'module' and 'will' or 'should',
 
pageType == 'module' and 'will' or 'should',
  +
'の解説ページです。',
' be transcluded into the main ', pageType, ' page. ',
 
'See [[Template:Documentation]] for more information'
+
'詳細については、[[テンプレート:Documentation]]を参照してください'
 
)
 
)
 
if badDoc then
 
if badDoc then
145行目: 145行目:
 
category = 'カテゴリ:' .. pageType .. 'には解説がありません'
 
category = 'カテゴリ:' .. pageType .. 'には解説がありません'
 
if not mw.title.new( category ).exists then
 
if not mw.title.new( category ).exists then
category = 'カテゴリ:ページには解説がありません'
+
category = 'カテゴリ:解説のないページ'
 
end
 
end
 
end
 
end
154行目: 154行目:
 
category = 'カテゴリ:' .. pageType .. 'には、悪い解説があります'
 
category = 'カテゴリ:' .. pageType .. 'には、悪い解説があります'
 
if not mw.title.new( category ).exists then
 
if not mw.title.new( category ).exists then
category = 'カテゴリ:ページには、悪い解説があります'
+
category = 'カテゴリ:悪い解説を含むページ'
 
end
 
end
 
end
 
end
161行目: 161行目:
 
local links = {
 
local links = {
 
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
 
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
'[' .. page:fullUrl( 'action=purge' ) .. ' purge]'
+
'[' .. page:fullUrl( 'action=purge' ) .. ' 消去]'
 
}
 
}
 
if not noDoc and page ~= docPage then
 
if not noDoc and page ~= docPage then

2015年1月27日 (火) 07:14時点における版

このモジュールは {{Documentation}} を実装しています。

依存関係

[表示 | 編集 | 消去]上記の解説には、モジュール:Documentation/docからトランスクルードされています。
local p = {}

local getType = function( namespace, page )
	local pageType = 'テンプレート'
	if namespace == 'Module' then
		pageType = 'モジュール'
	elseif page.fullText:gsub( '/doc$', '' ):find( '%.css$' ) then
		pageType = 'スタイルシート'
	elseif page.fullText:gsub( '/doc$', '' ):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( 'Module:ProcessArgs' ).norm()
	local page = mw.title.getCurrentTitle()
	local docPage = args.page or page.nsText .. ':' .. page.baseText .. '/doc'
	
	local out
	if not args.content and tostring( page ) == docPage then
		out = f:preprocess( '{{subst:Template: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 .. '[[Category:Pages with templates requiring substitution]]'
		end
	end
	
	return out
end

-- Header on the documentation page
function p.docPage( f )
	local args = require( 'Module: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' )
	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 == 'module' and 'will' or 'should',
			'の解説ページです。',
			'詳細については、[[テンプレート:Documentation]]を参照してください'
		)
	if badDoc then
		body:wikitext( "<br>'''この", pageType, "の解説には、改善や追加情報が必要です。'''" )
	end
	if not args.nocat then
		body:wikitext( '[[Category:Documentation pages]]' )
	end
	
	return body
end

-- Wrapper around the documentation on the main page
function p.page( f )
	local args = require( 'Module:ProcessArgs' ).merge( true )
	local page = mw.title.getCurrentTitle()
	local namespace = page.nsText
	local docText = mw.text.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 .. '/doc' )
		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 = mw.text.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=Template:Documentation/preload'
		colour = 'F9EAEA'
		message = "'''この" .. pageType .. "には解説がありません。" ..
			"もしあなたがこの" .. pageType .. "をわかるのであれば作成してください'''"
		if not args.nocat 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 then
			category = 'カテゴリ:' .. pageType .. 'には、悪い解説があります'
			if not mw.title.new( category ).exists then
				category = 'カテゴリ:悪い解説を含むページ'
			end
		end
	end
	
	local links = {
		'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
		'[' .. 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' )
	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( '解説' )
	
	if not noDoc and pageType ~= 'template' and pageType ~= 'message' 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( '[[', category, ']]' )
	end
	
	local anchor = ''
	if not noDoc and pageType ~= 'template' and pageType ~= 'message' then
		anchor = mw.html.create( 'div' ):attr( 'id', 'the-code' )
	end
	
	return tostring( body ) .. tostring( anchor )
end

return p