Template:Demo commit

From relax wiki
Jump to navigation Jump to search

{{relax demo commit}}: Missing parameter commit

Template documentation

Goal

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

Usage

{{demo commit
| commit
| text       =
}}

The parameters are:

Parameter Description Abbreviated
parameter
Numbered
parameter
Status
commit The commit identifier (git hash). This defaults to HEAD. 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/nmr-relax/relax-demo/

SourceForge git <URL>

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

https://sourceforge.net/p/nmr-relax/relax-demo/ci/<commit>

SourceForge URL <TEXT>

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

demo 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/nmr-relax/code/ci/master/tree/

To use the <code> tags:

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

https://sourceforge.net/p/nmr-relax/code/ci/master/tree/

Examples

Auto-generated text

{{demo commit | 8bd191}}

relax demo commit 8bd191

User supplied text

Added a {{demo commit | 40bde2 | text = script to simplify the GUI loading of spectral data}} for Hansen's relaxation dispersion data.

Added a script to simplify the GUI loading of spectral data  for Hansen's relaxation dispersion data.

Parameter alias

Added a {{demo commit | 40bde2 | t = script to simplify the GUI loading of spectral data}} for Hansen's relaxation dispersion data.

Added a script to simplify the GUI loading of spectral data  for Hansen's relaxation dispersion data.

Numbered parameters

Added a {{demo commit | 40bde2 | script to simplify the GUI loading of spectral data}} for Hansen's relaxation dispersion data.

Added a script to simplify the GUI loading of spectral data  for Hansen's relaxation dispersion data.

Related templates