Minecraft Wiki
編集の要約なし
 
(2人の利用者による、間の5版が非表示)
6行目: 6行目:
 
if namespace == 'Module' then
 
if namespace == 'Module' then
 
pageType = 'モジュール'
 
pageType = 'モジュール'
  +
elseif namespace == 'Widget' then
  +
pageType = 'ウィジェット'
 
elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.css$' ) then
 
elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.css$' ) then
 
pageType = 'スタイルシート'
 
pageType = 'スタイルシート'
17行目: 19行目:
 
end
 
end
   
-- Creating a documentation page or transclution through {{subst:doc}}
+
-- Creating a documentation page or transclusion through {{subst:docc}}
 
function p.create( f )
 
function p.create( f )
 
local args = require( 'モジュール:ProcessArgs' ).norm()
 
local args = require( 'モジュール:ProcessArgs' ).norm()
40行目: 42行目:
 
 
 
if not args.content then
 
if not args.content then
out = out .. '\n<!-- Put categories/interwiki on the documentation page -->'
+
out = out .. '\n<!-- カテゴリと言語間リンクはここではなく、解説ページに追加してください -->'
 
end
 
end
 
end
 
end
66行目: 68行目:
 
 
 
local page = mw.title.getCurrentTitle()
 
local page = mw.title.getCurrentTitle()
  +
local subpage = page.subpageText
  +
if subpage == 'sandbox' or subpage == 'testcases' then
  +
page = page.basePageTitle
  +
end
 
local namespace = page.nsText
 
local namespace = page.nsText
 
local pageType = mw.ustring.lower( args.type or getType( namespace, page ) )
 
local pageType = mw.ustring.lower( args.type or getType( namespace, page ) )
71行目: 77行目:
 
local body = mw.html.create( 'div' ):addClass( 'documentation-header' )
 
local body = mw.html.create( 'div' ):addClass( 'documentation-header' )
 
body
 
body
  +
:addClass( badDoc and 'documentation-badDoc' or '' )
 
:css{
 
:css{
 
['margin-bottom'] = '0.8em',
 
['margin-bottom'] = '0.8em',
78行目: 85行目:
 
}
 
}
 
:tag( 'div' )
 
:tag( 'div' )
  +
:attr( 'id', 'documentation-header-tools' )
 
:css( 'float', 'right' )
 
:css( 'float', 'right' )
:wikitext( '[[', page:fullUrl( 'action=purge' ), ' キャッシュ破棄]]' )
+
:wikitext( '[[', page:fullUrl( 'action=purge' ), ' ' .. f:preprocess('{{lc:{{int:page-header-action-button-purge}}}}') .. ']]' )
 
:done()
 
:done()
 
:wikitext(
 
:wikitext(
101行目: 109行目:
 
-- mw.text.trim uses mw.ustring.gsub, which silently fails on large strings
 
-- 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 ]+$', '' ))
  +
--return string.gsub( s, '^[\t\r\n\f ]*(.-)[\t\r\n\f ]*$', '%1' )
 
end
 
end
 
local args = require( 'モジュール:ProcessArgs' ).merge( true )
 
local args = require( 'モジュール:ProcessArgs' ).merge( true )
 
local page = mw.title.getCurrentTitle()
 
local page = mw.title.getCurrentTitle()
  +
local subpage = page.subpageText
  +
if subpage == 'sandbox' or subpage == 'testcases' then
  +
page = page.basePageTitle
  +
end
 
local namespace = page.nsText
 
local namespace = page.nsText
 
local docText = trim( args.content or '' )
 
local docText = trim( args.content or '' )
136行目: 149行目:
 
end
 
end
 
 
local action = '編集'
+
local action = f:preprocess('{{lc:{{int:edit}}}}')
 
local preload = ''
 
local preload = ''
  +
local docClass = ''
 
local colour = 'EAF4F9'
 
local colour = 'EAF4F9'
 
local message
 
local message
 
local category
 
local category
 
if noDoc then
 
if noDoc then
action = '作成'
+
action = f:preprocess('{{lc:{{int:create}}}}')
 
preload = '&preload=テンプレート:Documentation/preload'
 
preload = '&preload=テンプレート:Documentation/preload'
  +
docClass = 'documentation-noDoc'
 
colour = 'F9EAEA'
 
colour = 'F9EAEA'
 
message = "'''この" .. pageType .. "には解説がありません。" ..
 
message = "'''この" .. pageType .. "には解説がありません。" ..
154行目: 169行目:
 
end
 
end
 
elseif badDoc then
 
elseif badDoc then
  +
docClass = 'documentation-badDoc'
 
colour = 'F9F2EA'
 
colour = 'F9F2EA'
 
message = "'''この" .. pageType .. "の解説には、情報の追加が必要とされています。'''\n"
 
message = "'''この" .. pageType .. "の解説には、情報の追加が必要とされています。'''\n"
166行目: 182行目:
 
local links = {
 
local links = {
 
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
 
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
'[' .. docPage:fullUrl( 'action=history' ) .. ' 履歴]',
+
'[' .. docPage:fullUrl( 'action=history' ) .. ' ' .. f:preprocess('{{lc:{{int:history short}}}}') .. ']',
'[' .. page:fullUrl( 'action=purge' ) .. ' キャッシュ破棄]'
+
'[' .. page:fullUrl( 'action=purge' ) .. ' ' .. f:preprocess('{{lc:{{int:page-header-action-button-purge}}}}') .. ']'
 
}
 
}
 
if not noDoc and page ~= docPage then
 
if not noDoc and page ~= docPage then
table.insert( links, 1, '[[' .. docPage.fullText .. '|閲覧]]' )
+
table.insert( links, 1, '[[' .. docPage.fullText .. '|' .. f:preprocess('{{lc:{{int:view}}}}') .. ']]' )
 
end
 
end
 
links = mw.html.create( 'span' )
 
links = mw.html.create( 'span' )
  +
:attr( 'id', 'documentation-header-tools' )
 
:css( 'float', 'right' )
 
:css( 'float', 'right' )
 
:wikitext( mw.text.nowiki( '[' ), table.concat( links, ' | ' ), mw.text.nowiki( ']' ) )
 
:wikitext( mw.text.nowiki( '[' ), table.concat( links, ' | ' ), mw.text.nowiki( ']' ) )
 
 
 
local body = mw.html.create( 'div' ):addClass( 'documentation' )
 
local body = mw.html.create( 'div' ):addClass( 'documentation' )
body:css{
+
body
  +
:addClass( docClass )
  +
:css{
 
['background-color'] = '#' .. colour,
 
['background-color'] = '#' .. colour,
 
border = '1px solid #AAA',
 
border = '1px solid #AAA',
186行目: 205行目:
 
 
 
local header = mw.html.create( 'div' )
 
local header = mw.html.create( 'div' )
  +
:addClass( 'documentation-header-top' )
 
:css{
 
:css{
 
margin = '-0.8em -1em 0.8em',
 
margin = '-0.8em -1em 0.8em',
196行目: 216行目:
 
:node( links )
 
:node( links )
 
:tag( 'span' )
 
:tag( 'span' )
  +
:attr( 'id', 'documentation-header-title' )
 
:css{
 
:css{
 
['font-weight'] = 'bold',
 
['font-weight'] = 'bold',
204行目: 225行目:
 
:wikitext( '解説' )
 
:wikitext( '解説' )
 
 
  +
local codePages = {
if not noDoc and pageType ~= 'テンプレート' and pageType ~= 'メッセージ' then
 
  +
['モジュール'] = true,
  +
['スタイルシート'] = true,
  +
['スクリプト'] = true,
  +
}
  +
if not noDoc and codePages[pageType] then
 
header
 
header
 
:tag( 'span' )
 
:tag( 'span' )
  +
:attr( 'id', 'documentation-jump-to-code' )
 
:css( 'white-space', 'nowrap' )
 
:css( 'white-space', 'nowrap' )
 
:wikitext( '[[#the-code|コードへ移動 ↴]]' )
 
:wikitext( '[[#the-code|コードへ移動 ↴]]' )
219行目: 246行目:
 
body
 
body
 
:tag( 'div' )
 
:tag( 'div' )
  +
:addClass( 'documentation-header-bottom' )
 
:css{
 
:css{
 
margin = '0.7em -1em -0.7em',
 
margin = '0.7em -1em -0.7em',

2021年11月23日 (火) 16:44時点における最新版

このモジュールは {{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 transclusion through {{subst:docc}}
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<!-- カテゴリと言語間リンクはここではなく、解説ページに追加してください -->'
		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 subpage = page.subpageText
	if subpage == 'sandbox' or subpage == 'testcases' then
		page = page.basePageTitle
	end
	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
		:addClass( badDoc and 'documentation-badDoc' or '' )
		:css{
			['margin-bottom'] = '0.8em',
			padding = '0.8em 1em 0.7em',
			['background-color'] = '#' .. ( badDoc and 'F9F2EA' or 'EAF4F9' ),
			border = '1px solid #AAA'
		}
		:tag( 'div' )
			:attr( 'id', 'documentation-header-tools' )
			:css( 'float', 'right' )
			:wikitext( '[[', page:fullUrl( 'action=purge' ), ' ' .. f:preprocess('{{lc:{{int:page-header-action-button-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 ]+$', '' ))
		--return string.gsub( s, '^[\t\r\n\f ]*(.-)[\t\r\n\f ]*$', '%1' )
	end
	local args = require( 'モジュール:ProcessArgs' ).merge( true )
	local page = mw.title.getCurrentTitle()
	local subpage = page.subpageText
	if subpage == 'sandbox' or subpage == 'testcases' then
		page = page.basePageTitle
	end
	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 = f:preprocess('{{lc:{{int:edit}}}}')
	local preload = ''
	local docClass = ''
	local colour = 'EAF4F9'
	local message
	local category
	if noDoc then
		action = f:preprocess('{{lc:{{int:create}}}}')
		preload = '&preload=テンプレート:Documentation/preload'
		docClass = 'documentation-noDoc'
		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
		docClass = 'documentation-badDoc'
		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' ) .. ' ' .. f:preprocess('{{lc:{{int:history short}}}}') .. ']',
		'[' .. page:fullUrl( 'action=purge' ) .. ' ' .. f:preprocess('{{lc:{{int:page-header-action-button-purge}}}}') .. ']'
	}
	if not noDoc and page ~= docPage then
		table.insert( links, 1, '[[' .. docPage.fullText .. '|' .. f:preprocess('{{lc:{{int:view}}}}') .. ']]' )
	end
	links = mw.html.create( 'span' )
		:attr( 'id', 'documentation-header-tools' )
		:css( 'float', 'right' )
		:wikitext( mw.text.nowiki( '[' ), table.concat( links, ' | ' ), mw.text.nowiki( ']' ) )
	
	local body = mw.html.create( 'div' ):addClass( 'documentation' )
	body
		:addClass( docClass )
		: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' )
		:addClass( 'documentation-header-top' )
		:css{
			margin = '-0.8em -1em 0.8em',
			padding = '0.8em 1em 0.7em',
			['background-color'] = '#EAF4F9',
			['border-bottom'] = 'inherit'
		}
	
	header
		:node( links )
		:tag( 'span' )
			:attr( 'id', 'documentation-header-title' )
			: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' )
				:attr( 'id', 'documentation-jump-to-code' )
				:css( 'white-space', 'nowrap' )
				:wikitext( '[[#the-code|コードへ移動 ↴]]' )
	end
	
	body
		:node( header ):done()
		:wikitext( message )
		:wikitext( docText )
	
	if not noDoc and page ~= docPage then
		body
			:tag( 'div' )
				:addClass( 'documentation-header-bottom' )
				: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