• Home
  • Random
  • Log in
  • Settings
  • About English Wikipedia @ Freddythechick
English Wikipedia @ Freddythechick

Template:Namespace detect/sandbox

  • Language
  • Watch
  • View source
< Template:Namespace detect


__EXPECTUNUSEDTEMPLATE__This is the template sandbox page for Template:Namespace detect (diff).
See also the companion subpage for test cases.
Template documentation[view] [edit] [history] [purge]
WarningThis template is used on approximately 462,000 pages, or roughly 3% of all pages.
To avoid major disruption and server load, any changes should be tested in the template's /sandbox or /testcases subpages, or in your own user subpage. The tested changes can be added to this page in a single edit. Consider discussing changes on the talk page before implementing them.
This template uses Lua:
  • Module:Namespace detect (sandbox)

This is the {{Namespace detect}} meta-template. It helps other templates detect what type of page they are on.

It detects and groups all the different namespaces used on Wikipedia into several types:

main
Main (i.e. article) space, where normal Wikipedia articles are kept.
talk
Any talk space, including page names that start with "Talk:", "User talk:", "File talk:", etc.
  • portal
  • category
  • user
  • draft
  • wikipedia
  • mediawiki
  • book
  • timedtext
  • template
  • special
  • media
  • file
  • help
  • module
The remaining namespaces.
other
Any namespaces that were not specified as a parameter to the template (see explanation below).

For backwards compatibility, this template handles image as if file. image ([[Image:...]]) is now deprecated.

Note: For most cases it may be better to use the simpler namespace detection templates (see the see also section below). This template is more prone to human errors such as misspelling parameter names.

Contents

  • 1 Usage
  • 2 Demospace and page
  • 3 Parameters
  • 4 Technical details
  • 5 See also

Usage

This template takes one or more parameters named after the different page types as listed above. Like this:

{{Namespace detect
 | main  = Article text
 | talk  = Talk page text
 | other = Other pages text
}}

If the template is on a main (article) page, it will return this:

Article text

If the template is on any other page than an article or a talk page, it will return this:

Other pages text

The example above made the template return something for all page types. But if we don't use the other parameter or leave it empty, it will not return anything for the other page types. Like this:

{{Namespace detect
 | file     = File page text
 | category = Category page text
 | other    =
}}

On any pages other than file and category pages the code above will render nothing.

By using an empty parameter, you can make it so the template doesn't render anything for some specific page type. Like this:

{{Namespace detect
 | main  = 
 | other = Other pages text
}}

The code above will render nothing when on mainspace (article) pages, but will return this when on other pages:

Other pages text

Demospace and page

For testing and demonstration purposes, this template can take two parameters named demospace and page.

demospace understands any of the page type names used by this template, including the other type. It tells the template to behave like it is on some specific type of page. Like this:

{{Namespace detect
 | main  = Article text
 | other = Other pages text
 | demospace = main
}}

No matter on what kind of page the code above is used, it will return this:

Article text

The page parameter instead takes a normal pagename, making this template behave exactly as if on that page. The pagename doesn't have to be an existing page. Like this:

{{Namespace detect
 | user  = User page text
 | other = Other pages text
 | page  = User:Example
}}

No matter on what kind of page the code above is used, it will return this:

User page text

It can be convenient to let your template understand the demospace and/or page parameter and send it on to the {{Namespace detect}} template. Like this:

{{Namespace detect
 | main  = Article text
 | other = Other pages text
 | demospace = {{{demospace|}}}
 | page  = {{{page|}}}
}}

If both the demospace and page parameters are empty or undefined, the template will detect page types as usual.

Parameters

List of all parameters:

{{Namespace detect
| main  = 
...
| other =
| demospace = {{{demospace|}}} / main / talk / user /
              wikipedia / file / mediawiki / template /
              help / category / portal / other
| page  = {{{page|}}} / User:Example
}}

Note: Empty values to the "main" ... "other" parameters have special meaning.

Technical details

Namespace "Image" was renamed to "File" on 11 December 2008. This template was updated to understand both names well before that, thus it still works fine. For backwards compatibility it still understands "image" both as a parameter name, such as "image = File page text", and as a value "demospace = image".

If you intend to feed tables as content to the numbered parameters of this template, you need to know this:

Templates have a problem handling parameter data that contains pipes "|" unless the pipe is inside another template {{name|param1}} or inside a piped link [[Help:Template|help]]. Thus templates can not handle wikitables as input unless you escape them by using the {{!}} template. This makes it hard to use wikitables as parameters to templates. Instead, the usual solution is to use "HTML wikimarkup" for the table code, which is more robust.

For more technical details, e.g. about copying this template to other projects and CSS-based namespace detection, see {{Main talk other}} and its talk page.

See also

  • Template:SUBJECTSPACE formatted
  • v
  • t
  • e
Namespace and pagename-detecting templates
Namespace
Particular
  • Main other
  • Talk other
  • Category other
  • Draft other
  • File other
    • Is Commons
  • Help other
  • Module other
  • Portal other
  • Template other
  • User other
  • Project other
  • Single namespace
  • If talkspace of
  • If usertalk of
More generic
  • Namespace detect
  • Namespace detect showall
  • Main talk other
    • Main talk other flex
  • Talkspace detect
Pagename
When on basepage
Detects and acts according to whether it is on a basepage or on any subpage (that is, a ../.. subpage).
When pagename is
For pattern matching on the pagename.
Module:Page
Can take apart and put together pagenames in several ways.
IP-talk
Returns IP-user talkpage, registered-user talkpage or non-user talkpage.
IP-user other
For detecting IP-user pages.
Subpage other
Pagename has an after-slash part (not in mainspace)
Sandbox other
Page is subpage /sandbox (template space)
Testcases other
Page is subpage /testcases (template space)
Rootpage other
Page is rootpage (vs. /subpage) (template space)
Others
Stub other
Detects whether it is on a page with a stub template or not.
Redirect other
Detects whether it is on a redirect or not.
If preview
Detects whether page is viewed as a preview or not.
If IP
Displays different content to IP users and logged-in users.
If autoconfirmed
Displays different content to autoconfirmed and non-autoconfirmed users.
If extended confirmed
Displays different content to extended confirmed and non-extended confirmed users.
If administrator
Displays content only to admins.
If mobile
Displays different content to mobile users and desktop users.
If dark
Displays different content to dark mode users and light mode users.
Noscript
Detects whether page is viewed with a JavaScript-capable client or not.
  • Wikipedia:Namespace
  • Wikipedia:Page name
  • Magic words
  • ParserFunctions
The above documentation is transcluded from Template:Namespace detect/doc. (edit | history)
Editors can experiment in this template's sandbox (edit | diff) and testcases (edit) pages.
Add categories to the /doc subpage. Subpages of this template.
Retrieved from "https://enwiki.freddythechick.net/index.php?title=Template:Namespace_detect/sandbox&oldid=1487588"
Last edited on 1 July 2013, at 10:45

Languages

      This page is not available in other languages.

      English Wikipedia @ Freddythechick
      • This page was last edited on 1 July 2013, at 10:45.
      • Content is available under Creative Commons Attribution-ShareAlike 4.0 unless otherwise noted.
      • About English Wikipedia @ Freddythechick
      • Desktop