模板:Namespace detect/doc

出自 糖果の知識百科
< 模板:Namespace detect
於 2016年3月10日 (四) 16:16 由 Apolloprofly對話 | 貢獻 所做的修訂 (新頁面: đ<includeonly><!-- 在這裡加入模板的保護標識 --></includeonly> {{Documentation subpage}} {{high-use| 65,000+ }} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF T...)
(差異) ←上個修訂 | 最新修訂 (差異) | 下個修訂→ (差異)
跳至導覽 跳至搜尋

đ {{#if: |

40px 本-{zh-cn:文档; zh-tw:文件;}-是模板:Namespace detect模板-{zh-cn:文档; zh-tw:文件;}-页。
This page may not be intended to be viewed directly.
Links using variables may appear broken; do not replace these with hardcoded page names or URLs.

{{#if:x||

}} |{{#ifeq: doc | doc

 | 

{{

   #ifeq: show | show
   | {{
 {{#switch:
 {{#if: 
   | 
   | {{#ifeq:模板|
     | main
     | {{#ifeq:模板|模板討論
       | talk
       | 模板 
       }}
     }} 
   }}

| main = ambox | talk = tmbox | user = ombox | wikipedia = ombox | image = ombox | mediawiki = ombox | template = ombox | help = ombox | category = cmbox | portal = ombox | other | #default = ombox

}} | type = notice | image = 40px | imageright = | class = | style = | textstyle = | text = 本-{zh-cn:文档; zh-tw:文件;}-是模板:Namespace detect-{zh-cn:文档; zh-tw:文件;}-子页面(见{{ #if: 模板 | 模板:subjectspace zh | 条目 }}页自身)
本页包含用法-{zh-cn:信息; zh-tw:資訊;}-、分类和其他非原{{ #if: 模板 |模板:subjectspace zh页面|条目}}的内容。 | small = | smallimage = | smallimageright = | smalltext = | subst = | date = | name = | textconvert= }}

   }}{{
   #if: 
   | 
   | [[Category:{{
     #if: 模板
     | 模板:SUBJECTSPACE ZH
     |條目
   }}說明文件]]
 }}

| }} }} 模板:High-use

This is the {{[[{{#switch:

|#default = Namespace detect 
| = 
   {{#ifeq:  | 
     | Template:namespace detect            
     | Namespace detect      
   }}

}}|namespace detect]]{{#if:||{{{arg}}}}}}} 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/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.
user, wikipedia, file, mediawiki, template, help, category and portal = The other namespaces except the talk pages.
other = Any namespaces that were not specified as a parameter to the template. See explanation below.

For backwards compatibility this template also understands the old name image for file. But using image is now deprecated.

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

用法

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:

{{#switch:
 {{#if:main 
   | main
   | {{#ifeq:模板|
     | main
     | {{#ifeq:模板|模板討論
       | talk
       | 模板 
       }}
     }} 
   }}

| main = Article text | talk = Talk page text | user = Other pages text | wikipedia = Other pages text | image = Other pages text | mediawiki = Other pages text | template = Other pages text | help = Other pages text | category = Other pages text | portal = Other pages text | other | #default = Other pages text

}}

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

{{#switch:
 {{#if: 
   | {{{demospace}}}
   | {{#ifeq:模板|
     | main
     | {{#ifeq:模板|模板討論
       | talk
       | 模板 
       }}
     }} 
   }}

| main = Article text | talk = Talk page text | user = Other pages text | wikipedia = Other pages text | image = Other pages text | mediawiki = Other pages text | template = Other pages text | help = Other pages text | category = Other pages text | portal = Other pages text | other | #default = 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:

{{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.

{{#switch:
 {{#if: 
   | {{{demospace}}}
   | {{#ifeq:模板|
     | main
     | {{#ifeq:模板|模板討論
       | talk
       | 模板 
       }}
     }} 
   }}

| main = | talk = | user = | wikipedia = | image = | mediawiki = | template = | help = | category = Category page text | portal = | other | #default =

}}

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:

{{#switch:
 {{#if: 
   | {{{demospace}}}
   | {{#ifeq:模板|
     | main
     | {{#ifeq:模板|模板討論
       | talk
       | 模板 
       }}
     }} 
   }}

| main = | talk = Other pages text | user = Other pages text | wikipedia = Other pages text | image = Other pages text | mediawiki = Other pages text | template = Other pages text | help = Other pages text | category = Other pages text | portal = Other pages text | other | #default = Other pages text

}}

Demospace

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:

{{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:

{{#switch:
 {{#if:main 
   | main
   | {{#ifeq:模板|
     | main
     | {{#ifeq:模板|模板討論
       | talk
       | 模板 
       }}
     }} 
   }}

| main = Article text | talk = Other pages text | user = Other pages text | wikipedia = Other pages text | image = Other pages text | mediawiki = Other pages text | template = Other pages text | help = Other pages text | category = Other pages text | portal = Other pages text | other | #default = Other pages text

}}

It can be convenient to let your template understand the demospace parameter and send it on to the {{[[{{#switch:

|#default = Namespace detect 
| = 
   {{#ifeq:  | 
     | Template:namespace detect            
     | Namespace detect      
   }}

}}|namespace detect]]{{#if:||{{{arg}}}}}}} template. Then do like this:

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

If the demospace parameter is empty or undefined then 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
}}

Note: Empty values to the "main" ... "portal" parameters do 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, then you need to know this:

Templates do have a problem to handle parameter data that contains pipes "|", unless the pipe is inside another template {{name|param1}} or inside a piped link [[帮助:模板|help]]. Thus templates can not handle wikitables as input unless you escape them by using the 模板:Tn 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 such as about "copying to other projects" and "CSS based namespace detection" see {{[[{{#switch:

|#default = Main talk other 
| = 
   {{#ifeq:  | 
     | Template:main talk other            
     | Main talk other      
   }}

}}|main talk other]]{{#if:||{{{arg}}}}}}} and its talk page.

參見

模板:Namespace detect see also