Difference between revisions of "Template:Documentation/core"

From blackwiki
Jump to navigation Jump to search
test>Davidgothberg
(Using a special preload page for /doc pages in File space.)
test>Davidgothberg
(Removing most debug reporting, since no serious cases found, I now have a copy of the list, and the {{PAGESIZE:}} call caused strange items in the "Pages transcluded" list in edit pages.)
Line 114: Line 114:
 
   | testcases = strange
 
   | testcases = strange
 
   }}
 
   }}
 +
  <!--More checks can be added here, just return anything
 +
      to make the surrounding if-case trigger-->
  
  {{#switch: {{SUBJECTSPACE}}
+
| <includeonly>[[Category:Wikipedia pages with strange ((documentation)) usage|{{main other|Main:}}{{FULLPAGENAME}}]]<!-- Sort on namespace --></includeonly>
  | {{ns:0}}
 
  | {{ns:File}}
 
  | {{ns:MediaWiki}}
 
  | {{ns:Category}} =
 
    <!--Check if there are /doc, /sandbox and /testcases
 
        in subject space when they should be in talk space-->
 
    {{#ifexist:  
 
      {{SUBJECTSPACE}}:{{PAGENAME:{{{template page|}}}}}/doc
 
    | strange
 
    }}{{#ifexist:
 
      {{SUBJECTSPACE}}:{{PAGENAME:{{{template page|}}}}}/sandbox
 
    | strange
 
    }}{{#ifexist:  
 
      {{SUBJECTSPACE}}:{{PAGENAME:{{{template page|}}}}}/testcases
 
    | strange
 
    }}
 
 
 
  | #default =
 
    <!--Check if there are /sandbox and /testcases
 
        in talk space that are too large to be redirects,
 
        when the subpages should be in subject space-->
 
    {{#ifexpr:
 
      {{PAGESIZE:
 
        {{TALKSPACE}}:{{PAGENAME:{{{template page|}}}}}/sandbox
 
      | R }} > 200
 
    | strange
 
    }}{{#ifexpr:
 
      {{PAGESIZE:
 
        {{TALKSPACE}}:{{PAGENAME:{{{template page|}}}}}/testcases
 
      | R }} > 200
 
    | strange
 
    }}
 
 
 
  }}
 
  
| <includeonly>[[Category:Wikipedia pages with strange ((documentation)) usage|{{main other|Main:}}{{FULLPAGENAME}}]]<!-- Sort on namespace --></includeonly>
 
 
}}<noinclude>
 
}}<noinclude>
  

Revision as of 17:24, 12 February 2010

[edit] [Script error: No such module "Purge".] Template-info.svg 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 {{documentation}}.