ಟೆಂಪ್ಲೇಟು:Basepage subpage/doc
This is a documentation subpage for ಟೆಂಪ್ಲೇಟು:Basepage subpage It may contain usage information, categories and other content that is not part of the original ಟೆಂಪ್ಲೇಟು page. |
This template is used on ೪,೧೦,೦೦೦+ pages, or roughly 289% 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 is the {{Basepage subpage}}
meta-template.
This template helps other templates detect if they are on a basepage, subpage or subsubpage. However, a subpage can be detected without using another template, by instead using a single #ifeq
with parser function #titleparts
(see below: Alternatives for simpler text).
Usage
[ಬದಲಾಯಿಸಿ]This template takes one or more parameters, like this:
{{basepage subpage | Basepage text | Subpage text }}
If the template is on the page "User:Example", it shall return this:
- Basepage text
If the template is on "User:Example/test" or "User:Example/test/test" or any page lower than that, it will return this:
- Subpage text
This template can also detect "subsubpages", like this:
{{basepage subpage | Basepage text | Subpage text | Subsubpage text }}
If the template is on "User:Example/test/test" or any page lower than that, it will return this:
- Subsubpage text
By using an empty parameter you can make it so the template doesn't render anything for some specific page type. Like this:
{{basepage subpage | Basepage text | Subpage text | }}
The code above will render nothing when on "User:Example/test/test" or lower, but will return this when on "User:Example/test":
- Subpage text
The "page" parameter
[ಬದಲಾಯಿಸಿ]For testing and demonstration purposes this template can take a parameter named page. Like this:
{{basepage subpage | Basepage text | Subpage text | page = User:Example/test }}
No matter on what kind of page the code above is used it will return this:
- Subpage text
The page parameter makes this template behave exactly as if on that page. Thus, if a subsubpagename like "User:Example/test/test" is fed, then it returns the subsubpage text if there is one, otherwise it returns the subpage text.
The pagename doesn't have to be an existing page.
If the parameter is empty or undefined, the name of the current page determines the result.
You can make it so your template also understands the page parameter. That means you can demonstrate the different appearances of your template in the documentation for your template. Then do like this:
{{basepage subpage | Basepage text | Subpage text | page = {{{page|}}} }}
Technical details
[ಬದಲಾಯಿಸಿ]Templates have a problem to handle parameter data that contains equal signs "=
". But that is easily solved by using numbered parameters. Like this:
{{basepage subpage | 1 = Basepage text | 2 = Subpage text | 3 = Subsubpage text | page = {{{page|}}} }}
This template detects subpages even when used in namespaces that doesn't have the MediaWiki subpage feature enabled. Thus this template works the same in all namespaces.
Alternatives for simpler text
[ಬದಲಾಯಿಸಿ]A subpage can be detected without using another template, by instead using a single #ifeq
along with the title-splitting parser function #titleparts
, with expansion depth +1, as follows:
- {{#ifeq: {{#titleparts:{{PAGENAME}}|1|1}} | {{PAGENAME}}
- | ...then on base page...
- | ...else on a subpage...
- }}
- {{#ifeq: {{#titleparts:{{PAGENAME}}|1|1}} | {{PAGENAME}}
For example, many templates can check if the page is a /sandbox version, by the similar markup with #ifeq
and #titleparts
:
- {{#ifeq: {{#titleparts:{{PAGENAME}}|1|1}} | {{PAGENAME}}
- | {{documentation}}
- | {{template sandbox notice}}
- }}
- {{#ifeq: {{#titleparts:{{PAGENAME}}|1|1}} | {{PAGENAME}}
That simple logic works because Template:Template_sandbox_notice also checks the page name for "/sandbox" before displaying the sandbox notice; otherwise, any other subpage would show no extra text. By avoiding a template, and using a single #ifeq
, then the processing uses only +2 expansion depth levels, rather than +7 levels, and avoids "wp:exceeded template limits" inside a complex /doc page.
See also
[ಬದಲಾಯಿಸಿ]Pagename-handling and detection templates:
{{Basepage subpage}}
– For detecting if on a basepage, subpage or subsubpage.{{Pgn}}
– Can take apart and put together pagenames in several ways.{{If pagename}}
– For pattern matching on the pagename.{{If pagename multi}}
– For pattern matching on the pagename, has input reuse.{{IP-user other}}
– For detecting IP-user pages.{{IP-talk}}
- Return: 1) IP user talk page 2) registered user talk page 3) not user talk page.
Easy to use namespace-detection templates:
{{Main other}}
– For article templates.{{Talk other}}
– For talk page templates.{{User other}}
– For user page templates.{{Wikipedia other}}
– For detecting "Wikipedia:" pages.{{File other}}
– For file (image) templates.{{Template other}}
– For detecting template pages.{{Help other}}
– For help page templates.{{Category other}}
– For category templates.{{Portal other}}
– For portal templates.{{Book other}}
– For detecting book pages.
More complex namespace-detection templates:
{{Namespace detect}}
– The very versatile one.{{Namespace detect showall}}
– The extremely versatile one, has input reuse.{{Talkspace detect}}
- For detecting talk pages on various namespaces.{{Main talk other}}
– Separates some namespaces.{{Main talk category other}}
– Separates some namespaces.
Technical stuff:
- Wikipedia:Namespace – Lists all the namespaces.
- mw:Help:Magic words – About
{{NAMESPACE}}
etc. - mw:Help:Extension:ParserFunctions – About
{{#ifeq:|||}}
etc.