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]].
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
function p.makeWikilink(page, display)
if display then
return string.format('[[%s|%s]]', page, display)
else
return string.format('[[%s]]', page)
end
end
function p.makeUrlLink(page, query, display)
query = query or {}
local url = mw.uri.fullUrl(page, query)
url = tostring(url)
if display then
return string.format('[%s %s]', url, display)
else
return string.format('[%s]', url)
end
end
return p