欢迎来到奇葩栖息地!欢迎加入Discord服务器:XfrfHCzfbW。请先至特殊:参数设置验证邮箱后再进行编辑。在特殊:参数设置挑选自己想要使用的小工具!不会编辑?请至这里学习Wikitext语法。
模块:Documentation:修订间差异
来自奇葩栖息地
添加的内容 删除的内容
SkyEye FAST(讨论 | 贡献) (建立内容为“local p = {} local defaultDocPage = 'doc' local getType = function( namespace, page ) local pageType = 'template' if namespace == '模块' then pageType = 'm…”的新页面) |
SkyEye FAST(讨论 | 贡献) 小 (// Edit via InPageEdit) |
||
第44行: | 第44行: | ||
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: |
out = f:preprocess( '{{subst:模板:Documentation/preload}}' ) |
||
else |
else |
||
local templateArgs = {} |
local templateArgs = {} |
||
第67行: | 第67行: | ||
out = f:preprocess( out ) |
out = f:preprocess( out ) |
||
if not args.nocat then |
if not args.nocat then |
||
out = out .. '[[ |
out = out .. '[[分类:需要替换模板的页面]]' |
||
end |
end |
||
end |
end |
||
第105行: | 第105行: | ||
pageType == 'module' and '将' or '应该', |
pageType == 'module' and '将' or '应该', |
||
'被放置到[[', namespace, ':',page.baseText, |
'被放置到[[', namespace, ':',page.baseText, |
||
']],查看[[ |
']],查看[[模板:Documentation]]以获取更多信息。' |
||
) |
) |
||
if badDoc then |
if badDoc then |
||
第111行: | 第111行: | ||
end |
end |
||
if not ( args.nocat or namespace == 'User' ) then |
if not ( args.nocat or namespace == 'User' ) then |
||
body:wikitext( '[[ |
body:wikitext( '[[分类:文档页面]]' ) |
||
end |
end |
||
第164行: | 第164行: | ||
if noDoc then |
if noDoc then |
||
action = '创建' |
action = '创建' |
||
preload = '&preload= |
preload = '&preload=模板:Documentation/preload' |
||
classes = ' documentation-nodoc' |
classes = ' documentation-nodoc' |
||
message = "'''此" .. pageTypeDisplay .. "没有文档页面。" .. |
message = "'''此" .. pageTypeDisplay .. "没有文档页面。" .. |
||
第170行: | 第170行: | ||
if not ( args.nocat or namespace == 'User' ) then |
if not ( args.nocat or namespace == 'User' ) then |
||
category = '没有文档的' .. pageTypeDisplay |
category = '没有文档的' .. pageTypeDisplay |
||
if not mw.title.new( ' |
if not mw.title.new( '分类:' .. category ).exists then |
||
category = '没有文档的页面' |
category = '没有文档的页面' |
||
end |
end |
||
第179行: | 第179行: | ||
if not ( args.nocat or namespace == 'User' ) then |
if not ( args.nocat or namespace == 'User' ) then |
||
category = '文档质量较低的' .. pageTypeDisplay |
category = '文档质量较低的' .. pageTypeDisplay |
||
if not mw.title.new( ' |
if not mw.title.new( '分类:' .. category ).exists then |
||
category = '文档质量较低的页面' |
category = '文档质量较低的页面' |
||
end |
end |
||
第249行: | 第249行: | ||
if category then |
if category then |
||
body:wikitext( '[[ |
body:wikitext( '[[分类:', category, ']]' ) |
||
end |
end |
||
2021年6月13日 (日) 15:02的版本
此模块及其文档搬运自中文Minecraft Wiki页面Module:Documentation。
引入时,来源页面的修订版本为771934,其文档页的修订版本为809589。
这些内容依据CC BY-NC-SA 3.0协议引入。原贡献者请参见原页面的历史。
经过双方编者的修改,这些内容与来源可能存在差异。
这些内容无需与来源保持同步。
该模块依赖于{{Documentation}}
。
依赖项
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:模板: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 .. '[[分类:需要替换模板的页面]]'
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,
']],查看[[模板:Documentation]]以获取更多信息。'
)
if badDoc then
body:wikitext( "<br>'''此", pageTypeDisplay, "的文档页面需要改进或添加附加的信息。'''" )
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 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=模板:Documentation/preload'
classes = ' documentation-nodoc'
message = "'''此" .. pageTypeDisplay .. "没有文档页面。" ..
"如果你知道如何使用" .. pageTypeDisplay .. ",请创建它。'''"
if not ( args.nocat or namespace == 'User' ) then
category = '没有文档的' .. pageTypeDisplay
if not mw.title.new( '分类:' .. 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 ).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, ']]' )
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