Module:WP
Appearance
![]() | This module depends on the following other modules: |
Implements {{WP}}
require('Module:No globals');
local getArgs = require ('Module:Arguments').getArgs;
local mRedirect = require ('Module:Redirect')
--[[--------------------------< E S C A P E _ L U A _ M A G I C _ C H A R S >----------------------------------
Returns a string where all of lua's magic characters have been escaped. This is important because functions like
string.gsub() treat their pattern and replace strings as patterns, not literal strings.
]]
local function escape_lua_magic_chars (argument)
argument = argument:gsub("%%", "%%%%"); -- replace % with %%
argument = argument:gsub("([%^%$%(%)%.%[%]%*%+%-%?])", "%%%1"); -- replace all other lua magic pattern characters
return argument;
end
--[[--------------------------< E R R >------------------------------------------------------------------------
returns formatted error message that is less strident than error() or standard MediaWiki error messages
TODO: add link to template page for help text
]]
local function err (error_msg)
return '<span class="error" style="font-size:100%">' .. error_msg .. '</span>'; -- tamer, less strident error messages
end
-- Get a redirect target (or nil if not a redirect) without using the expensive title object property .isRedirect
local function getRedirectTarget(titleObject)
local content = titleObject:getContent()
if not content then return nil end
return mRedirect.getTargetFromText(content)
end
-- Get a page's content, following redirects, and processing file description pages for files.
-- Also returns the page name, or the target page name if a redirect was followed, or false if no page found
local function getContent(page, frame)
local title = mw.title.new(page) -- Read description page (for :File:Foo rather than File:Foo)
if not title then return false, false end
local redir = getRedirectTarget(title)
if redir then title = mw.title.new(redir) end
return title:getContent(), redir or title.prefixedText
end
--[=[-------------------------< W I K I L I N K _ S T R I P >--------------------------------------------------
Wikilink markup does not belong in an anchor id and can / does confuse the code that parses apart citation and
harvc templates so here we remove any wiki markup:
[[link|label]] -> label
[[link]] -> link
]=]
local function wikilink_strip(text)
for wikilink in text:gmatch('%[%b[]%]') do -- get a wikilink
text = text:gsub('%[%b[]%]', '__57r1P__', 1) -- install a marker
if wikilink:match ('^%[%[%s*[Ff]ile:') or wikilink:match ('^%[%[%s*[Ii]mage:') then -- if this wikilink is an image
wikilink = '[IMAGE]'; -- can't display it in a tooltip so use a word; TODO: parse out alt text or caption? worth the effort?
elseif wikilink:match('%[%[.-|(.-)%]%]') then
wikilink = wikilink:match('%[%[.-|(.-)%]%]') -- extract label from complex [[link|label]] wikilink
else
wikilink = wikilink:match('%[%[(.-)%]%]') -- extract link from simple [[link]] wikilinks
end
wikilink = escape_lua_magic_chars(wikilink) -- in case there are lua magic characters in wikilink
text = text:gsub('__57r1P__', wikilink, 1) -- replace the marker with the appropriate text
end
return text
end
--[[--------------------------< T I T L E _ M A K E >----------------------------------------------------------
makes a prefix for the tooltip from {{nutshell}} |title= parameter value, if present, normalised_pagename else
Because we are evaluating the content of normalised_pagename, we set the frag_flag here when normalised_pagename
has an anchor fragment (WP:<article name>#<anchor>)
]]
local function title_make (title_param, normalised_pagename)
local frag_flag;
local c;
normalised_pagename, c = normalised_pagename:gsub ('#.*$', ''); -- remove section fragment if any
if 0 < c then
frag_flag = true; -- when fragment removed, set the flag
end
if '' == title_param then
title_param = '"' .. normalised_pagename .. '"'; -- use shortcut target's pagename when |title= missing or empty
end
return title_param, frag_flag;
end
--[[--------------------------< T O O L T I P _ M A K E >------------------------------------------------------
assemble the tooltip (title= attribute value)
]]
local function tooltip_make (title_param, nutshell, frag_flag)
return table.concat ({
title_param, -- the tooltip prefix (usually WP: article name)
('' ~= nutshell and ' in a nutshell: ' or ''), -- when there is nutshell text
nutshell,
(frag_flag and ' (subsection link)' or ''), -- when WP: article name has a fragment
});
end
--[[--------------------------< N U T S H E L L _ T E X T _ G E T >--------------------------------------------
gets text from {{nutshell}} or redirect in target pagename; frame included as argument here so that this function
has access to frame:preprocess()
pagename is shortcut name with WP: prefix
]]
local function nutshell_text_get (pagename, frame)
local content, normalisedPagename = getContent(pagename)
local c; -- general purpose var holds the tally of gsub() replacements made when needed
local title_param; -- {{nutshell}} |title= parameter contents and value used in tooltip rendering
local frag_flag; -- boolean set true when normalized page name has a fragment (WP:<page title>#<anchor name>)
if not normalisedPagename then
return nil, 'No title for page name ' .. pagename;
end
if not content then
return nil, 'Cannot read a valid page: page name is ' .. pagename;
end
local templatePatterns = {
"{{%s*[Nn]utshell%s*|",
"{{%s*[Pp]olicy in a nutshell%s*|",
"{{%s*[Pp]olicy proposal in a nutshell%s*|",
"{{%s*[Ii]n a nutshell%s*|",
"{{%s*[Ii]nanutshell%s*|",
"{{%s*[Gg]uideline in a nutshell%s*|",
"{{%s*[Gg]uideline one liner%s*|",
"{{%s*[Nn]aming convention in a nutshell%s*|",
"{{%s*[Nn]utshell2%s*|",
"{{%s*[Pp]roposal in a nutshell%s*|",
"{{%s*[Ee]ssay in a nutshell%s*|"
}
local nutshell
for i, pattern in ipairs (templatePatterns) do
local pos = mw.ustring.find (content, pattern)
if pos then
nutshell = mw.ustring.match (content, '%b{}', pos)
break
end
end
if not nutshell then -- nil when there is no recognized nutshell template
title_param, frag_flag = title_make ('', normalisedPagename);
return tooltip_make (title_param, '', frag_flag); -- nutshell doesn't exist so empty string for concatenation
end
-- begin template disassembly - order is important here - rare case where |title= holds a template
nutshell = nutshell:gsub ('^{{[%w%s]*|', ''):gsub ('}}$', ''); -- remove opening {{ and template name then remove closing }}
for t in nutshell:gmatch('%b{}') do -- get an embedded template
nutshell = nutshell:gsub('%b{}', '__57r1P__', 1) -- install a marker
local replacement = frame:preprocess (t); -- get the template's rendering
replacement = escape_lua_magic_chars(replacement); -- in case there are lua magic characters in replacement
nutshell = nutshell:gsub('__57r1P__', replacement, 1) -- replace the marker with the appropriate text
end
nutshell = wikilink_strip (nutshell); -- remove wikilinks
local title_param = nutshell:match ('|%s*title%s*=%s*([^|]+)') or ''; -- get title text or an empty string
title_param = mw.text.trim (title_param); -- remove extraneous leading / trailing whitespace
title_param, frag_flag = title_make (title_param, normalisedPagename); -- get content from {{nutshell}} |title= param if present, else concot a title
nutshell = nutshell:gsub ('|%s*title%s*=%s*[^|]*', ''); -- remove title parameter and value; TODO: these two can be made one?
nutshell = nutshell:gsub ('|%s*shortcut%d*%s*[^|]*', ''); -- remove all shortcut parameters and their values
nutshell, c = nutshell:gsub ('%s*|%s*', ' *'); -- replace pipes and get a tally
if 0 < c then
nutshell = '*' .. nutshell; -- if any pipes were replaced, prefix with a splat
end
nutshell = nutshell:gsub ('"', '"'):gsub ('%b<>', ''); -- convert double quote characters to html entities then remove html-like tags
-- end template disassembly
return tooltip_make (title_param, nutshell, frag_flag);
end
--[[--------------------------< M A I N >----------------------------------------------------------------------
template entry point
{{#invoke:Nutshell|invoke|<pagename>}} where <pagename> is shortcut name without namespace prefix; BOLD not WP:BOLD
TODOs:
accept <pagename> with namespace prefix and strip the prefix if it is WP:
what about {{nutshell}} used in other namespaces? allowed? not allowed?
what about other namespaces?
MOS:SELFREF redirects to WP:SELF so this code works
MOS:LIST fails because changing to WP:LIST points to a dab page
]]
local function main (frame)
local args = getArgs (frame); -- get a table of arguments
local out = {}
local pagename = args[1]; -- TODO: error check this; no point in continuing without properly formed pagename
if not pagename or '' == pagename then
return err ('No page name given');
end
local namespace = pagename:match ('^(%u+):%a+');
if namespace then
if ('WP' ~= namespace) and ('MOS' ~= namespace) then -- only accepted namespace prefixes
pagename = pagename:gsub ('^%u+:(%a+)', 'WP:%1'); -- replace whatever namespace is included and rewrite to WP: namespace
end
else
pagename = 'WP:' .. pagename; -- add WP: namespace
end
-- if pagename:match ('%u+:(%a+)') then
-- pagename = pagename:gsub ('%u+:(%a+)', 'WP:%1'); -- replace whatever namespace is included and rewrite to WP: namespace
-- else
-- pagename = 'WP:' .. pagename; -- add WP: namespace
-- end
local nutshell, error_msg = nutshell_text_get (pagename, frame); -- pass frame so that nutshell_text_get() has access to frame:preprocess()
if error_msg then
return err (error_msg);
end
table.insert (out, '[['); -- open wikilink
table.insert (out, pagename); -- add pagename
if nutshell then
table.insert (out, '|<span title="'); -- pipe, then start the opening span
table.insert (out, nutshell); -- add nutshell text
table.insert (out, '" class="rt-commentedText" style="border-bottom:1px dotted">'); --finish the opening span
table.insert (out, pagename); -- add pagename
table.insert (out, '</span>'); -- close the span
end
table.insert (out, ']]'); -- close the wikilink
return table.concat (out); -- concatenate and done
end
--[[--------------------------< E X P O R T E D F U N C T I O N S >------------------------------------------
]]
return {
main = main,
}