Minecraft Wiki

Minecraft Wiki ภาษาไทยกำลังจะย้ายออกจาก Fandom ตามภาษาอังกฤษในเร็ว ๆ นี้ ดูที่หน้านี้และ Discord สำหรับข้อมูลเพิ่มเติม

READ MORE

Minecraft Wiki
ไม่มีความย่อการแก้ไข
ไม่มีความย่อการแก้ไข
 
(ไม่แสดง 10 รุ่นระหว่างกลางโดยผู้ใช้ 3 คน)
บรรทัดที่ 19: บรรทัดที่ 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( 'Module:ProcessArgs' ).norm()
 
local args = require( 'Module:ProcessArgs' ).norm()
บรรทัดที่ 42: บรรทัดที่ 42:
 
 
 
if not args.content then
 
if not args.content then
out = out .. '\n<!-- Put categories/interwiki on the documentation page -->'
+
out = out .. '\n<!-- Put categories/interwikis on the documentation page -->'
 
end
 
end
 
end
 
end
บรรทัดที่ 68: บรรทัดที่ 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 ) )
บรรทัดที่ 73: บรรทัดที่ 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',
บรรทัดที่ 80: บรรทัดที่ 85:
 
}
 
}
 
:tag( 'div' )
 
:tag( 'div' )
  +
:attr( 'id', 'documentation-header-tools' )
 
:css( 'float', 'right' )
 
:css( 'float', 'right' )
:wikitext( '[[', page:fullUrl( 'action=purge' ), ' purge]]' )
+
:wikitext( '[[', page:fullUrl( 'action=purge' ), ' ล้างแคช]]' )
 
:done()
 
:done()
 
:wikitext(
 
:wikitext(
'This is the documentation page, it ',
+
'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. ',
 
' be transcluded into the main ', pageType, ' page. ',
บรรทัดที่ 103: บรรทัดที่ 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( 'Module:ProcessArgs' ).merge( true )
 
local args = require( 'Module: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 '' )
บรรทัดที่ 138: บรรทัดที่ 149:
 
end
 
end
 
 
local action = 'edit'
+
local action = 'แก้ไข'
 
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 = 'create'
+
action = 'สร้าง'
 
preload = '&preload=Template:Documentation/preload'
 
preload = '&preload=Template:Documentation/preload'
  +
docClass = 'documentation-noDoc'
 
colour = 'F9EAEA'
 
colour = 'F9EAEA'
 
message = "'''This " .. pageType .. " has no documentation. " ..
 
message = "'''This " .. pageType .. " has no documentation. " ..
บรรทัดที่ 156: บรรทัดที่ 169:
 
end
 
end
 
elseif badDoc then
 
elseif badDoc then
  +
docClass = 'documentation-badDoc'
 
colour = 'F9F2EA'
 
colour = 'F9F2EA'
 
message = "'''This " .. pageType .. "'s documentation needs improving or additional information.'''\n"
 
message = "'''This " .. pageType .. "'s documentation needs improving or additional information.'''\n"
บรรทัดที่ 168: บรรทัดที่ 182:
 
local links = {
 
local links = {
 
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
 
'[' .. docPage:fullUrl( 'action=edit' .. preload ) .. ' ' .. action .. ']',
'[' .. docPage:fullUrl( 'action=history' ) .. ' history]',
+
'[' .. docPage:fullUrl( 'action=history' ) .. ' ประวัติ]',
'[' .. page:fullUrl( 'action=purge' ) .. ' purge]'
+
'[' .. page:fullUrl( 'action=purge' ) .. ' ล้างแคช]'
 
}
 
}
 
if not noDoc and page ~= docPage then
 
if not noDoc and page ~= docPage then
table.insert( links, 1, '[[' .. docPage.fullText .. '|view]]' )
+
table.insert( links, 1, '[[' .. docPage.fullText .. '|ดู]]' )
 
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',
บรรทัดที่ 188: บรรทัดที่ 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',
บรรทัดที่ 198: บรรทัดที่ 216:
 
:node( links )
 
:node( links )
 
:tag( 'span' )
 
:tag( 'span' )
  +
:attr( 'id', 'documentation-header-title' )
 
:css{
 
:css{
 
['font-weight'] = 'bold',
 
['font-weight'] = 'bold',
บรรทัดที่ 204: บรรทัดที่ 223:
 
['line-height'] = '1'
 
['line-height'] = '1'
 
}
 
}
:wikitext( 'คู่มือการใช้งานแม่แบบ' )
+
:wikitext( 'คู่มือการใช้งาน' )
 
 
 
local codePages = {
 
local codePages = {
บรรทัดที่ 214: บรรทัดที่ 233:
 
header
 
header
 
:tag( 'span' )
 
:tag( 'span' )
  +
:attr( 'id', 'documentation-jump-to-code' )
 
:css( 'white-space', 'nowrap' )
 
:css( 'white-space', 'nowrap' )
 
:wikitext( '[[#the-code|Jump to code ↴]]' )
 
:wikitext( '[[#the-code|Jump to code ↴]]' )
บรรทัดที่ 226: บรรทัดที่ 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',

รุ่นแก้ไขปัจจุบันเมื่อ 04:27, 24 ตุลาคม 2564

[ดู | แก้ไข | ประวัติ | ล้างแคช]คู่มือการใช้งานJump to code ↴

This module implements {{Documentation}}.

Dependencies

[ดู | แก้ไข | ประวัติ | ล้างแคช]คู่มือการใช้งานที่ปรากฏด้านบนนี้ดึงมาจาก มอดูล:Documentation/doc.
local p = {}
local defaultDocPage = 'doc'

local getType = function( namespace, page )
	local pageType = 'template'
	if namespace == 'Module' 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

-- Creating a documentation page or transclusion through {{subst:docc}}
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<!-- Put categories/interwikis 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 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' ), ' ล้างแคช]]' )
		:done()
		:wikitext(
			'This is the documentation page. It ',
			pageType == 'module' and 'will' or 'should',
			' be transcluded into the main ', pageType, ' page. ',
			'See [[Template:Documentation]] for more information'
		)
	if badDoc then
		body:wikitext( "<br>'''This ", pageType, "'s documentation needs improving or additional information.'''" )
	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( 'Module: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 = 'แก้ไข'
	local preload = ''
	local docClass = ''
	local colour = 'EAF4F9'
	local message
	local category
	if noDoc then
		action = 'สร้าง'
		preload = '&preload=Template:Documentation/preload'
		docClass = 'documentation-noDoc'
		colour = 'F9EAEA'
		message = "'''This " .. pageType .. " has no documentation. " ..
			"If you know how to use this " .. pageType .. ", please create it.'''"
		if not ( args.nocat or namespace == 'User' ) then
			category = pageType .. 's with no documentation'
			if not mw.title.new( 'Category:' .. category ).exists then
				category = 'Pages with no documentation'
			end
		end
	elseif badDoc then
		docClass = 'documentation-badDoc'
		colour = 'F9F2EA'
		message = "'''This " .. pageType .. "'s documentation needs improving or additional information.'''\n"
		if not ( args.nocat or namespace == 'User' ) then
			category = pageType .. 's with bad documentation'
			if not mw.title.new( 'Category:' .. category ).exists then
				category = 'Pages with bad documentation'
			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' )
		: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 = {
		module = true,
		stylesheet = true,
		script = true,
	}
	if not noDoc and codePages[pageType] then
		header
			:tag( 'span' )
				:attr( 'id', 'documentation-jump-to-code' )
				: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' )
				: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 ~= 'template' and pageType ~= 'message' then
		anchor = mw.html.create( 'div' ):attr( 'id', 'the-code' )
	end
	
	return tostring( body ) .. tostring( anchor )
end

return p