Template:Openscenegraph co: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(Removal of a trailing whitespace character.)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{#tag:nowiki|{{repo link
{{#tag:nowiki|{{repo link
| site                             = svn.openscenegraph.org
| site                                             = svn.openscenegraph.org
| cmd                               = svn co {{{opt|}}}
| cmd                                               = svn co
| protocol                         = {{#if: {{{login|}}} | svn+ssh | http}}
| opt{{#if:{{{opt|}}}||NULL}}                      = {{{opt}}}
| login{{#if:{{{login|}}}||NULL}}   = {{{login}}}
| protocol                                         = {{#if: {{{login|}}} | svn+ssh | http}}
| type                             = svn
| login{{#if:{{{login|}}}||NULL}}                   = {{{login}}}
| proj                             = osg
| type                                             = svn
| repo                             = OpenSceneGraph
| proj                                             = osg
| branch{{#if:{{{branch|}}}||NULL}} = {{{branch}}}
| repo                                             = OpenSceneGraph
| path{{#if:{{{path|}}}||NULL}}    = {{{path}}}
| branch{{#if:{{{branch|{{{b|{{{1|}}}}}}}}}||NULL}} = {{{branch|{{{b|{{{1}}}}}}}}}
| post                             = {{{post|osg}}}
| path{{#if:{{{path|{{{f|{{{2|}}}}}}}}}||NULL}}    = {{{path|{{{f|{{{2}}}}}}}}}
| full                             = 1
| post                                             = {{{post|osg}}}
| full                                             = 1
}}}}<noinclude>
}}}}<noinclude>


Line 23: Line 24:
| opt      = 1
| opt      = 1
| login    = 1
| login    = 1
| branch    = 1
| branch    = 1 | short_branch = b | pos_branch = 1
| path      = 1
| path      = 1 | short_path  = f | pos_path  = 2
| post      = 1 | default_post = osg
| post      = 1 | default_post = osg
| svn      = 1
| svn      = 1
Line 48: Line 49:
| login = <username>
| login = <username>
}}}}
}}}}
=== Aliased parameters ===
This should produce the text <code><nowiki>svn co http://svn.openscenegraph.org/osg/OpenSceneGraph/branches/OpenSceneGraph-3.4/src osg_src</nowiki></code>.
{{obr}}#tag:code{{!}}{{obr}}openscenegraph co
{{!}} b    = branches/OpenSceneGraph-3.4
{{!}} f    = src
{{!}} post = osg_src
{{cbr}}{{cbr}}.
{{#tag:code|{{openscenegraph co
| b    = branches/OpenSceneGraph-3.4
| f    = src
| post = osg_src
}}}}.
=== Numbered parameters ===
This should produce the text <code><nowiki>svn co http://svn.openscenegraph.org/osg/OpenSceneGraph/branches/OpenSceneGraph-3.4/src osg_src</nowiki></code>.
{{obr}}#tag:code{{!}}{{obr}}openscenegraph co {{!}} branches/OpenSceneGraph-3.4 {{!}} src {{!}} post = osg_src {{cbr}}{{cbr}}.
{{#tag:code|{{openscenegraph co | branches/OpenSceneGraph-3.4 | src | post = osg_src }}}}.


== Related templates ==
== Related templates ==
Line 54: Line 76:
}}
}}


[[Category:Repository link templates]]
[[Category:SCM Instruction Templates]]
[[Category:SCM Instruction Templates]]
</noinclude>
</noinclude>

Latest revision as of 11:25, 7 March 2016

svn co http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk osg


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

Goal

To provide a consistent representation of the command to checkout the OpenSceneGraph subversion repository.

Usage

{{openscenegraph co
| opt        =
| login      =
| branch     =
| path       =
| post       =
}}

The parameters are:

Parameter Description Abbreviated
parameter
Numbered
parameter
Status
opt Any additional options to show after the command svn co, but before the URL. optional
login The optional user login. optional
branch The branch name. As tags are simply branches in SVN repositories, this parameter can also be used for svn tags. This defaults to trunk. b 1 optional
path The file or directory path. f 2 optional
post Text to append. This is forms a set with the parameter opt. For example it can represent any command line options that come after the URL. The default value is osg. optional

Examples

Checkout of trunk

This should produce the text svn co http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk osg.

{{openscenegraph co}}

svn co http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk osg

Checkout of trunk with user name

This should produce the text svn co svn+ssh://<username>@svn.openscenegraph.org/osg/OpenSceneGraph/trunk osg.

{{#tag:code|{{openscenegraph co
| login = <username>
}}}}

svn co svn+ssh://<username>@svn.openscenegraph.org/osg/OpenSceneGraph/trunk osg

Aliased parameters

This should produce the text svn co http://svn.openscenegraph.org/osg/OpenSceneGraph/branches/OpenSceneGraph-3.4/src osg_src.

{{#tag:code|{{openscenegraph co
| b    = branches/OpenSceneGraph-3.4
| f    = src
| post = osg_src
}}}}.

svn co http://svn.openscenegraph.org/osg/OpenSceneGraph/branches/OpenSceneGraph-3.4/src osg_src.

Numbered parameters

This should produce the text svn co http://svn.openscenegraph.org/osg/OpenSceneGraph/branches/OpenSceneGraph-3.4/src osg_src.

{{#tag:code|{{openscenegraph co | branches/OpenSceneGraph-3.4 | src | post = osg_src }}}}.

svn co http://svn.openscenegraph.org/osg/OpenSceneGraph/branches/OpenSceneGraph-3.4/src osg_src.

Related templates