Modul:Vorlage:LuaModuleDoc: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
2017-01-10
wp>PerfektesChaos (2016-11-26) |
wp>PerfektesChaos (2017-01-10) |
||
Zeile 1: | Zeile 1: | ||
local Serial = " | local Serial = "2017-01-10" | ||
--[=[ | --[=[ | ||
Support {{LuaModuleDoc}} | Support {{LuaModuleDoc}} | ||
* nav() | * nav() | ||
* failsafe() | * failsafe() | ||
]=] | ]=] | ||
Zeile 10: | Zeile 9: | ||
-- Module globals | -- Module globals | ||
local CurrentTitle | local CurrentTitle | ||
local Frame | local Frame | ||
local function fetch( arg, assign ) | |||
-- Retrieve template argument | |||
-- Precondition: | |||
-- arg -- string or number; argument identifier | |||
-- assign -- any, optional; default value | |||
local r = Frame.args[ arg ] | |||
if type( r ) ~= "string" then | |||
if assign == nil then | |||
r = "{{{<" .. arg .. ">}}}" | |||
else | |||
r = assign | |||
end | |||
end | |||
return r | |||
end -- fetch() | |||
Zeile 23: | Zeile 39: | ||
-- Uses: | -- Uses: | ||
-- mw.title.makeTitle() | -- mw.title.makeTitle() | ||
local s = | local s = fetch( slot, "" ) | ||
local r | local r | ||
if #s > 0 then | if #s > 0 then | ||
Zeile 40: | Zeile 56: | ||
-- script -- string; module name (main) | -- script -- string; module name (main) | ||
-- Uses: | -- Uses: | ||
-- | -- fetch() | ||
-- >< CurrentTitle | -- >< CurrentTitle | ||
-- Return: | -- Return: | ||
Zeile 57: | Zeile 73: | ||
if repo and repo.path:match( "^/wiki/" ) then | if repo and repo.path:match( "^/wiki/" ) then | ||
local space | local space | ||
space, s = | space, s = repo.path:sub( 7 ):match( "^([^:]+):(.+)$" ) | ||
if space and s then | if space and s then | ||
t = mw.title.makeTitle( space, s ) | t = mw.title.makeTitle( space, s ) | ||
Zeile 70: | Zeile 85: | ||
end | end | ||
end | end | ||
s = | s = fetch( "templateGlobal", "" ) | ||
if #s > 0 then | if #s > 0 then | ||
local lucky, code = pcall( require, | local lucky, code = pcall( require, | ||
Zeile 108: | Zeile 123: | ||
end | end | ||
end | end | ||
s = | s = fetch( "categoryWikiData", "" ) | ||
if #s > 0 then | if #s > 0 then | ||
local slot | local slot | ||
Zeile 153: | Zeile 168: | ||
local n = nsDocs | local n = nsDocs | ||
local r = false | local r = false | ||
local sub = "/" .. | local sub = "/" .. fetch( "subTest", "Test" ) | ||
local s = string.format( "%s/%s%s", start, script, sub ) | local s = string.format( "%s/%s%s", start, script, sub ) | ||
local t = mw.title.makeTitle( n, s ) | local t = mw.title.makeTitle( n, s ) | ||
Zeile 189: | Zeile 204: | ||
-- specific -- string, optional; additional information | -- specific -- string, optional; additional information | ||
-- Uses: | -- Uses: | ||
-- | -- fetch() | ||
local show = fetch( "pageErr" ) | |||
local show = | |||
local r | local r | ||
if type( show ) == "string" then | if type( show ) == "string" then | ||
Zeile 199: | Zeile 212: | ||
table.insert( pars, specific ) | table.insert( pars, specific ) | ||
end | end | ||
r = | r = Frame:expandTemplate{ title = show, args = pars } | ||
else | else | ||
local e = mw.html.create( "span" ) | |||
:attr( "class", "error" ) | |||
:wikitext( error( "arg 'pageErr' missing", 3 ) ) | |||
r = tostring( e ) | |||
end | end | ||
return r | return r | ||
Zeile 257: | Zeile 273: | ||
-- ... list of further language codes | -- ... list of further language codes | ||
-- Uses: | -- Uses: | ||
-- | -- fetch() | ||
-- navLang() | -- navLang() | ||
-- mw.title.makeTitle() | -- mw.title.makeTitle() | ||
local e, i, s, t | local e, i, s, t | ||
local r = { } | local r = { } | ||
local specified = | local specified = fetch( "langsRequest", false ) | ||
local super = start .. "/" .. script .. "/" | local super = start .. "/" .. script .. "/" | ||
if type( specified ) == "string" then | if type( specified ) == "string" then | ||
Zeile 269: | Zeile 285: | ||
end | end | ||
end | end | ||
navLang( | navLang( fetch( "langsDefault" ), r, specified ) | ||
navLang( | navLang( fetch( "langsMore" ), r, true ) | ||
navLang( specified, r, false ) | navLang( specified, r, false ) | ||
if #r < 1 then | if #r < 1 then | ||
Zeile 310: | Zeile 326: | ||
-- >< CurrentTitle | -- >< CurrentTitle | ||
-- navLangs() | -- navLangs() | ||
-- navError() | -- navError() | ||
-- mw.title.makeTitle() | -- mw.title.makeTitle() | ||
-- | -- fetch() | ||
local server = mw.site.server | |||
local super = false | local super = false | ||
local collect = navLangs( nsDocs, start, script ) | local collect = navLangs( nsDocs, start, script ) | ||
local t = navDevelop( nsDocs, start, script ) | local t = navDevelop( nsDocs, start, script ) | ||
local r | local low, r, s | ||
if t then | if t then | ||
collect.Test = t | collect.Test = t | ||
Zeile 346: | Zeile 360: | ||
end | end | ||
end | end | ||
if server:match( "%.beta%.wmflabs%.org$" ) then | |||
local slang, series = server:match( "//(%l+)%.(%l+)%." ) | |||
low = true | |||
if series == "wikipedia" then | |||
if slang == "de" then | |||
collect.BETA = "w:de:" --Talk | |||
end | |||
end | |||
end | end | ||
if not | r = Frame:expandTemplate{ title = swift, args = collect } | ||
if | if not low then | ||
s = | t = CurrentTitle.talkPageTitle | ||
if t then | |||
s = t.exists | |||
else | |||
s = false | s = false | ||
end | end | ||
if s then | if not s then | ||
r = r .. navError( s ) | if super then | ||
s = "NoTalkCentral" | |||
elseif ns == nsDocs + 1 then | |||
s = false | |||
else | |||
s = "NoTalkRedir" | |||
end | |||
if s then | |||
r = r .. navError( s ) | |||
end | |||
end | end | ||
end | end | ||
Zeile 369: | Zeile 394: | ||
local p1 = "^%s*" .. d .. "<onlyinclude>" | local p1 = "^%s*" .. d .. "<onlyinclude>" | ||
local p2 = "%s*<noinclude>" .. d .. "</noinclude>" | local p2 = "%s*<noinclude>" .. d .. "</noinclude>" | ||
local space, sub | |||
for i = 3, #collect do | for i = 3, #collect do | ||
t = mw.title.makeTitle( nsDocs, super .. collect[ i ] ) | t = mw.title.makeTitle( nsDocs, super .. collect[ i ] ) | ||
Zeile 380: | Zeile 406: | ||
t.prefixedText ) ) | t.prefixedText ) ) | ||
else | else | ||
r = r .. | r = r .. | ||
Frame:expandTemplate{ title = t.prefixedText } | |||
break -- for i | break -- for i | ||
end | end | ||
end | end | ||
end -- for i | end -- for i | ||
s = | s = fetch( "pageTemplateInsert", "" ) | ||
if | space, sub = s:match( "^([^:]+):(.+)$" ) | ||
local suppress = | if space and mw.title.makeTitle( space, sub ).exists then | ||
local suppress = fetch( "noHint", "" ) | |||
if #suppress == 0 then | if #suppress == 0 then | ||
local swift = collect[ 1 ] | local swift = collect[ 1 ] | ||
Zeile 393: | Zeile 421: | ||
swift = string.format( "%s/%s", swift, sub ) | swift = string.format( "%s/%s", swift, sub ) | ||
end | end | ||
r = r .. | r = r .. Frame:expandTemplate{ title = s, | ||
args = { swift } } | |||
end | end | ||
end | end | ||
s = | s = fetch( "categoryDocs", "" ) | ||
if #s > 0 then | if #s > 0 then | ||
i = mw.title.makeTitle( "Category", s ) | i = mw.title.makeTitle( "Category", s ) | ||
Zeile 423: | Zeile 452: | ||
-- Uses: | -- Uses: | ||
-- >< CurrentTitle | -- >< CurrentTitle | ||
-- | -- fetch() | ||
-- navError() | -- navError() | ||
-- navMerge() | -- navMerge() | ||
local r | local r | ||
local start = | local start = fetch( "pageDocRoot" ) | ||
if type( start ) == "string" then | if type( start ) == "string" then | ||
local s = "^" | local s = "^" | ||
Zeile 435: | Zeile 464: | ||
end | end | ||
s = s .. "([^/]+)/(.*/?)$" | s = s .. "([^/]+)/(.*/?)$" | ||
script, s = | script, s = string.match( CurrentTitle.text .. "/", s ) | ||
if type( script ) == "string" then | if type( script ) == "string" then | ||
local sub = false | local sub = false | ||
local swift = | local swift = fetch( "pageNav" ) | ||
if type( s ) == "string" then | if type( s ) == "string" then | ||
if #s > 1 then | if #s > 1 then | ||
Zeile 470: | Zeile 499: | ||
-- Uses: | -- Uses: | ||
-- >< CurrentTitle | -- >< CurrentTitle | ||
-- | -- fetch() | ||
-- mw.title.getCurrentTitle() | -- mw.title.getCurrentTitle() | ||
-- navPage() | -- navPage() | ||
-- navError() | -- navError() | ||
local r | local r | ||
local nsDocs = | local nsDocs = fetch( "nsDocs" ) | ||
if nsDocs then | if nsDocs then | ||
CurrentTitle = mw.title.getCurrentTitle() | CurrentTitle = mw.title.getCurrentTitle() | ||
Zeile 500: | Zeile 529: | ||
function p.nav( frame ) | function p.nav( frame ) | ||
-- Uses: | -- Uses: | ||
-- navigation() | -- navigation() | ||
local r | local lucky, r | ||
Frame = frame | |||
lucky, r = pcall( navigation ) | |||
if not lucky then | |||
local e = mw.html.create( "span" ) | |||
:attr( "class", "error" ) | |||
:wikitext( r ) | |||
r = tostring( e ) | |||
end | end | ||
return r | return r or "" | ||
end | end | ||