Template:Fgdata commit: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
m (typo)
(Template simplification and standardisation by conversion into a subtemplate of the {{repo link}} master template, and use of the {{repo link/doc commit}} documentation template.)
Line 1: Line 1:
{{#if: {{{1|}}} <!-- Is the commit defined? -->
{{repo link
| <!-- Yes, the commit is defined
| site  = sf
   -->[http://sourceforge.net/p/flightgear/fgdata/ci/{{{1|}}} <!--
| proj   = fgdata
   -->{{#if: {{{t|}}} <!-- Is a custom label defined? -->
| commit = {{{1|next}}}
  | <!-- Yes, a custom label is defined
| view  = commit
    -->{{{t}}}
| text   = {{#if: {{{1|}}}
  | <!-- No, a custom label is not defined
  | {{{text|FGData commit {{{1}}} }}}
    -->FGData commit {{{1}}}
  | <big style="color:red;">Missing parameter '''commit'''</big>
  }}]
  }}
| <!-- No, the commit is not defined.  Throw an error.
  --><big style="color:red;">{{tl|fgdata commit}} Missing parameter '''commit'''</big>
}}<noinclude>
}}<noinclude>
{{Informative template|1=
__NOTOC__
== Goal ==
This template can be used when linking to summaries of commits to the FGData Git repository at SourceForge.
== Usage ==
{{obr}}'''fgdata commit'''{{!}}commit {{!}}''t=''{{cbr}}
; commit:  The commit to link to. Mandatory
; t:      Optional custom link label
== Examples ==
<nowiki>{{fgdata commit|776a6552}}</nowiki>
{{fgdata commit|776a6552}}
<nowiki>The moon now has a {{fgdata commit|83cbd1ec |t=more detailed texture}}.</nowiki>
The moon now has a {{fgdata commit|83cbd1ec |t=more detailed texture}}.
== Related templates ==
=== Commit link templates ===
* {{tl|fgaddon revision}}
* {{tl|simgear commit}}
* {{tl|flightgear commit}}
=== Source link templates ===
* {{tl|fgaddon url}}
* {{tl|fgdata file}}
* {{tl|simgear file}}
* {{tl|flightgear file}}


{{repo link/doc commit
| label    = FGData
| repo      = fgdata
| eg1commit = 776a6552
| eg2intro  = The moon now has a
| eg2commit = 83cbd1ec
| eg2text  = more detailed texture
}}
}}


[[Category:Repository link templates]]
</noinclude>
</noinclude>

Revision as of 18:06, 25 February 2016

Missing parameter commit


The following template description is not displayed when the template is inserted in an article.

Goal

This template can be used when linking to summaries of commits for the FGData git repository at SourceForge. It is a subtemplate of the master {{repo link}} template designed to link to specific version control commits.

Usage

{{fgdata commit
| commit
| text       =
}}

The parameters are:

Parameter Description Abbreviated
parameter
Numbered
parameter
Status
commit The commit identifier. 1 mandatory
text Text to display as the link label. t 2 optional

Design

In this section, the following notation will be used:

Angular brackets + lower case text <xyz>
Template parameters.
Angular brackets + upper case text <XYZ>
Template constructed text.
Square brackets [xyz]
Optional text, only added if the parameter is set.
Or symbol |
The value on the left, if present, otherwise the value on the right of the symbol.

Overview

The general design is:

<cmd> <opt> [<URL> <TEXT>] <post>

Here the square brackets do not denote optional text, but will instead produce a Mediawiki link. This can be modified by setting full = 1 to produce:

<cmd> <opt> <URL> <post>


Site: SourceForge

Project page

For a normal SourceForge project page, the base URL is respectively constructed as:

https://sourceforge.net/p/flightgear/fgdata/

SourceForge git <URL>

For the svn repository type, the <URL> value will be:

https://sourceforge.net/p/flightgear/fgdata/ci/<commit>

SourceForge svn <URL>

For the svn repository type, the <URL> value will be:

https://sourceforge.net/p/flightgear/fgdata/<commit|HEAD>

SourceForge URL <TEXT>

The link text <TEXT>, if the text parameter is not set, will simply be:

FGData commit <commit>

Or if the text parameter is supplied, the <TEXT> is simply:

<text>

Plain text

To create a URL or link as plain text and avoid external links, simply use the {{#tag:tagname|content}} magic word construct:

{{#tag:nowiki|
  {{repo link
  | full = 1
  }}
}}

https://sourceforge.net/p/flightgear/flightgear/ci/next/tree/

To use the <code> tags:

{{#tag:code|{{#tag:nowiki|
  {{repo link
  | full = 1
  }}
}}}}

https://sourceforge.net/p/flightgear/flightgear/ci/next/tree/

Examples

Auto-generated text

{{fgdata commit | 776a6552}}

FGData commit 776a6552

User supplied text

The moon now has a {{fgdata commit | 83cbd1ec | text = more detailed texture}}.

The moon now has a more detailed texture .

Parameter alias

The moon now has a {{fgdata commit | 83cbd1ec | t = more detailed texture}}.

The moon now has a FGData commit 83cbd1ec .

Numbered parameters

The moon now has a {{fgdata commit | 83cbd1ec | more detailed texture}}.

The moon now has a FGData commit 83cbd1ec .

Related templates