Module:Documentation: Difference between revisions

use mw.html
No edit summary
(use mw.html)
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 ⟶ 19:
-- table for testing purposes.
----------------------------------------------------------------------------
 
local function message(cfgKey, valArray, expectType)
--[[
Line 39 ⟶ 38:
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 ⟶ 57:
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 ⟶ 84:
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 ⟶ 110:
end
end
 
----------------------------------------------------------------------------
-- Main function
----------------------------------------------------------------------------
 
p.main = makeInvokeFunc('_main')
 
function p._main(args)
--[[
Line 128 ⟶ 127:
--]]
local env = p.getEnvironment(args)
local root = htmlBuildermw.html.create()
root
.:wikitext(p.protectionTemplate(env))
.:wikitext(p.sandboxNotice(args, env))
-- This div tag is from {{documentation/start box}}, but moving it here
-- so that we don't have to worry about unclosed tags.
.:tag('div')
.:attr('id', message('main-div-id'))
.:addClass(message('main-div-classes'))
.:newline()
.:wikitext(p._startBox(args, env))
.:wikitext(p._content(args, env))
.:tag('div')
.:css('clear', 'both') -- So right or left floating items don't stick out of the doc box.
.:newline()
.:done()
.:done()
.:wikitext(p._endBox(args, env))
.:wikitext(p.addTrackingCategories(env))
return tostring(root)
end
 
----------------------------------------------------------------------------
-- Environment settings
----------------------------------------------------------------------------
 
function p.getEnvironment(args)
--[[
Line 178 ⟶ 177:
-- 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 197 ⟶ 196:
end
})
 
function envFuncs.title()
-- The title object for the current page, or a test page passed with args.page.
Line 209 ⟶ 208:
return title
end
 
function envFuncs.templateTitle()
--[[
Line 226 ⟶ 225:
end
end
 
function envFuncs.docTitle()
--[[
Line 243 ⟶ 242:
return mw.title.new(docpage)
end
function envFuncs.sandboxTitle()
--[[
Line 252 ⟶ 251:
return mw.title.new(env.docpageBase .. '/' .. message('sandbox-subpage'))
end
function envFuncs.testcasesTitle()
--[[
Line 261 ⟶ 260:
return mw.title.new(env.docpageBase .. '/' .. message('testcases-subpage'))
end
function envFuncs.printTitle()
--[[
Line 270 ⟶ 269:
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 292 ⟶ 291:
end
end
 
function envFuncs.docpageBase()
-- The base page of the /doc, /sandbox, and /testcases subpages.
Line 302 ⟶ 301:
return docSpaceText .. ':' .. templateTitle.text
end
function envFuncs.compareUrl()
-- Diff link between the sandbox and the main template using [[Special:ComparePages]].
Line 317 ⟶ 316:
end
end
 
return env
end
 
----------------------------------------------------------------------------
-- Auxiliary templates
----------------------------------------------------------------------------
 
function p.sandboxNotice(args, env)
--[=[
Line 398 ⟶ 397:
return ret
end
 
function p.protectionTemplate(env)
-- Generates the padlock icon in the top right.
Line 432 ⟶ 431:
end
end
 
----------------------------------------------------------------------------
-- Start box
----------------------------------------------------------------------------
 
p.startBox = makeInvokeFunc('_startBox')
 
function p._startBox(args, env)
--[[
Line 468 ⟶ 467:
end
end
 
function p.makeStartBoxLinksData(args, env)
--[[
Line 491 ⟶ 490:
return nil
end
 
local data = {}
data.title = title
Line 515 ⟶ 514:
return data
end
 
function p.renderStartBoxLinks(data)
--[[
Line 521 ⟶ 520:
-- @data - a table of data generated by p.makeStartBoxLinksData
--]]
local function escapeBrackets(s)
-- Escapes square brackets with HTML entities.
Line 528 ⟶ 527:
return s
end
 
local ret
local docTitle = data.docTitle
Line 548 ⟶ 547:
return ret
end
 
function p.makeStartBoxData(args, env, links)
--[=[
Line 573 ⟶ 572:
end
local data = {}
-- Heading
local heading = args.heading -- Blank values are not removed.
Line 591 ⟶ 590:
data.heading = message('other-namespaces-heading')
end
-- Heading CSS
local headingStyle = args['heading-style']
Line 603 ⟶ 602:
data.headingFontSize = '150%'
end
-- Data for the [view][edit][history][purge] or [create] links.
if links then
Line 610 ⟶ 609:
data.links = links
end
return data
end
 
function p.renderStartBox(data)
-- Renders the start box html.
-- @data - a table of data generated by p.makeStartBoxData.
local sbox = htmlBuildermw.html.create('div')
sbox
.:css('padding-bottom', '3px')
.:css('border-bottom', '1px solid #aaa')
.:css('margin-bottom', '1ex')
.:newline()
.:tag('span')
.:cssText(data.headingStyleText)
.:css('font-weight', data.headingFontWeight)
.:css('font-size', data.headingFontSize)
.:wikitext(data.heading)
local links = data.links
if links then
sbox.:tag('span')
.:addClass(data.linksClass)
.:attr('id', data.linksId)
.:wikitext(links)
end
return tostring(sbox)
end
 
----------------------------------------------------------------------------
-- Documentation content
----------------------------------------------------------------------------
 
p.content = makeInvokeFunc('_content')
 
function p._content(args, env)
-- Displays the documentation contents
Line 658 ⟶ 657:
return '\n' .. (content or '') .. '\n'
end
 
p.contentTitle = makeInvokeFunc('_contentTitle')
 
function p._contentTitle(args, env)
env = env or p.getEnvironment(args)
Line 670 ⟶ 669:
end
end
 
----------------------------------------------------------------------------
-- End box
----------------------------------------------------------------------------
 
p.endBox = makeInvokeFunc('_endBox')
 
function p._endBox(args, env)
--[=[
Line 690 ⟶ 689:
-- The HTML is generated by the {{fmbox}} template, courtesy of [[Module:Message box]].
--]=]
-- Get environment data.
env = env or p.getEnvironment(args)
Line 698 ⟶ 697:
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 713 ⟶ 712:
return nil
end
 
-- Assemble the arguments for {{fmbox}}.
local fmargs = {}
Line 720 ⟶ 719:
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 747 ⟶ 746:
end
fmargs.text = text
 
return messageBox.main('fmbox', fmargs)
end
 
function p.makeDocPageBlurb(args, env)
--[=[
Line 796 ⟶ 795:
return ret
end
 
function p.makeExperimentBlurb(args, env)
--[[
Line 893 ⟶ 892:
return message(messageName, {sandboxLinks, testcasesLinks})
end
 
function p.makeCategoriesBlurb(args, env)
--[[
Line 910 ⟶ 909:
return message('add-categories-blurb', {docPathLink})
end
 
function p.makeSubpagesBlurb(args, env)
--[[
Line 916 ⟶ 915:
-- @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 942 ⟶ 941:
return message('subpages-blurb', {subpagesLink})
end
 
function p.makePrintBlurb(args, env)
--[=[
Line 972 ⟶ 971:
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,008 ⟶ 1,007:
return ret
end
 
return p
Anonymous user