##// END OF EJS Templates
hgrc.5: mark more inline literals
Martin Geisler -
r9746:2dee9a35 default
parent child Browse files
Show More
@@ -261,8 +261,8 b' or if you only want to translate certain'
261 261 Use the [defaults] section to define command defaults, i.e. the
262 262 default options/arguments to pass to the specified commands.
263 263
264 The following example makes 'hg log' run in verbose mode, and 'hg
265 status' show only the modified files, by default::
264 The following example makes ``hg log`` run in verbose mode, and ``hg
265 status`` show only the modified files, by default::
266 266
267 267 [defaults]
268 268 log = -v
@@ -491,7 +491,7 b' Example ``.hg/hgrc``::'
491 491
492 492 Most hooks are run with environment variables set that give useful
493 493 additional information. For each hook below, the environment
494 variables it is passed are listed with names of the form "$HG_foo".
494 variables it is passed are listed with names of the form ``$HG_foo``.
495 495
496 496 ``changegroup``
497 497 Run after a changegroup has been added via push, pull or unbundle.
@@ -646,7 +646,7 b' command or with Mercurial Queues extensi'
646 646
647 647 ``eol``
648 648 When set to 'strict' patch content and patched files end of lines
649 are preserved. When set to 'lf' or 'crlf', both files end of lines
649 are preserved. When set to ``lf`` or ``crlf``, both files end of lines
650 650 are ignored when patching and the result line endings are
651 651 normalized to either LF (Unix) or CRLF (Windows).
652 652 Default: strict.
@@ -745,7 +745,7 b' User interface controls.'
745 745 ``debug``
746 746 Print debugging information. True or False. Default is False.
747 747 ``editor``
748 The editor to use during a commit. Default is ``$EDITOR`` or "vi".
748 The editor to use during a commit. Default is ``$EDITOR`` or ``vi``.
749 749 ``fallbackencoding``
750 750 Encoding to try if it's not possible to decode the changelog using
751 751 UTF-8. Default is ISO-8859-1.
@@ -777,12 +777,12 b' For more information on configuring merg'
777 777 merge-tools_ section.
778 778
779 779 ``patch``
780 command to use to apply patches. Look for 'gpatch' or 'patch' in
780 command to use to apply patches. Look for ``gpatch`` or ``patch`` in
781 781 PATH if unset.
782 782 ``quiet``
783 783 Reduce the amount of output printed. True or False. Default is False.
784 784 ``remotecmd``
785 remote command to use for clone/push/pull operations. Default is 'hg'.
785 remote command to use for clone/push/pull operations. Default is ``hg``.
786 786 ``report_untrusted``
787 787 Warn if a ``.hg/hgrc`` file is ignored due to not being owned by a
788 788 trusted user or group. True or False. Default is True.
@@ -793,7 +793,7 b' merge-tools_ section.'
793 793 backslash character (``\``)).
794 794 Default is False.
795 795 ``ssh``
796 command to use for SSH connections. Default is 'ssh'.
796 command to use for SSH connections. Default is ``ssh``.
797 797 ``strict``
798 798 Require exact command names, instead of allowing unambiguous
799 799 abbreviations. True or False. Default is False.
@@ -813,7 +813,7 b' merge-tools_ section.'
813 813 <fred@example.com>``. Default is ``$EMAIL`` or ``username@hostname``. If
814 814 the username in hgrc is empty, it has to be specified manually or
815 815 in a different hgrc file (e.g. ``$HOME/.hgrc``, if the admin set
816 "username =" in the system hgrc).
816 ``username =`` in the system hgrc).
817 817 ``verbose``
818 818 Increase the amount of output printed. True or False. Default is False.
819 819
@@ -844,7 +844,7 b' Web interface configuration.'
844 844 push is not allowed. If the special value ``*``, any remote user can
845 845 push, including unauthenticated users. Otherwise, the remote user
846 846 must have been authenticated, and the authenticated user name must
847 be present in this list (separated by whitespace or ","). The
847 be present in this list (separated by whitespace or ``,``). The
848 848 contents of the allow_push list are examined after the deny_push
849 849 list.
850 850 ``allow_read``
@@ -852,7 +852,7 b' Web interface configuration.'
852 852 the contents of deny_read, this list determines whether to grant
853 853 repository access to the user. If this list is not empty, and the
854 854 user is unauthenticated or not present in the list (separated by
855 whitespace or ","), then access is denied for the user. If the
855 whitespace or ``,``), then access is denied for the user. If the
856 856 list is empty or not set, then access is permitted to all users by
857 857 default. Setting allow_read to the special value ``*`` is equivalent
858 858 to it not being set (i.e. access is permitted to all users). The
@@ -873,13 +873,13 b' Web interface configuration.'
873 873 push is not denied. If the special value ``*``, all remote users are
874 874 denied push. Otherwise, unauthenticated users are all denied, and
875 875 any authenticated user name present in this list (separated by
876 whitespace or ",") is also denied. The contents of the deny_push
876 whitespace or ``,``) is also denied. The contents of the deny_push
877 877 list are examined before the allow_push list.
878 878 ``deny_read``
879 879 Whether to deny reading/viewing of the repository. If this list is
880 880 not empty, unauthenticated users are all denied, and any
881 881 authenticated user name present in this list (separated by
882 whitespace or ",") is also denied access to the repository. If set
882 whitespace or ``,``) is also denied access to the repository. If set
883 883 to the special value ``*``, all remote users are denied access
884 884 (rarely needed ;). If deny_read is empty or not set, the
885 885 determination of repository access depends on the presence and
General Comments 0
You need to be logged in to leave comments. Login now