Template:Github zip file: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(Improvements to the documentation.)
(Added support for the 'tag' parameter.)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{repo link
{{repo link
| site                                     = github
| site                                             = github
| protocol                                 = https
| protocol                                         = https
| type                                     = zip
| type                                             = zip
| user{{#if:{{{user|}}}||NULL}}            = {{{user}}}
| user{{#if:{{{user|{{{u|}}}}}}||NULL}}            = {{{user|{{{u}}}}}}
| proj{{#if:{{{proj|}}}||NULL}}             = {{{proj}}}
| proj{{#if:{{{proj|{{{p|{{{1|}}}}}}}}}||NULL}}     = {{{proj|{{{p|{{{1}}}}}}}}}
| repo{{#if:{{{repo|}}}||NULL}}             = {{{repo}}}
| repo{{#if:{{{repo|{{{r|{{{2|}}}}}}}}}||NULL}}     = {{{repo|{{{r|{{{2}}}}}}}}}
| branch{{#if:{{{branch|}}}||NULL}}         = {{{branch}}}
| branch{{#if:{{{branch|{{{b|{{{3|}}}}}}}}}||NULL}} = {{{branch|{{{b|{{{3}}}}}}}}}
| commit{{#if:{{{commit|}}}||NULL}}         = {{{commit}}}
| tag{{#if:{{{tag|}}}||NULL}}                      = {{{tag}}}
| text{{#if:{{{text|}}}||NULL}}             = {{{text}}}
| commit{{#if:{{{commit|{{{c|{{{4|}}}}}}}}}||NULL}} = {{{commit|{{{c|{{{4}}}}}}}}}
| pre{{#if:{{{pre|}}}||NULL}}               = {{{pre}}}
| text{{#if:{{{text|{{{t|{{{5|}}}}}}}}}||NULL}}     = {{{text|{{{t|{{{5}}}}}}}}}
| simplepath{{#if:{{{simplepath|}}}||NULL}} = {{{simplepath}}}
| pre{{#if:{{{pre|}}}||NULL}}                       = {{{pre}}}
| full{{#if:{{{full|}}}||NULL}}             = {{{full}}}
| simplepath{{#if:{{{simplepath|}}}||NULL}}         = {{{simplepath}}}
| full{{#if:{{{full|}}}||NULL}}                     = {{{full}}}
}}<noinclude>
}}<noinclude>


{{Informative template|1=
{{repo link/doc zip file
== Goal ==
| label              = GitHub
This template is for providing direct download links to the automatically generated zip archives of GitHub repositories.  The temporary zip file is created on demand when the link is followed.  It is a subtemplate of the master {{tl|repo link}} template designed to simplify the interface.
| site              = github
 
| default_branch_git = master
== Usage ==
| gh                = 1
{{obr}}'''github zip file'''
| git                = 1
{{!}} ''user''      =
| examples          =
{{!}} ''proj''      =
{{!}} ''repo''      =
{{!}} ''branch''    =
{{!}} ''commit''    =
{{!}} ''text''      =
{{!}} ''pre''        =
{{!}} ''simplepath'' =
{{!}} ''full''      =
{{cbr}}
 
All parameters are optional.
 
; user: The GitHub user name.  This will have precedence over the '''proj''' parameter.  The user page is treated in the same way as a project name.
 
; proj: The name of the project, consisting of a grouping of repositories on the GitHub open source infrastructure.
 
; repo: The name of the repository.  A GitHub project allows for multiple repositories under that project name.
 
; branch: The git branch or tag name.  For git tags, simply append <code>/~</code> to the tag name.
 
; commit: The commit identifier (git hash).  This defaults to '''next'''.
 
; text: Text to display as the link label.  Overrides '''pre'''.
 
; pre: Prefix to a link label.
 
; simplepath:  If set, this strips off the repository name from the URL label, leaving just the contents of the '''path''' parameter.
: {{inote|The ''text'' parameter will override this.}}
 
; full: If set, the full URL will be shown rather than any text lable.
 
== Examples ==
 
=== Default ===
=== Default ===
This is for https://github.com/Juanvvc/c172p-detailed/archive/master.zip.
This is for https://github.com/Juanvvc/c172p-detailed/archive/master.zip.
Line 61: Line 28:
  {{!}} proj = Juanvvc
  {{!}} proj = Juanvvc
  {{!}} repo = c172p-detailed
  {{!}} repo = c172p-detailed
{{!}} type = zip
  {{!}} full = 1
  {{!}} full   = 1
  {{cbr}}.
  {{cbr}}.


Line 105: Line 71:
}}.
}}.


== Related templates ==
=== Aliased parameters ===
{{repo link/doc related}}
This is for https://github.com/Juanvvc/c172p-detailed/archive/release/2016.1.zip.
 
{{obr}}github zip file
{{!}} p    = Juanvvc
{{!}} r    = c172p-detailed
{{!}} b    = release/2016.1
{{!}} full = 1
{{cbr}}.
 
{{github zip file
| p    = Juanvvc
| r    = c172p-detailed
| b    = release/2016.1
| full = 1
}}.
 
=== Numbered parameters ===
This is for https://github.com/Juanvvc/c172p-detailed/archive/release/2016.1.zip.
 
{{obr}}github zip file {{!}} Juanvvc {{!}} c172p-detailed {{!}} release/2016.1 {{!}} full = 1 {{cbr}}.
 
{{github zip file | Juanvvc | c172p-detailed | release/2016.1 | full = 1 }}.


}}
}}


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

Latest revision as of 13:35, 15 July 2016

GitHub website


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

Goal

This template is for providing direct download links to the automatically generated zip archives of GitHub repositories. The temporary zip file is created on demand when the link is followed. It is a subtemplate of the master {{repo link}} template designed to simplify the interface.

Usage

Usage

{{github zip file
| user       =
| proj       =
| repo       =
| branch     =
| tag        =
| commit     =

| text       =
| pre        =
| simplepath =
| full       =
}}

The parameters are:

Parameter Description Abbreviated
parameter
Numbered
parameter
Status
user The name of the user page for the GitHub open source infrastructure. This is notably different to the login parameter. This will have precedence over the proj parameter. The user page is treated in the same way as a project name. u 1 mandatory
proj The name of the project, consisting of a grouping of repositories on the GitHub open source infrastructure. p 1 mandatory
repo The name of the repository. A project registered on the GitHub open source infrastructure generally allows for multiple repositories under that project name. r 2 mandatory
branch The branch name. This defaults to master. b 3 optional
tag The repository tag name. optional
commit The commit identifier (git hash). This defaults to HEAD. c 4 optional
text Text to display as the link label. Overrides pre. t 5 optional
pre Prefix to a link label. optional
simplepath If set, this strips off the repository name from the URL label, leaving just the contents of the path parameter.
Note The text parameter will override this.
optional
full If set to 1, the full URL will be shown rather than any text label. optional

Examples

Default

This is for https://github.com/Juanvvc/c172p-detailed/archive/master.zip.

{{github zip file
| proj = Juanvvc
| repo = c172p-detailed
| full = 1
}}.

https://github.com/Juanvvc/c172p-detailed/archive/master.zip.

Branch

This is for https://github.com/Juanvvc/c172p-detailed/archive/release/2016.1.zip.

{{github zip file
| proj   = Juanvvc
| repo   = c172p-detailed
| branch = release/2016.1
| full   = 1
}}.

https://github.com/Juanvvc/c172p-detailed/archive/release/2016.1.zip.

Commit

This is for https://github.com/Juanvvc/c172p-detailed/archive/c9cef81a899201802b32109c43ca686bbeffdb42.zip.

{{github zip file
| proj   = Juanvvc
| repo   = c172p-detailed
| commit = c9cef81a899201802b32109c43ca686bbeffdb42
| full   = 1
}}.

https://github.com/Juanvvc/c172p-detailed/archive/c9cef81a899201802b32109c43ca686bbeffdb42.zip.

Aliased parameters

This is for https://github.com/Juanvvc/c172p-detailed/archive/release/2016.1.zip.

{{github zip file
| p    = Juanvvc
| r    = c172p-detailed
| b    = release/2016.1
| full = 1
}}.

https://github.com/Juanvvc/c172p-detailed/archive/release/2016.1.zip.

Numbered parameters

This is for https://github.com/Juanvvc/c172p-detailed/archive/release/2016.1.zip.

{{github zip file | Juanvvc | c172p-detailed | release/2016.1 | full = 1 }}.

https://github.com/Juanvvc/c172p-detailed/archive/release/2016.1.zip.

Related templates