Template:Documentation/core: Difference between revisions

From OIAr
Jump to navigation Jump to search
(template copied)
 
(lose Purge template)
Line 8: Line 8:
   #if: {{{content|}}}
   #if: {{{content|}}}
   |  
   |  
   | <!--Add the [edit][purge] or [create] links-->
   |  
    <span class="editsection plainlinks" id="doc_editlinks">{{
    #if: {{{doc exist|yes}}}
    | &#91;[[{{{docpage|{{FULLPAGENAME}}/doc}}}|view]]&#93; [[{{fullurl:{{{docpage|{{FULLPAGENAME}}/doc}}}|action=edit}} edit]] [[{{fullurl:{{{docpage|{{FULLPAGENAME}}/doc}}}|action=history}} history]] [{{purge|purge}}]
    | <!--/doc doesn't exist-->
      [[{{fullurl:{{{docpage|{{FULLPAGENAME}}/doc}}}| action=edit&preload={{
        #if: {{{preload|}}}
        | {{urlencode:{{{preload}}}}}
        | {{#ifeq: {{SUBJECTSPACE}} | {{ns:File}}
          | Template:Documentation/preload-filespace
          | Template:Documentation/preload
          }} }} }} create]]
    }}</span>
   }} <span style="{{#if: {{{heading-style|}}}
   }} <span style="{{#if: {{{heading-style|}}}
   | {{{heading-style|}}}
   | {{{heading-style|}}}
Line 31: Line 19:
     <!--"heading" not defined in this or previous level-->
     <!--"heading" not defined in this or previous level-->
     {{#switch: {{SUBJECTSPACE}}  
     {{#switch: {{SUBJECTSPACE}}  
     | {{ns:Template}} = [[Image:Template-info.svg|50px|alt=]] Template documentation
     | {{ns:Template}} = [[Image:Info.png|50px|alt=]] Template documentation
     | {{ns:File}} = Summary
     | {{ns:File}} = Summary
     | #default = Documentation
     | #default = Documentation

Revision as of 22:25, 23 March 2013

Template documentation

This is the {{documentation/core}} sub-template.

Do not use this template directly, use {{documentation}} instead.

{{documentation}} calls {{documentation/core2}} which in turn calls this template. This template holds most of the code for {{documentation}}, while {{documentation}} and {{documentation/core2}} do parameter preprocessing. Thus simplifying the code.

Technical details

This sub-template currently expects these parameters:

{{documentation/core
| heading = {{{heading|¬}}}   <!--Note that the "¬" is necessary 
     so we can detect the difference between empty and undefined-->
| heading-style = {{{heading-style|}}}
| content = {{{content|}}}    <!--Text instead of a /doc page-->
| link box = {{{link box|}}}  <!--So "link box=off" works-->

| docpage =     <!--Full pagename of the doc page-->
| doc exist =   <!--"yes" if the doc page exists, empty string if not-->
| docname fed = <!--"yes" if a docname was manually fed-->

| sandbox =     <!--Full pagename of the /sandbox-->
| testcases =   <!--Full pagename of the /testcases-->

| template page =   <!--Full pagename where the {{documentation}}
    template is placed, but without ending /sandbox or /testcases.
    Note: Unfortunately might not be the "correct" namespace if 
    the template is in subject space and the {{documentation}} 
    template is in talk space or the other way around.-->
}}

For more documentation see WikiPedia.