Module:Citation mode
{{#ifeq:citation mode |doc
|
{{#ifeq:show |show
|
| Fichier:Edit-copy green.svg | This is a documentation subpage for Module:Citation mode{{#if:||.}} It may contain usage information, categories and other content that is not part of the original {{#if: |{{{text2}}} |{{#if: |{{{text1}}} |{{#ifeq:Module |Utilisateur |module template page |{{#if:Module |module page|article}}}}}}}}. |
}}{{#if: |
| {{#ifexist:Module:Citation mode
| [[Category:{{#switch:Module |Template=Template |Module=Module |User=User |#default=Wikipedia}} documentation pages]]
|
}}
}}
|
}}
| Warning | This Lua module is used on approximately 2 700 pages and changes may be widely noticed. Test changes in the module's /sandbox or /testcases subpages, or in your own module sandbox. Consider discussing changes on the talk page before implementing them. |
Function that suppresses mode if {{CS1 config}} mode is set on page. This is to prevent pages for being incorrectly added to Category:CS1 maint: overridden setting.
Usage[modifier]
{{#invoke:Citation mode|main|mode}}
- returns empty if {{CS1 config}} mode is set on page, otherwise returns mode argument.
{{#if:{{#ifeq:Citatio|sandbox|1}}{{#ifeq:Citation mode|doc|1}}||
}}
require ('strict')
local p = {}
-- determine whether we're being called from a sandbox
local isSandbox = mw.getCurrentFrame():getTitle():find('sandbox', 1, true)
local sandbox = isSandbox and '/sandbox' or ''
local cfg = mw.loadData ('Module:Citation/CS1/Configuration' .. sandbox)
-- if cs1 config is set, return false, otherwise use supplied mode
-- this prevents putting articles into "overriden mode" tracking category
function p._main(mode)
return not cfg.global_cs1_config_t['Mode'] and mode
end
function p.main(frame)
local getArgs = require('Module:Arguments').getArgs
local args = getArgs(frame)
return p._main(args[1]) or ""
end
return p