Module:Documentation: Difference between revisions

remove extra newline before p.addTrackingCategories
No edit summary
(remove extra newline before p.addTrackingCategories)
Line 1:
-- This module implements {{documentation}}.
 
-- Get required modules.
local getArgs = require('Module:Arguments').getArgs
local htmlBuilder = require('Module:HtmlBuilder')
local messageBox = require('Module:Message box')
 
-- Get the config table.
local cfg = mw.loadData('Module:Documentation/config')
 
local p = {}
 
-- Often-used functions.
local ugsub = mw.ustring.gsub
 
----------------------------------------------------------------------------
-- Helper functions
Line 20:
-- table for testing purposes.
----------------------------------------------------------------------------
 
local function message(cfgKey, valArray, expectType)
--[[
Line 39:
return msg
end
 
local function getMessageVal(match)
match = tonumber(match)
return valArray[match] or error('message: no value found for key $' .. match .. ' in message cfg.' .. cfgKey, 4)
end
 
local ret = ugsub(msg, '$([1-9][0-9]*)', getMessageVal)
return ret
end
 
p.message = message
 
local function makeWikilink(page, display)
if display then
Line 58:
end
end
 
p.makeWikilink = makeWikilink
 
local function makeCategoryLink(cat, sort)
local catns = mw.site.namespaces[14].name
return makeWikilink(catns .. ':' .. cat, sort)
end
 
p.makeCategoryLink = makeCategoryLink
 
local function makeUrlLink(url, display)
return mw.ustring.format('[%s %s]', url, display)
end
 
p.makeUrlLink = makeUrlLink
 
local function makeToolbar(...)
local ret = {}
Line 85:
return '<small style="font-style: normal;">(' .. table.concat(ret, ' &#124; ') .. ')</small>'
end
 
p.makeToolbar = makeToolbar
 
----------------------------------------------------------------------------
-- Argument processing
----------------------------------------------------------------------------
 
local function makeInvokeFunc(funcName)
return function (frame)
Line 111:
end
end
 
----------------------------------------------------------------------------
-- Main function
----------------------------------------------------------------------------
 
p.main = makeInvokeFunc('_main')
 
function p._main(args)
--[[
Line 146:
.done()
.wikitext(p._endBox(args, env))
.newline()
.wikitext(p.addTrackingCategories(env))
return tostring(root)
end
 
----------------------------------------------------------------------------
-- Environment settings
----------------------------------------------------------------------------
 
function p.getEnvironment(args)
--[[
Line 179 ⟶ 178:
-- returned will be nil.
--]]
local env, envFuncs = {}, {}
 
-- Set up the metatable. If triggered we call the corresponding function in the envFuncs table. The value
-- returned by that function is memoized in the env table so that we don't call any of the functions
Line 198 ⟶ 197:
end
})
 
function envFuncs.title()
-- The title object for the current page, or a test page passed with args.page.
Line 210 ⟶ 209:
return title
end
 
function envFuncs.templateTitle()
--[[
Line 227 ⟶ 226:
end
end
 
function envFuncs.docTitle()
--[[
Line 244 ⟶ 243:
return mw.title.new(docpage)
end
function envFuncs.sandboxTitle()
--[[
Line 253 ⟶ 252:
return mw.title.new(env.docpageBase .. '/' .. message('sandbox-subpage'))
end
function envFuncs.testcasesTitle()
--[[
Line 262 ⟶ 261:
return mw.title.new(env.docpageBase .. '/' .. message('testcases-subpage'))
end
function envFuncs.printTitle()
--[[
Line 271 ⟶ 270:
return env.templateTitle:subPageTitle(message('print-subpage'))
end
 
function envFuncs.protectionLevels()
-- The protection levels table of the title object.
return env.title.protectionLevels
end
 
function envFuncs.subjectSpace()
-- The subject namespace number.
return mw.site.namespaces[env.title.namespace].subject.id
end
 
function envFuncs.docSpace()
-- The documentation namespace number. For most namespaces this is the same as the
Line 293 ⟶ 292:
end
end
 
function envFuncs.docpageBase()
-- The base page of the /doc, /sandbox, and /testcases subpages.
Line 303 ⟶ 302:
return docSpaceText .. ':' .. templateTitle.text
end
function envFuncs.compareUrl()
-- Diff link between the sandbox and the main template using [[Special:ComparePages]].
Line 318 ⟶ 317:
end
end
 
return env
end
 
----------------------------------------------------------------------------
-- Auxiliary templates
----------------------------------------------------------------------------
 
function p.sandboxNotice(args, env)
--[=[
Line 399 ⟶ 398:
return ret
end
 
function p.protectionTemplate(env)
-- Generates the padlock icon in the top right.
Line 428 ⟶ 427:
end
end
 
----------------------------------------------------------------------------
-- Start box
----------------------------------------------------------------------------
 
p.startBox = makeInvokeFunc('_startBox')
 
function p._startBox(args, env)
--[[
Line 464 ⟶ 463:
end
end
 
function p.makeStartBoxLinksData(args, env)
--[[
Line 487 ⟶ 486:
return nil
end
 
local data = {}
data.title = title
Line 511 ⟶ 510:
return data
end
 
function p.renderStartBoxLinks(data)
--[[
Line 517 ⟶ 516:
-- @data - a table of data generated by p.makeStartBoxLinksData
--]]
local function escapeBrackets(s)
-- Escapes square brackets with HTML entities.
Line 524 ⟶ 523:
return s
end
 
local ret
local docTitle = data.docTitle
Line 544 ⟶ 543:
return ret
end
 
function p.makeStartBoxData(args, env, links)
--[=[
Line 569 ⟶ 568:
end
local data = {}
-- Heading
local heading = args.heading -- Blank values are not removed.
Line 587 ⟶ 586:
data.heading = message('other-namespaces-heading')
end
-- Heading CSS
local headingStyle = args['heading-style']
Line 599 ⟶ 598:
data.headingFontSize = '150%'
end
-- Data for the [view][edit][history][purge] or [create] links.
if links then
Line 606 ⟶ 605:
data.links = links
end
return data
end
 
function p.renderStartBox(data)
-- Renders the start box html.
Line 633 ⟶ 632:
return tostring(sbox)
end
 
----------------------------------------------------------------------------
-- Documentation content
----------------------------------------------------------------------------
 
p.content = makeInvokeFunc('_content')
 
function p._content(args, env)
-- Displays the documentation contents
Line 654 ⟶ 653:
return '\n' .. (content or '') .. '\n'
end
 
p.contentTitle = makeInvokeFunc('_contentTitle')
 
function p._contentTitle(args, env)
env = env or p.getEnvironment(args)
Line 666 ⟶ 665:
end
end
 
----------------------------------------------------------------------------
-- End box
----------------------------------------------------------------------------
 
p.endBox = makeInvokeFunc('_endBox')
 
function p._endBox(args, env)
--[=[
Line 686 ⟶ 685:
-- The HTML is generated by the {{fmbox}} template, courtesy of [[Module:Message box]].
--]=]
-- Get environment data.
env = env or p.getEnvironment(args)
Line 694 ⟶ 693:
return nil
end
-- Check whether we should output the end box at all. Add the end
-- box by default if the documentation exists or if we are in the
Line 709 ⟶ 708:
return nil
end
 
-- Assemble the arguments for {{fmbox}}.
local fmargs = {}
Line 716 ⟶ 715:
fmargs.style = message('fmbox-style') -- Sets 'background-color: #ecfcf4'
fmargs.textstyle = message('fmbox-textstyle') -- 'font-style: italic;'
 
-- Assemble the fmbox text field.
local text = ''
Line 743 ⟶ 742:
end
fmargs.text = text
 
return messageBox.main('fmbox', fmargs)
end
 
function p.makeDocPageBlurb(args, env)
--[=[
Line 792 ⟶ 791:
return ret
end
 
function p.makeExperimentBlurb(args, env)
--[[
Line 889 ⟶ 888:
return message(messageName, {sandboxLinks, testcasesLinks})
end
 
function p.makeCategoriesBlurb(args, env)
--[[
Line 906 ⟶ 905:
return message('add-categories-blurb', {docPathLink})
end
 
function p.makeSubpagesBlurb(args, env)
--[[
Line 912 ⟶ 911:
-- @args - a table of arguments passed by the user
-- @env - environment table containing title objects, etc., generated with p.getEnvironment
-- Messages:
-- 'template-pagetype' --> 'template'
Line 938 ⟶ 937:
return message('subpages-blurb', {subpagesLink})
end
 
function p.makePrintBlurb(args, env)
--[=[
Line 968 ⟶ 967:
return ret
end
 
----------------------------------------------------------------------------
-- Tracking categories
----------------------------------------------------------------------------
 
function p.addTrackingCategories(env)
--[[
-- Check if {{documentation}} is transcluded on a /doc or /testcases page.
-- @env - environment table containing title objects, etc., generated with p.getEnvironment
-- Messages:
-- 'display-strange-usage-category' --> true
Line 1,004 ⟶ 1,003:
return ret
end
 
return p
Anonymous user