Module:UserLinks/shared
Appearance
![]() | This module is rated as ready for general use. It has reached a mature form and is thought to be relatively bug-free and ready for use wherever appropriate. It is ready to mention on help pages and other Wikipedia resources as an option for new users to learn. To reduce server load and bad output, it should be improved by sandbox testing rather than repeated trial-and-error editing. |
![]() | This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing. |
![]() | This Lua module is used in system messages, and on approximately 1,030,000 pages, or roughly 2% of all pages. Changes to it can cause immediate changes to the Wikipedia user interface. To avoid major disruption and server load, any changes should be tested in the module's /sandbox or /testcases subpages, or in your own module sandbox. The tested changes can be added to this page in a single edit. Please discuss changes on the talk page before implementing them. |
![]() | This module depends on the following other modules: |
This module stores functions that are shared between Module:UserLinks and Module:UserLinks/extra.
-- This module stores functions that are shared between [[Module:UserLinks]]
-- and [[Module:UserLinks/extra]].
-- Load data and define often-used variables
local cfg = mw.loadData('Module:UserLinks/config')
local namespaces = mw.site.namespaces
-- Define namespaces for which links need to be escaped with the colon trick.
-- See [[w:en:Help:Colon trick]].
local colonNamespaces = {
[6] = true, -- File
[14] = true, -- Category
}
local p = {}
function p.raiseError(message, section, level)
if section then
message = message .. '|' .. section
end
if not level or level == 0 then
level = 0
else
level = level + 1
end
error(message, level)
end
function p.makeWikitextError(encodedMessage, demo)
local message, section = mw.ustring.match(encodedMessage, '^(.-)|(.*)$')
message = message or encodedMessage
if section then
section = ' ([[Template:User-multi#' .. section .. '|help]])'
else
section = ''
end
local category
if not demo then
category = '[[Category:UserLinks transclusions with errors]]'
mCategoryHandler = require('Module:Category handler')
category = mCategoryHandler.main{
all = category -- Categorise all namespaces, but not blacklisted pages.
}
end
category = category or ''
return string.format(
'<strong class="error">[[Template:User-multi|User-multi]] error: %s%s.</strong>%s',
message, section, category
)
end
local function formatPage(interwiki, namespace, page)
namespace = namespace or error('no namespace defined', 2)
local ret = {}
interwiki = interwiki or ''
if interwiki ~= '' or colonNamespaces[namespace] then
ret[#ret + 1] = ':'
end
ret[#ret + 1] = interwiki
if interwiki ~= '' then
ret[#ret + 1] = ':'
end
ret[#ret + 1] = namespaces[namespace].name
if namespace ~= 0 then
ret[#ret + 1] = ':'
end
ret[#ret + 1] = page
return table.concat(ret)
end
function p.makeWikilink(interwiki, namespace, page, display)
local formattedPage = formatPage(interwiki, namespace, page)
if display then
display = display:gsub(' ', ' ')
return string.format('[[%s|%s]]', formattedPage, display)
else
return string.format('[[%s]]', formattedPage)
end
end
function p.makeUrlLink(interwiki, namespace, page, query, display)
local formattedPage = formatPage(interwiki, namespace, page)
query = query or {}
local url = mw.uri.fullUrl(formattedPage, query)
url = tostring(url)
if display then
display = display:gsub(' ', ' ')
return string.format('[%s %s]', url, display)
else
return string.format('[%s]', url)
end
end
function p.message(key)
local msg = cfg[key]
return msg or p.raiseError(
'No message found with key "' .. tostring(key) .. '"',
'No message found',
2
)
end
return p