Module:Taxonbar/exists/sandbox
Jump to navigation
Jump to search
| This is the module sandbox page for Module:Taxonbar/exists (diff). |
File:Test Template Info-Icon - Version (2).svg Module documentation[view] [edit] [history] [purge]
| This Lua module is used on approximately 488,000 pages. 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. Consider discussing changes on the talk page before implementing them. |
| This module depends on the following other modules: |
About
[edit source]Checks the page for transclusions of {{Taxonbar}} and its redirects, returning true, false, or commented.
Usage
[edit source]local taxonbarExists = require('Module:Taxonbar/exists').check
See also
[edit source]- {{Taxonbar/candidate}}
- {{Taxobox/core}}
local p = {}
function p.check( frame )
local pagename = mw.title.getCurrentTitle().text
local content = mw.title.new(pagename):getContent() or ''
-------sandbox only: do not include this if-statement in the live module!-------
if string.match(pagename, 'sandbox') or
string.match(pagename, 'testcases') then
content = mw.title.new(pagename, 'Template'):getContent() or ''
end
-------sandbox only: do not include this if-statement in the live module!-------
local getRegex = require('Module:Template redirect regex').main
local tregex = getRegex('Taxonbar')
for _, v in pairs (tregex) do
local found = string.match(content, v)
if found then
local v_cmt_before = '%<%!%-%-%s*'..v
local v_cmt_after = v..'[^{}]*}}%s*-->'
local found_cmt = mw.ustring.match(content, v_cmt_after) or 'nomatch'
if found_cmt then return 'commented'
else return true end
end
end
return false
end
return p