I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX

Difference between revisions of "Template:Documentation"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
m
Line 1: Line 1:
<div class="template-documentation" style="clear:both;">{{#if:{{{heading|defaultnotblank}}}|<div style="padding-bottom:3px; border-bottom:1px solid #aaa; margin-bottom:1ex;">
+
<div class="template-documentation">{{
<span class="editsection plainlinks">[[{{fullurl:{{{1|{{SUBJECTPAGENAME}}/doc}}}|action=edit{{#ifexist: {{{1|{{SUBJECTPAGENAME}}/doc}}} ||&preload=Template:Documentation/preload}}}} edit]]</span>
+
  #if: {{{heading|Documentation}}}
<span style="font-size: 150%">{{{heading|Documentation}}}</span></div>}}
+
  |<div style="padding-bottom: {{{heading-padding|3px}}}; border-bottom: 1px solid #aaa; margin-bottom: {{{heading-margin|1ex}}}"><span class="editsection plainlinks" id="doc_editlinks">{{
<div id="template_doc_page_transcluded" class="dablink plainlinks">''This [[Wikipedia:Wikipedia:Template documentation|documentation]] is [[Wikipedia:Wikipedia:Transclusion|transcluded]] from [[{{{1|{{FULLPAGENAME}}/doc}}}]].'' <small>([[{{{1|{{SUBJECTPAGENAME}}/doc}}}|view]] | [{{fullurl:{{{1|{{SUBJECTPAGENAME}}/doc}}}|action=edit{{#ifexist: {{{1|{{SUBJECTPAGENAME}}/doc}}} ||&preload=Template:Documentation/preload}}}} edit] | [{{fullurl:{{{1|{{SUBJECTPAGENAME}}/doc}}}|action=history}} history])</small> {{#ifexist: {{#rel2abs: /sandbox }} | {{#ifexist: {{#rel2abs: /testcases}} | <br> ''This template has a [[/sandbox|sandbox]]'' <small>([{{fullurl:{{FULLPAGENAME}}/sandbox|action=edit}} edit])</small> ''and [[/testcases|testcases]] for editors to experiment.''}}<!-- else don't show when just 1 of /sandbox or /testcases exists -->}} </div>{{{{{1|{{SUBJECTPAGENAME}}/doc}}}}} <div style="clear:both;" /></div></div><noinclude>
+
    #ifexist: {{{1|{{Documentation/docname}}}}}
 
+
    |<!-- /doc exists -->[[{{fullurl:{{{1|{{Documentation/docname}}}}}|action=edit}} edit]]
[[Category:Utility templates|{{PAGENAME}}]]
+
    |<!-- no /doc -->{{
</noinclude>
+
      #if: {{{content|}}}
 +
      |
 +
      |<!-- no content -->[[{{fullurl:{{{1|{{Documentation/docname }}}}}|action=edit&preload={{{preload-doc|Template:Documentation/preload}}}}} create]]
 +
    }}
 +
  }}</span> <span style="{{{heading-style|font-size: 150%}}}">{{{heading|Documentation}}}</span></div>
 +
}}<!-- endif heading -->
 +
<div id="template_doc_page_transcluded" class="dablink plainlinks">{{
 +
  #ifeq: {{{transcluded|show}}} | show
 +
  |<!-- transcluded show -->{{
 +
    #ifexist: {{{1|{{Documentation/docname}}}}}
 +
    |<!-- /doc exists -->This documentation is [[Wikipedia:Wikipedia:Transclusion|transcluded]] from [[{{{1|{{Documentation/docname}}}}}]]. <small style="font-style: normal">([{{fullurl:{{{1|{{Documentation/docname}}}}}|action=edit}} edit] &#124; [{{fullurl:{{{1|{{Documentation/docname}}}}}|action=history}} history])</small><br />
 +
  }}
 +
  |<!-- transcluded hide -->
 +
}}{{
 +
  #switch: {{SUBPAGENAME}}
 +
  |sandbox=<!-- sandbox -->
 +
  |testcases=<!-- testcases -->
 +
  |#default={{
 +
    #switch: {{SUBJECTSPACE}}/{{{sandbox-testcases|show}}}
 +
    | {{ns:template}}/show | {{ns:user}}/show =<!-- show /sandbox /testcases -->{{
 +
      #ifexist: {{ #rel2abs: /sandbox }}
 +
      | This template has a [[/sandbox|sandbox]] <small style="font-style: normal">([{{fullurl:{{ #rel2abs: /sandbox }}|action=edit}} edit])</small> {{
 +
        #ifexist: {{ #rel2abs: /testcases }}
 +
        |<!-- /sandbox AND /testcases --> and [[/testcases|testcases]] <small style="font-style: normal">([{{fullurl:{{ #rel2abs: /testcases }}|action=edit}} edit])</small>
 +
        |<!-- /sandbox BUT no /testcases -->}} for editors to experiment.
 +
      |<!-- no /sandbox -->{{
 +
        #ifexist: {{ #rel2abs: /testcases }}
 +
        | This template has [[/testcases|testcases]] <small style="font-style: normal">([{{fullurl:{{ #rel2abs: /testcases }}|action=edit}} edit])</small> for editors to experiment.
 +
        }}
 +
    }}
 +
    |<!-- hide /sandbox /testcases -->
 +
  }}
 +
}}</div>
 +
{{{content|{{ {{ #ifexist: {{{1|{{Documentation/docname}}}}} | {{{1|{{Documentation/docname}}}}} | ns:0 }} }}}}}
 +
</div>

Revision as of 10:40, 4 March 2008

[edit] Documentation

This template automatically displays a documentation box like you are seeing now, of which the content is transcluded from another page. It is intended for pages which are transcluded in other pages, i.e. templates, whether in the template namespace or not.

Usage

Normal /doc

<noinclude>{{Documentation}}</noinclude>

Any /doc page

<noinclude>{{Documentation|Template:any page/doc}}</noinclude>

In-line content

<noinclude>{{Documentation|content=This is documentation.}}</noinclude>

In-line content with [view][edit] links

<noinclude>{{Documentation
|1 = Template:any page/doc
|content ={{Template:any page/doc|parameters}}
}}</noinclude>

Best practice

This code should be added at the bottom of the template code, with no extra space before "<noinclude>" (which would cause extra space on pages where the template is used). The parameter can be used as shown above to transclude an arbitrary documentation page.

Add categories and interwiki links to the documentation page inside <includeonly> </includeonly> tags.

If the documentation page contains includeonly or noinclude tags as part of the documentation, replace the "<" with "&lt;".

Customizing display

Overrides exist to customize the output in special cases:

  • {{documentation| heading = ...}} − change the text of the "documentation" heading. If this is set to blank, the entire heading line (including the first [edit] link) will also disappear.

Functions

If the documentation page doesn't exist, the "edit" link includes a preload parameter so that clicking it will pre-fill the edit form with the basic documentation page format.

Rationale

Use of this template allows templates to be protected where necessary, while allowing anyone to edit the documentation, categories, and interwiki links.