me
/
guix
Archived
1
0
Fork 0

doc: Fix texinfo identifiers in Version Control Services.

* doc/guix.texi (Version Control Services): Use @code, @command, @file,
@indicateurl, @samp texinfo identifiers correctly.
Arun Isaac 2020-07-05 13:55:15 +05:30
parent 14546abb43
commit 332f0a4685
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 24 additions and 22 deletions

View File

@ -52,7 +52,7 @@ Copyright @copyright{} 2017, 2019, 2020 Maxim Cournoyer@*
Copyright @copyright{} 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice@* Copyright @copyright{} 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice@*
Copyright @copyright{} 2017 George Clemmer@* Copyright @copyright{} 2017 George Clemmer@*
Copyright @copyright{} 2017 Andy Wingo@* Copyright @copyright{} 2017 Andy Wingo@*
Copyright @copyright{} 2017, 2018, 2019 Arun Isaac@* Copyright @copyright{} 2017, 2018, 2019, 2020 Arun Isaac@*
Copyright @copyright{} 2017 nee@* Copyright @copyright{} 2017 nee@*
Copyright @copyright{} 2018 Rutger Helling@* Copyright @copyright{} 2018 Rutger Helling@*
Copyright @copyright{} 2018 Oleg Pykhalov@* Copyright @copyright{} 2018 Oleg Pykhalov@*
@ -24926,39 +24926,41 @@ access to exported@footnote{By creating the magic file
Data type representing the configuration for @code{git-daemon-service}. Data type representing the configuration for @code{git-daemon-service}.
@table @asis @table @asis
@item @code{package} (default: @var{git}) @item @code{package} (default: @code{git})
Package object of the Git distributed version control system. Package object of the Git distributed version control system.
@item @code{export-all?} (default: @var{#f}) @item @code{export-all?} (default: @code{#f})
Whether to allow access for all Git repositories, even if they do not Whether to allow access for all Git repositories, even if they do not
have the @file{git-daemon-export-ok} file. have the @file{git-daemon-export-ok} file.
@item @code{base-path} (default: @file{/srv/git}) @item @code{base-path} (default: @file{/srv/git})
Whether to remap all the path requests as relative to the given path. Whether to remap all the path requests as relative to the given path.
If you run git daemon with @var{(base-path "/srv/git")} on example.com, If you run @command{git daemon} with @code{(base-path "/srv/git")} on
then if you later try to pull @code{git://example.com/hello.git}, git @samp{example.com}, then if you later try to pull
daemon will interpret the path as @code{/srv/git/hello.git}. @indicateurl{git://example.com/hello.git}, git daemon will interpret the
path as @file{/srv/git/hello.git}.
@item @code{user-path} (default: @var{#f}) @item @code{user-path} (default: @code{#f})
Whether to allow @code{~user} notation to be used in requests. When Whether to allow @code{~user} notation to be used in requests. When
specified with empty string, requests to @code{git://host/~alice/foo} is specified with empty string, requests to
taken as a request to access @code{foo} repository in the home directory @indicateurl{git://host/~alice/foo} is taken as a request to access
of user @code{alice}. If @var{(user-path "path")} is specified, the @code{foo} repository in the home directory of user @code{alice}. If
same request is taken as a request to access @code{path/foo} repository @code{(user-path "@var{path}")} is specified, the same request is taken
in the home directory of user @code{alice}. as a request to access @file{@var{path}/foo} repository in the home
directory of user @code{alice}.
@item @code{listen} (default: @var{'()}) @item @code{listen} (default: @code{'()})
Whether to listen on specific IP addresses or hostnames, defaults to Whether to listen on specific IP addresses or hostnames, defaults to
all. all.
@item @code{port} (default: @var{#f}) @item @code{port} (default: @code{#f})
Whether to listen on an alternative port, which defaults to 9418. Whether to listen on an alternative port, which defaults to 9418.
@item @code{whitelist} (default: @var{'()}) @item @code{whitelist} (default: @code{'()})
If not empty, only allow access to this list of directories. If not empty, only allow access to this list of directories.
@item @code{extra-options} (default: @var{'()}) @item @code{extra-options} (default: @code{'()})
Extra options will be passed to @code{git daemon}, please run Extra options will be passed to @command{git daemon}, please run
@command{man git-daemon} for more information. @command{man git-daemon} for more information.
@end table @end table
@ -24990,14 +24992,14 @@ Package object of the Git distributed version control system.
@item @code{git-root} (default: @file{/srv/git}) @item @code{git-root} (default: @file{/srv/git})
Directory containing the Git repositories to expose to the world. Directory containing the Git repositories to expose to the world.
@item @code{export-all?} (default: @var{#f}) @item @code{export-all?} (default: @code{#f})
Whether to expose access for all Git repositories in @var{git-root}, Whether to expose access for all Git repositories in @var{git-root},
even if they do not have the @file{git-daemon-export-ok} file. even if they do not have the @file{git-daemon-export-ok} file.
@item @code{uri-path} (default: @file{/git/}) @item @code{uri-path} (default: @samp{/git/})
Path prefix for Git access. With the default @code{/git/} prefix, this Path prefix for Git access. With the default @samp{/git/} prefix, this
will map @code{http://@var{server}/git/@var{repo}.git} to will map @indicateurl{http://@var{server}/git/@var{repo}.git} to
@code{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin @file{/srv/git/@var{repo}.git}. Requests whose URI paths do not begin
with this prefix are not passed on to this Git instance. with this prefix are not passed on to this Git instance.
@item @code{fcgiwrap-socket} (default: @code{127.0.0.1:9000}) @item @code{fcgiwrap-socket} (default: @code{127.0.0.1:9000})