Minecraft Wiki

除另有声明,转载时均必须注明出处若簡繁轉換出錯,請以遊戲內為準请勇于扩充与修正内容有兴趣逛逛我们的微博沟通交流,欢迎到社区专页需要协助,请在告示板留言

了解更多

Minecraft Wiki
注册
无编辑摘要
(根据英文 Wiki KnightMiner 的 23:39, 24 四月 2015 版本更改)
第161行: 第161行:
 
local links = {
 
local links = {
 
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
 
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
  +
'[' .. docPage:fullUrl( 'action=history' ) .. ' 历史]',
 
'[' .. page:fullUrl( 'action=purge' ) .. ' 返回]'
 
'[' .. page:fullUrl( 'action=purge' ) .. ' 返回]'
 
}
 
}

2015年4月25日 (六) 10:19的版本

[查看 | 编辑 | 历史 | 返回]文档页面

该模块用于实现{{Documentation}}

依赖项


语言
[查看 | 编辑 | 历史 | 返回]上述文档是从 Module: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<!-- 将分类和interwiki 放置到模版页面中 -->'
		end
	end
	
	if not mw.isSubsting() then
		out = f:preprocess( out )
		if not args.nocat then
			out = out .. '[[Category:需要替换页面的模板]]'
		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 == '模块' and '将' or '应该',
			'被放置到主', pageType, '页。',
			'查看 [[Template:Documentation]] 以获取更多信息。'
		)
	if badDoc then
		body:wikitext( "<br>'''This ", pageType, "的文档页面需要改进或添加附加的信息。'''" )
	end
	if not ( args.nocat or namespace == 'User' ) then
		body:wikitext( '[[Category:文档页面]]' )
	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 or namespace == 'User' ) then
			category = 'Category:' .. pageType .. '没有文档页面。'
			if not mw.title.new( category ).exists then
				category = 'Category:没有文档的页面'
			end
		end
	elseif badDoc then
		colour = 'F9F2EA'
		message = "'''这个 " .. pageType .. "'s 的文档页面需要改进或添加附加信息。'''\n"
		if not ( args.nocat or namespace == 'User' ) then
			category = 'Category:' .. pageType .. '的文档页面质量很低'
			if not mw.title.new( category ).exists then
				category = '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' )
	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' )
	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