Minecraft Wiki

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

了解更多

Minecraft Wiki
(根据英文 Wiki KnightMiner 的 23:39, 24 四月 2015 版本更改)
Gerongfenh留言 | 贡献
(撤销Gerongfenh讨论)的版本527635 但是应该没有成功)
标签撤销
(未显示9个用户的37个中间版本)
第1行: 第1行:
 
local p = {}
 
local p = {}
  +
local defaultDocPage = 'doc'
   
 
local getType = function( namespace, page )
 
local getType = function( namespace, page )
local pageType = '模版'
+
local pageType = 'template'
if namespace == 'Module' then
+
if namespace == '模块' then
pageType = '模块'
+
pageType = 'module'
elseif page.fullText:gsub( '/doc$', '' ):find( '%.css$' ) then
+
elseif namespace == 'Widget' then
pageType = '样式表'
+
pageType = 'widget'
elseif page.fullText:gsub( '/doc$', '' ):find( '%.js$' ) then
+
elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.css$' ) then
pageType = '脚本'
+
pageType = 'stylesheet'
  +
elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.js$' ) then
  +
pageType = 'script'
 
elseif namespace == 'MediaWiki' then
 
elseif namespace == 'MediaWiki' then
pageType = '信息'
+
pageType = 'message'
 
end
 
end
 
 
 
return pageType
 
return pageType
  +
end
  +
  +
local getTypeDisplay = function( pageType )
  +
local pageTypeDisplay = '模板'
  +
if pageType == 'module' then
  +
pageTypeDisplay = '模块'
  +
elseif pageType == 'widget' then
  +
pageTypeDisplay = '小工具'
  +
elseif pageType == 'stylesheet' then
  +
pageTypeDisplay = '样式表'
  +
elseif pageType == 'script' then
  +
pageTypeDisplay = '脚本'
  +
elseif pageType == 'message' then
  +
pageTypeDisplay = '界面信息'
  +
end
  +
  +
return pageTypeDisplay
 
end
 
end
   
第20行: 第40行:
 
local args = require( 'Module:ProcessArgs' ).norm()
 
local args = require( 'Module: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 .. '/' .. defaultDocPage
 
 
 
local out
 
local out
第39行: 第59行:
 
 
 
if not args.content then
 
if not args.content then
out = out .. '\n<!-- 将分类和interwiki 置到模版页面 -->'
+
out = out .. '\n<!-- 将分类/语言链接在文档页面 -->'
 
end
 
end
  +
out = '<noinclude>'..out..'</noinclude>'
 
end
 
end
 
 
第46行: 第67行:
 
out = f:preprocess( out )
 
out = f:preprocess( out )
 
if not args.nocat then
 
if not args.nocat then
out = out .. '[[Category:需要替换页面的模板]]'
+
out = out .. '[[Category:需要替换模板的页面]]'
 
end
 
end
 
end
 
end
第67行: 第88行:
 
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 ) )
  +
local pageTypeDisplay = getTypeDisplay( pageType )
 
 
 
local body = mw.html.create( 'div' )
 
local body = mw.html.create( 'div' )
第73行: 第95行:
 
['margin-bottom'] = '0.8em',
 
['margin-bottom'] = '0.8em',
 
padding = '0.8em 1em 0.7em',
 
padding = '0.8em 1em 0.7em',
['background-color'] = '#' .. ( badDoc and 'F9F2EA' or 'EAF4F9' ),
 
border = '1px solid #AAA'
 
 
}
 
}
  +
:attr( 'class', 'documentation-header documentation-docpage' .. ( badDoc and ' documentation-baddoc' or '' ) )
 
:tag( 'div' )
 
:tag( 'div' )
 
:css( 'float', 'right' )
 
:css( 'float', 'right' )
:wikitext( '[[', page:fullUrl( 'action=purge' ), ' 返回]]' )
+
:wikitext( '[[', page:fullUrl( 'action=purge' ), ' 清除缓存]]' )
 
:done()
 
:done()
 
:wikitext(
 
:wikitext(
'这是文档页面,它',
+
'这是文档页面,它',
pageType == '模块' and '将' or '应该',
+
pageType == 'module' and '将' or '应该',
'被放置到', pageType, '页。',
+
'被放置到[[', namespace, ':',page.baseText,
'查看 [[Template:Documentation]] 以获取更多信息。'
+
']],查看[[Template:Documentation]]以获取更多信息。'
 
)
 
)
 
if badDoc then
 
if badDoc then
body:wikitext( "<br>'''This ", pageType, "的文档页面需要改进或添加附加的信息。'''" )
+
body:wikitext( "<br>'''", pageTypeDisplay, "的文档页面需要改进或添加附加的信息。'''" )
 
end
 
end
 
if not ( args.nocat or namespace == 'User' ) then
 
if not ( args.nocat or namespace == 'User' ) then
第98行: 第119行:
 
-- Wrapper around the documentation on the main page
 
-- Wrapper around the documentation on the main page
 
function p.page( f )
 
function p.page( f )
  +
-- mw.text.trim uses mw.ustring.gsub, which silently fails on large strings
  +
local function trim( s )
  +
return string.gsub( s, '^[\t\r\n\f ]*(.-)[\t\r\n\f ]*$', '%1' )
  +
end
 
local args = require( 'Module:ProcessArgs' ).merge( true )
 
local args = require( 'Module:ProcessArgs' ).merge( true )
 
local page = mw.title.getCurrentTitle()
 
local page = mw.title.getCurrentTitle()
 
local namespace = page.nsText
 
local namespace = page.nsText
local docText = mw.text.trim( args.content or '' )
+
local docText = trim( args.content or '' )
 
if docText == '' then docText = nil end
 
if docText == '' then docText = nil end
 
 
第109行: 第134行:
 
docPage = page
 
docPage = page
 
else
 
else
docPage = mw.title.new( args.page or namespace .. ':' .. page.text .. '/doc' )
+
docPage = mw.title.new( args.page or namespace .. ':' .. page.text .. '/' .. defaultDocPage )
 
noDoc = args.nodoc or not docPage.exists
 
noDoc = args.nodoc or not docPage.exists
 
end
 
end
 
local badDoc = args.baddoc
 
local badDoc = args.baddoc
 
local pageType = mw.ustring.lower( args.type or getType( namespace, page ) )
 
local pageType = mw.ustring.lower( args.type or getType( namespace, page ) )
  +
local pageTypeDisplay = getTypeDisplay( pageType )
 
 
 
if not docText and not noDoc then
 
if not docText and not noDoc then
 
f:callParserFunction( '#dplvar:set', '$doc noheader', '1' )
 
f:callParserFunction( '#dplvar:set', '$doc noheader', '1' )
docText = mw.text.trim( f:expandTemplate{ title = ':' .. docPage.fullText } )
+
docText = trim( f:expandTemplate{ title = ':' .. docPage.fullText } )
 
if f:callParserFunction( '#dplvar', '$doc bad' ) == '1' then
 
if f:callParserFunction( '#dplvar', '$doc bad' ) == '1' then
 
badDoc = 1
 
badDoc = 1
第133行: 第159行:
 
local action = '编辑'
 
local action = '编辑'
 
local preload = ''
 
local preload = ''
local colour = 'EAF4F9'
+
local classes = ''
 
local message
 
local message
 
local category
 
local category
 
if noDoc then
 
if noDoc then
action = '建'
+
action = '建'
 
preload = '&preload=Template:Documentation/preload'
 
preload = '&preload=Template:Documentation/preload'
colour = 'F9EAEA'
+
classes = ' documentation-nodoc'
message = "'''这个 " .. pageType .. " 没有文档页面。 " ..
+
message = "'''" .. pageTypeDisplay .. "没有文档页面。" ..
"如果你知道如何使用 " .. pageType .. ",请创建它。'''"
+
"如果你知道如何使用" .. pageTypeDisplay .. ",请创建它。'''"
 
if not ( args.nocat or namespace == 'User' ) then
 
if not ( args.nocat or namespace == 'User' ) then
category = 'Category:' .. pageType .. '没有文档页面。'
+
category = '没有文档的' .. pageTypeDisplay
if not mw.title.new( category ).exists then
+
if not mw.title.new( 'Category:' .. category ).exists then
category = 'Category:没有文档的页面'
+
category = '没有文档的页面'
 
end
 
end
 
end
 
end
 
elseif badDoc then
 
elseif badDoc then
  +
classes = ' documentation-baddoc'
colour = 'F9F2EA'
 
message = "'''这个 " .. pageType .. "'s 的文档页面需要改进或添加附加信息。'''\n"
+
message = "'''" .. pageTypeDisplay .. "的文档页面需要改进或添加附加信息。'''\n"
 
if not ( args.nocat or namespace == 'User' ) then
 
if not ( args.nocat or namespace == 'User' ) then
category = 'Category:' .. pageType .. '的文档页面质量低'
+
category = '文档质量' .. pageTypeDisplay
if not mw.title.new( category ).exists then
+
if not mw.title.new( 'Category:' .. category ).exists then
category = 'Category:低质量页面'
+
category = '文档质量较低的页面'
 
end
 
end
 
end
 
end
第161行: 第187行:
 
local links = {
 
local links = {
 
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
 
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
'[' .. docPage:fullUrl( 'action=history' ) .. ' 历史]',
+
'[' .. docPage:fullUrl( 'action=history' ) .. ' 历史]',
'[' .. page:fullUrl( 'action=purge' ) .. ' 返回]'
+
'[' .. page:fullUrl( 'action=purge' ) .. ' 清除缓存]'
 
}
 
}
 
if not noDoc and page ~= docPage then
 
if not noDoc and page ~= docPage then
第173行: 第199行:
 
local body = mw.html.create( 'div' )
 
local body = mw.html.create( 'div' )
 
body:css{
 
body:css{
['background-color'] = '#' .. colour,
 
border = '1px solid #AAA',
 
 
padding = '0.8em 1em 0.7em',
 
padding = '0.8em 1em 0.7em',
['margin-top'] = '1em',
+
['margin-top'] = '1em'
clear = 'both'
 
 
}
 
}
  +
:attr( 'class', 'documentation' .. classes )
 
 
local header = mw.html.create( 'div' )
+
local header = mw.html.create( 'div' ):addClass( 'documentation-header' )
:css{
+
header:css{
 
margin = '-0.8em -1em 0.8em',
 
margin = '-0.8em -1em 0.8em',
 
padding = '0.8em 1em 0.7em',
 
padding = '0.8em 1em 0.7em',
['background-color'] = '#EAF4F9',
 
 
['border-bottom'] = 'inherit'
 
['border-bottom'] = 'inherit'
 
}
 
}
第203行: 第226行:
 
:tag( 'span' )
 
:tag( 'span' )
 
:css( 'white-space', 'nowrap' )
 
:css( 'white-space', 'nowrap' )
  +
:wikitext( '[[#the-code|跳转至代码 ↴]]' )
 
end
 
end
 
 
第213行: 第237行:
 
body
 
body
 
:tag( 'div' )
 
:tag( 'div' )
  +
:addClass( 'documentation-footer' )
 
:css{
 
:css{
 
margin = '0.7em -1em -0.7em',
 
margin = '0.7em -1em -0.7em',
['background-color'] = '#EAF4F9',
 
 
['border-top'] = 'inherit',
 
['border-top'] = 'inherit',
 
padding = '0.8em 1em 0.7em',
 
padding = '0.8em 1em 0.7em',
第221行: 第245行:
 
}
 
}
 
:node( links )
 
:node( links )
:wikitext( '上述文档是从 [[', docPage.fullText, ']] 摘取的。' )
+
:wikitext( '上述文档是从[[', docPage.fullText, ']]引用的。' )
 
end
 
end
 
 
 
if category then
 
if category then
body:wikitext( '[[', category, ']]' )
+
body:wikitext( '[[Category:', category, ']]' )
 
end
 
end
 
 

2021年2月27日 (六) 07:30的版本

local p = {}
local defaultDocPage = 'doc'

local getType = function( namespace, page )
	local pageType = 'template'
	if namespace == '模块' then
		pageType = 'module'
	elseif namespace == 'Widget' then
		pageType = 'widget'
	elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.css$' ) then
		pageType = 'stylesheet'
	elseif page.fullText:gsub( '/' .. defaultDocPage .. '$', '' ):find( '%.js$' ) then
		pageType = 'script'
	elseif namespace == 'MediaWiki' then
		pageType = 'message'
	end
	
	return pageType
end

local getTypeDisplay = function( pageType )
	local pageTypeDisplay = '模板'
	if pageType == 'module' then
		pageTypeDisplay = '模块'
	elseif pageType == 'widget' then
		pageTypeDisplay = '小工具'
	elseif pageType == 'stylesheet' then
		pageTypeDisplay = '样式表'
	elseif pageType == 'script' then
		pageTypeDisplay = '脚本'
	elseif pageType == 'message' then
		pageTypeDisplay = '界面信息'
	end
	
	return pageTypeDisplay
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 .. '/' .. defaultDocPage
	
	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<!-- 请将分类/语言链接放在文档页面 -->'
		end
		out = '<noinclude>'..out..'</noinclude>'
	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 pageTypeDisplay = getTypeDisplay( pageType )
	
	local body = mw.html.create( 'div' )
	body
		:css{
			['margin-bottom'] = '0.8em',
			padding = '0.8em 1em 0.7em',
		}
		:attr( 'class', 'documentation-header documentation-docpage' .. ( badDoc and ' documentation-baddoc' or '' ) )
		:tag( 'div' )
			:css( 'float', 'right' )
			:wikitext( '[[', page:fullUrl( 'action=purge' ), ' 清除缓存]]' )
		:done()
		:wikitext(
			'这是文档页面,它',
			pageType == 'module' and '将' or '应该',
			'被放置到[[', namespace, ':',page.baseText,
			']],查看[[Template:Documentation]]以获取更多信息。'
		)
	if badDoc then
		body:wikitext( "<br>'''此", pageTypeDisplay, "的文档页面需要改进或添加附加的信息。'''" )
	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 )
	-- mw.text.trim uses mw.ustring.gsub, which silently fails on large strings
	local function trim( s )
		return string.gsub( s, '^[\t\r\n\f ]*(.-)[\t\r\n\f ]*$', '%1' )
	end
	local args = require( 'Module: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 ) )
	local pageTypeDisplay = getTypeDisplay( pageType )
	
	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 classes = ''
	local message
	local category
	if noDoc then
		action = '创建'
		preload = '&preload=Template:Documentation/preload'
		classes = ' documentation-nodoc'
		message = "'''此" .. pageTypeDisplay .. "没有文档页面。" ..
			"如果你知道如何使用" .. pageTypeDisplay .. ",请创建它。'''"
		if not ( args.nocat or namespace == 'User' ) then
			category = '没有文档的' .. pageTypeDisplay
			if not mw.title.new( 'Category:' .. category ).exists then
				category = '没有文档的页面'
			end
		end
	elseif badDoc then
		classes = ' documentation-baddoc'
		message = "'''此" .. pageTypeDisplay .. "的文档页面需要改进或添加附加信息。'''\n"
		if not ( args.nocat or namespace == 'User' ) then
			category = '文档质量较低的' .. pageTypeDisplay
			if not mw.title.new( 'Category:' .. 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' )
	body:css{
		padding = '0.8em 1em 0.7em',
		['margin-top'] = '1em'
	}
	:attr( 'class', 'documentation' .. classes )
	
	local header = mw.html.create( 'div' ):addClass( 'documentation-header' )
	header:css{
			margin = '-0.8em -1em 0.8em',
			padding = '0.8em 1em 0.7em',
			['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' )
				:addClass( 'documentation-footer' )
				:css{
					margin = '0.7em -1em -0.7em',
					['border-top'] = 'inherit',
					padding = '0.8em 1em 0.7em',
					clear = 'both'
				}
				:node( links )
				:wikitext( '上述文档是从[[', docPage.fullText, ']]引用的。' )
	end
	
	if category then
		body:wikitext( '[[Category:', 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