Template:Namespace detect/doc: Difference between revisions

update doc
No edit summary
(update doc)
Line 1: Line 1:
{{Documentation subpage}}
<!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE -->
This is the {{tl|namespace detect}} meta-template.
This is the {{tl|namespace detect}} meta-template.


Line 10: Line 7:
:'''main''' = Main/article space, as in normal Wikipedia articles.
:'''main''' = Main/article space, as in normal Wikipedia articles.
:'''talk''' = Any talk space, such as page names that start with "Talk:", "User talk:", "File talk:" and so on.
:'''talk''' = Any talk space, such as page names that start with "Talk:", "User talk:", "File talk:" and so on.
:'''user, wikipedia, file, mediawiki, template, help, category''' and '''portal''' = The other namespaces except the talk pages.
:'''user, wikipedia, file, mediawiki, template, help, category''', '''portal''' and '''book''' = The other namespaces except the talk pages.
:'''other''' = Any namespaces that were not specified as a parameter to the template. See explanation below.
:'''other''' = Any namespaces that were not specified as a parameter to the template. See explanation below.


Line 17: Line 14:
'''Note!''' For most usage cases it might be better to use the simpler namespace detection templates. (See the [[#See also|see also]] section below.) Since this template is more prone to human errors such as misspelling the parameter names.  
'''Note!''' For most usage cases it might be better to use the simpler namespace detection templates. (See the [[#See also|see also]] section below.) Since this template is more prone to human errors such as misspelling the parameter names.  


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


This template takes one or more parameters named after the different page types as listed above. Like this:
<pre>
<pre>{{namespace detect
{{namespace detect
| main  = Article text
| main  = Article text
| talk  = Talk page text
| talk  = Talk page text
Line 26: Line 24:
}}
}}
</pre>
</pre>
If the template is on a main (article) page, it will return this:  
 
If the template is on a main (article) page, it will return this:


:{{namespace detect| demospace=main
:{{namespace detect| demospace=main
| main = Article text
| main = Article text
| talk = Talk page text
| talk = Talk page text
| other = Other pages text
| other = Other pages text
}}
}}


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


:{{namespace detect
:{{namespace detect
| main = Article text
| main = Article text
| talk = Talk page text
| talk = Talk page text
| other = Other pages text
| other = 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 then it will not return anything for the other page types. Like this:  
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 then it will not return anything for the other page types. Like this:
<pre>{{namespace detect
 
<pre>
{{namespace detect
| file    = File page text
| file    = File page text
| category = Category page text
| category = Category page text
Line 49: Line 50:
}}
}}
</pre>
</pre>
On any pages other than file and category pages the code above will render nothing. <!-- Do not remove this one. It is supposed to render nothing, but we have it here for testing purposes. -->


On any pages other than file and category pages the code above will render nothing.
<!-- Do not remove this one. It is supposed to render nothing, but we have it here for testing purposes. -->
:{{namespace detect
:{{namespace detect
| file = File page text
| file     = File page text
| category = Category page text
| category = Category page text
| other =
| other   =
}}
}}


By using an empty parameter you can make it so the template doesn't render anything for some specific page type. Like this:  
By using an empty parameter you can make it so the template doesn't render anything for some specific page type. Like this:
<pre>{{namespace detect
 
<pre>
{{namespace detect
| main  =  
| main  =  
| other = Other pages text
| other = Other pages text
}}
}}
</pre>
</pre>
The code above will render nothing when on mainspace (article) pages, but will return this when on other pages:  
 
The code above will render nothing when on mainspace (article) pages, but will return this when on other pages:


:{{namespace detect
:{{namespace detect
| main =  
| main =  
| other = Other pages text
| other = Other pages text
}}
}}


=== Demospace ===
=== Demospace and page ===
For testing and demonstration purposes this template can take two parameters named '''demospace''' and '''page'''.


For testing and demonstration purposes this template can take a parameter named '''demospace'''. 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:
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:


<pre>
<pre>
Line 90: Line 96:
}}
}}


It can be convenient to let your template understand the demospace parameter and send it on to the {{tl|namespace detect}} template. Then do like this:
The '''page''' parameter instead takes a normal pagename. It makes this template behave exactly as if on that page. The pagename doesn't have to be an existing page. Like this:
 
<pre>
{{namespace detect
| user  = User page text
| other = Other pages text
| page = User:Example
}}
</pre>
 
No matter on what kind of page the code above is used it will return this:
 
:{{namespace detect
| user  = User page text
| other = Other pages text
| page = User:Example
}}
 
It can be convenient to let your template understand the demospace and/or page parameter and send it on to the {{tl|namespace detect}} template. Then do like this:


<pre>
<pre>
Line 97: Line 121:
| other = Other pages text
| other = Other pages text
| demospace = {{{demospace|}}}
| demospace = {{{demospace|}}}
| page  = {{{page|}}}
}}
}}
</pre>
</pre>


If the '''demospace''' parameter is empty or undefined then the template will detect page types as usual.
If both the '''demospace''' and '''page''' parameters are empty or undefined then the template will detect page types as usual.


=== Parameters ===
=== Parameters ===
List of all parameters:
List of all parameters:


Line 113: Line 137:
| demospace = {{{demospace|}}} / main / talk / user /  
| demospace = {{{demospace|}}} / main / talk / user /  
               wikipedia / file / mediawiki / template /  
               wikipedia / file / mediawiki / template /  
               help / category / portal / other
               help / category / portal / book / other
| page  = {{{page|}}} / User:Example
}}
}}
</pre>
</pre>


Note: Empty values to the "main" ... "portal" parameters do have special meaning.
Note: Empty values to the "main" ... "book" parameters have special meaning.


=== Technical details ===
=== 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".


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".
Namespace "Book" was added to the English Wikipedia on 28 December 2009. This template has been updated so it detects the "Book:" namespace as type '''book''', and it already automatically detected "Book talk:" as type '''talk'''.


If you intend to feed tables as content to the numbered parameters of this template, then you need to know this:
If you intend to feed tables as content to the numbered parameters of this template, then you need to know this:
Line 132: Line 158:
<!-- CATEGORIES AND INTERWIKIS HERE, THANKS -->
<!-- CATEGORIES AND INTERWIKIS HERE, THANKS -->
[[Category:Metatemplates]]
[[Category:Metatemplates]]
[[Category:Namespace manipulation templates]]
</includeonly>
</includeonly>
90,866

edits