Difference between revisions of "Module:Ns has subpages"

From blackwiki
Jump to navigation Jump to search
test>Mr. Stradivarius
m (Changed protection level of Template:Ns has subpages: Highly visible template: allow template editors ([Edit=Allow only template editors and admins] (indefinite) [Move=Allow only template editors and admins] (indefinite)))
test>Mr. Stradivarius
(convert this to use Module:Ns has subpages - this gets the subpage status directly from MediaWiki, avoiding the need to update the template when namespaces change)
Line 1: Line 1:
{{ {{{|safesubst:}}}#switch: {{ {{{|safesubst:}}}NAMESPACE: {{{1|{{ {{{|safesubst:}}}FULLPAGENAME}}}}}:Foo }}
+
{{<includeonly>safesubst:</includeonly>#invoke:Ns has subpages|main}}<noinclude>
|{{ {{{|safesubst:}}}ns:0}}
 
|{{ {{{|safesubst:}}}ns:File}}
 
|{{ {{{|safesubst:}}}ns:MediaWiki}}
 
|{{ {{{|safesubst:}}}ns:Category}} =
 
|yes
 
}}<noinclude>
 
 
{{documentation}}
 
{{documentation}}
 
+
<!-- Categories go on the /doc subpage and interwikis go on Wikidata. -->
 
</noinclude>
 
</noinclude>

Revision as of 06:37, 10 December 2014

Script error: No such module "Ns has subpages".

Module documentation[view] [edit] [history] [purge]

This module finds whether a given namespace can have subpages.

Usage

From wikitext

From wikitext this module must be used via the {{ns has subpages}} template. Please see the template page for documentation.

From Lua

Usually Lua modules should use mw.site.namespaces[namespace].hasSubpages rather than this module. But if you have a good reason, it can be accessed like this:

Load the module:

local mNsHasSubpages = require('Module:Ns has subpages')

The subpage information can be found with the ._main function:

mNsHasSubpages._main(ns, frame)
  • ns is the namespace name, number, or a page name. It defaults to the current namespace.
  • frame is a frame object with which we can call frame:callParserFunction if necessary. This is optional, and intended for internal use.