Minecraft Wiki
(文章の訂正)
(英wikiに伴いページを更新)
18行目: 18行目:
 
-- Creating a documentation page or transclution through {{subst:doc}}
 
-- Creating a documentation page or transclution through {{subst:doc}}
 
function p.create( f )
 
function p.create( f )
local args = require( 'Module:ProcessArgs' ).norm()
+
local args = require( 'モジュール:ProcessArgs' ).norm()
 
local page = mw.title.getCurrentTitle()
 
local page = mw.title.getCurrentTitle()
 
local docPage = args.page or page.nsText .. ':' .. page.baseText .. '/doc'
 
local docPage = args.page or page.nsText .. ':' .. page.baseText .. '/doc'
24行目: 24行目:
 
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 = {}
81行目: 81行目:
 
:done()
 
:done()
 
:wikitext(
 
:wikitext(
'これは、メイン', pageType, 'ページにトランスクルードされる',
+
'これは、メイン', pageType, 'ページに参照される',
pageType == 'module' and 'will' or 'should',
+
pageType == 'モジュールの' and 'であろう' or 'べきである',
'解説ページです。',
+
'解説ページです。',
'詳細については[[テンプレート:Documentation]]を参照してください'
+
'詳細については[[テンプレート:Documentation]]を参照してください'
 
)
 
)
 
if badDoc then
 
if badDoc then
 
body:wikitext( "<br>'''この", pageType, "の解説には、改善や追加情報が必要です。'''" )
 
body:wikitext( "<br>'''この", pageType, "の解説には、改善や追加情報が必要です。'''" )
 
end
 
end
if not args.nocat then
+
if not ( args.nocat or namespace == 'User' ) then
 
body:wikitext( '[[カテゴリ:解説ページ]]' )
 
body:wikitext( '[[カテゴリ:解説ページ]]' )
 
end
 
end
98行目: 98行目:
 
-- Wrapper around the documentation on the main page
 
-- Wrapper around the documentation on the main page
 
function p.page( f )
 
function p.page( f )
local args = require( 'Module:ProcessArgs' ).merge( true )
+
local args = require( 'モジュール:ProcessArgs' ).merge( true )
 
local page = mw.title.getCurrentTitle()
 
local page = mw.title.getCurrentTitle()
 
local namespace = page.nsText
 
local namespace = page.nsText
138行目: 138行目:
 
if noDoc then
 
if noDoc then
 
action = '作成'
 
action = '作成'
preload = '&preload=Template:Documentation/preload'
+
preload = '&preload=テンプレート:Documentation/preload'
 
colour = 'F9EAEA'
 
colour = 'F9EAEA'
 
message = "'''この" .. pageType .. "には解説がありません。" ..
 
message = "'''この" .. pageType .. "には解説がありません。" ..
 
"もしあなたがこの" .. pageType .. "を使用する方法を知っている場合は、解説ページを作成してください。'''"
 
"もしあなたがこの" .. pageType .. "を使用する方法を知っている場合は、解説ページを作成してください。'''"
if not args.nocat then
+
if not ( args.nocat or namespace == 'User' ) then
 
category = 'カテゴリ:' .. pageType .. 'には解説がありません'
 
category = 'カテゴリ:' .. pageType .. 'には解説がありません'
 
if not mw.title.new( category ).exists then
 
if not mw.title.new( category ).exists then
150行目: 150行目:
 
elseif badDoc then
 
elseif badDoc then
 
colour = 'F9F2EA'
 
colour = 'F9F2EA'
message = "'''この" .. pageType .. "の解説には、改善や追加情報が必要です。'''\n"
+
message = "'''この" .. pageType .. "の解説には、改善や情報の追加が必要です。'''\n"
if not args.nocat then
+
if not ( args.nocat or namespace == 'User' ) then
 
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
229行目: 229行目:
 
 
 
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

2015年3月9日 (月) 02:58時点における版

このモジュールは {{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( 'モジュール: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:テンプレート: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( '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 == 'モジュールの' 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 )
	local args = require( 'モジュール: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=テンプレート: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 .. ']',
		'[' .. 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|コードへジャンプ↴]]' )
	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 ~= 'テンプレート' and pageType ~= 'メッセージ' then
		anchor = mw.html.create( 'div' ):attr( 'id', 'the-code' )
	end
	
	return tostring( body ) .. tostring( anchor )
end

return p